diff --git a/src/load/HISTORY.rst b/src/load/HISTORY.rst index 538147baa99..ecc991c23b5 100644 --- a/src/load/HISTORY.rst +++ b/src/load/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +1.3.0 +++++++ +* Add support for autostop criteria. Autostop error rate and time window in seconds can be set using `--autostop-error-rate` and `--autostop-time-window` arguments in 'az load test create' and 'az load test update' commands. Autostop can be disabled by using `--autostop disable` in 'az load test create' and 'az load test update' commands. Autostop criteria set in YAML config file will now also be honoured. + 1.2.0 ++++++ * Added support for disable public IP in test creation and update. This can be done by using --disable-public-ip argument in 'az load test create' and 'az load test update' commands. diff --git a/src/load/azext_load/data_plane/load_test/custom.py b/src/load/azext_load/data_plane/load_test/custom.py index 0fab300c360..a3c774c7d57 100644 --- a/src/load/azext_load/data_plane/load_test/custom.py +++ b/src/load/azext_load/data_plane/load_test/custom.py @@ -16,6 +16,7 @@ load_yaml, upload_file_to_test, upload_files_helper, + create_autostop_criteria_from_args, ) from azure.cli.core.azclierror import InvalidArgumentValueError from azure.core.exceptions import ResourceNotFoundError @@ -42,6 +43,9 @@ def create_test( split_csv=None, disable_public_ip=None, custom_no_wait=False, + autostop=None, + autostop_error_rate=None, + autostop_error_rate_time_window=None, ): client = get_admin_data_plane_client(cmd, load_test_resource, resource_group_name) logger.info("Create test has started for test ID : %s", test_id) @@ -58,6 +62,8 @@ def create_test( yaml, yaml_test_body = None, None if split_csv is None: split_csv = False + autostop_criteria = create_autostop_criteria_from_args( + autostop=autostop, error_rate=autostop_error_rate, time_window=autostop_error_rate_time_window) if load_test_config_file is None: body = create_or_update_test_without_config( test_id, @@ -72,6 +78,7 @@ def create_test( subnet_id=subnet_id, split_csv=split_csv, disable_public_ip=disable_public_ip, + autostop_criteria=autostop_criteria, ) else: yaml = load_yaml(load_test_config_file) @@ -90,6 +97,7 @@ def create_test( subnet_id=subnet_id, split_csv=split_csv, disable_public_ip=disable_public_ip, + autostop_criteria=autostop_criteria ) logger.debug("Creating test with test ID: %s and body : %s", test_id, body) response = client.create_or_update_test(test_id=test_id, body=body) @@ -124,6 +132,9 @@ def update_test( split_csv=None, disable_public_ip=None, custom_no_wait=False, + autostop=None, + autostop_error_rate=None, + autostop_error_rate_time_window=None, ): client = get_admin_data_plane_client(cmd, load_test_resource, resource_group_name) logger.info("Update test has started for test ID : %s", test_id) @@ -136,6 +147,8 @@ def update_test( logger.debug("Retrieved test with test ID: %s and body : %s", test_id, body) yaml, yaml_test_body = None, None + autostop_criteria = create_autostop_criteria_from_args( + autostop=autostop, error_rate=autostop_error_rate, time_window=autostop_error_rate_time_window) if load_test_config_file is not None: yaml = load_yaml(load_test_config_file) yaml_test_body = convert_yaml_to_test(yaml) @@ -153,6 +166,7 @@ def update_test( subnet_id=subnet_id, split_csv=split_csv, disable_public_ip=disable_public_ip, + autostop_criteria=autostop_criteria ) else: body = create_or_update_test_without_config( @@ -168,6 +182,7 @@ def update_test( subnet_id=subnet_id, split_csv=split_csv, disable_public_ip=disable_public_ip, + autostop_criteria=autostop_criteria ) logger.info("Updating test with test ID: %s", test_id) response = client.create_or_update_test(test_id=test_id, body=body) diff --git a/src/load/azext_load/data_plane/load_test/help.py b/src/load/azext_load/data_plane/load_test/help.py index 7df42a9529d..a1de933c861 100644 --- a/src/load/azext_load/data_plane/load_test/help.py +++ b/src/load/azext_load/data_plane/load_test/help.py @@ -32,6 +32,11 @@ - name: Create a test for a private endpoint in a Virtual Network with split CSV option enabled. text: | az load test create --test-id sample-test-id --load-test-resource sample-alt-resource --resource-group sample-rg --display-name "Sample Name" --subnet-id "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-rg/providers/Microsoft.Network/virtualNetworks/SampleVMVNET/subnets/SampleVMSubnet" --split-csv true + - name: Create a test with custom defined autostop criteria or enable / disable autostop for a test. + text: | + az load test create --test-id sample-test-id --load-test-resource sample-alt-resource --resource-group sample-rg --display-name "Sample Name" --autostop-error-rate 80.5 --autostop-time-window 120 + az load test create --test-id sample-test-id --load-test-resource sample-alt-resource --resource-group sample-rg --display-name "Sample Name" --autostop disable + az load test create --test-id sample-test-id --load-test-resource sample-alt-resource --resource-group sample-rg --display-name "Sample Name" --autostop enable """ helps[ diff --git a/src/load/azext_load/data_plane/load_test/params.py b/src/load/azext_load/data_plane/load_test/params.py index 470f0a50642..c793806390e 100644 --- a/src/load/azext_load/data_plane/load_test/params.py +++ b/src/load/azext_load/data_plane/load_test/params.py @@ -29,6 +29,9 @@ def load_arguments(self, _): c.argument("engine_instances", argtypes.engine_instances) c.argument("custom_no_wait", argtypes.custom_no_wait) c.argument("disable_public_ip", argtypes.disable_public_ip) + c.argument("autostop", argtypes.autostop) + c.argument("autostop_error_rate", argtypes.autostop_error_rate) + c.argument("autostop_error_rate_time_window", argtypes.autostop_error_rate_time_window) with self.argument_context("load test update") as c: c.argument("load_test_config_file", argtypes.load_test_config_file) @@ -46,6 +49,9 @@ def load_arguments(self, _): c.argument("split_csv", argtypes.split_csv) c.argument("custom_no_wait", argtypes.custom_no_wait) c.argument("disable_public_ip", argtypes.disable_public_ip) + c.argument("autostop", argtypes.autostop) + c.argument("autostop_error_rate", argtypes.autostop_error_rate) + c.argument("autostop_error_rate_time_window", argtypes.autostop_error_rate_time_window) with self.argument_context("load test download-files") as c: c.argument("path", argtypes.dir_path) diff --git a/src/load/azext_load/data_plane/utils/argtypes.py b/src/load/azext_load/data_plane/utils/argtypes.py index 1bb65e85fb5..20e0c4269ea 100644 --- a/src/load/azext_load/data_plane/utils/argtypes.py +++ b/src/load/azext_load/data_plane/utils/argtypes.py @@ -341,3 +341,24 @@ "Example: `--dimension-filters key1=value1 key2=*`, `--dimension-filters *`" ), ) + +autostop = CLIArgumentType( + validator=validators.validate_autostop_enable_disable, + options_list=["--autostop"], + type=str, + help="Whether auto-stop should be enabled or disabled. Allowed values are enable/disable.", +) + +autostop_error_rate = CLIArgumentType( + options_list=["--autostop-error-rate"], + type=float, + validator=validators.validate_autostop_error_rate, + help="Threshold percentage of errors on which test run should be automatically stopped. Allowed values are in range of [0.0,100.0]", +) + +autostop_error_rate_time_window = CLIArgumentType( + options_list=["--autostop-time-window"], + type=int, + validator=validators.validate_autostop_error_rate_time_window, + help="Time window during which the error percentage should be evaluated in seconds.", +) diff --git a/src/load/azext_load/data_plane/utils/utils.py b/src/load/azext_load/data_plane/utils/utils.py index 985b9203fcc..de16f5fac7d 100644 --- a/src/load/azext_load/data_plane/utils/utils.py +++ b/src/load/azext_load/data_plane/utils/utils.py @@ -257,6 +257,18 @@ def parse_env(envs): return env_dict +def create_autostop_criteria_from_args(autostop, error_rate, time_window): + if (autostop is None and error_rate is None and time_window is None): + return None + autostop_criteria = {} + autostop_criteria["autoStopDisabled"] = not autostop if autostop is not None else False + if error_rate is not None: + autostop_criteria["errorRate"] = error_rate + if time_window is not None: + autostop_criteria["errorRateTimeWindowInSeconds"] = time_window + return autostop_criteria + + def load_yaml(file_path): logger.debug("Loading yaml file: %s", file_path) try: @@ -347,6 +359,25 @@ def convert_yaml_to_test(data): new_body["passFailCriteria"]["passFailMetrics"][metric_id][ "requestName" ] = name + if data.get("autoStop") is not None: + if (isinstance(data["autoStop"], str)): + # pylint: disable-next=protected-access + validators._validate_autostop_disable_configfile(data["autoStop"]) + new_body["autoStopCriteria"] = { + "autoStopDisabled": True, + } + else: + error_rate = data["autoStop"].get("errorPercentage") + time_window = data["autoStop"].get("timeWindow") + # pylint: disable-next=protected-access + validators._validate_autostop_criteria_configfile(error_rate, time_window) + new_body["autoStopCriteria"] = { + "autoStopDisabled": False, + } + if error_rate is not None: + new_body["autoStopCriteria"]["errorRate"] = error_rate + if time_window is not None: + new_body["autoStopCriteria"]["errorRateTimeWindowInSeconds"] = time_window logger.debug("Converted yaml to test body: %s", new_body) return new_body @@ -367,6 +398,7 @@ def create_or_update_test_with_config( subnet_id=None, split_csv=None, disable_public_ip=None, + autostop_criteria=None, ): logger.info( "Creating a request body for create or update test using config and parameters." @@ -473,6 +505,35 @@ def create_or_update_test_with_config( new_body["loadTestConfiguration"]["splitAllCSVs"] = yaml_test_body[ "loadTestConfiguration" ]["splitAllCSVs"] + + new_body["autoStopCriteria"] = {} + if autostop_criteria is not None: + new_body["autoStopCriteria"] = autostop_criteria + elif yaml_test_body.get("autoStopCriteria") is not None: + new_body["autoStopCriteria"] = yaml_test_body["autoStopCriteria"] + if ( + new_body["autoStopCriteria"].get("autoStopDisabled") is None + and body.get("autoStopCriteria", {}).get("autoStopDisabled") is not None + ): + new_body["autoStopCriteria"]["autoStopDisabled"] = body["autoStopCriteria"]["autoStopDisabled"] + if ( + new_body["autoStopCriteria"].get("errorRate") is None + and body.get("autoStopCriteria", {}).get("errorRate") is not None + ): + new_body["autoStopCriteria"]["errorRate"] = body["autoStopCriteria"]["errorRate"] + if ( + new_body["autoStopCriteria"].get("errorRateTimeWindowInSeconds") is None + and body.get("autoStopCriteria", {}).get("errorRateTimeWindowInSeconds") is not None + ): + new_body["autoStopCriteria"]["errorRateTimeWindowInSeconds"] = \ + body["autoStopCriteria"]["errorRateTimeWindowInSeconds"] + + if (new_body["autoStopCriteria"].get("autoStopDisabled") is True): + logger.warning( + "Auto stop is disabled. Error rate and time window will be ignored. " + "This can lead to incoming charges for an incorrectly configured test." + ) + logger.debug("Request body for create or update test: %s", new_body) return new_body @@ -492,6 +553,7 @@ def create_or_update_test_without_config( subnet_id=None, split_csv=None, disable_public_ip=None, + autostop_criteria=None, ): logger.info( "Creating a request body for test using parameters and old test body (in case of update)." @@ -558,6 +620,32 @@ def create_or_update_test_without_config( ]["splitAllCSVs"] if disable_public_ip is not None: new_body["publicIPDisabled"] = disable_public_ip + + new_body["autoStopCriteria"] = {} + if autostop_criteria is not None: + new_body["autoStopCriteria"] = autostop_criteria + if ( + new_body["autoStopCriteria"].get("autoStopDisabled") is None + and body.get("autoStopCriteria", {}).get("autoStopDisabled") is not None + ): + new_body["autoStopCriteria"]["autoStopDisabled"] = body["autoStopCriteria"]["autoStopDisabled"] + if ( + new_body["autoStopCriteria"].get("errorRate") is None + and body.get("autoStopCriteria", {}).get("errorRate") is not None + ): + new_body["autoStopCriteria"]["errorRate"] = body["autoStopCriteria"]["errorRate"] + if ( + new_body["autoStopCriteria"].get("errorRateTimeWindowInSeconds") is None + and body.get("autoStopCriteria", {}).get("errorRateTimeWindowInSeconds") is not None + ): + new_body["autoStopCriteria"]["errorRateTimeWindowInSeconds"] = \ + body["autoStopCriteria"]["errorRateTimeWindowInSeconds"] + if (new_body["autoStopCriteria"].get("autoStopDisabled") is True): + logger.warning( + "Auto stop is disabled. Error rate and time window will be ignored. " + "This can lead to incoming charges for an incorrectly configured test." + ) + logger.debug("Request body for create or update test: %s", new_body) return new_body diff --git a/src/load/azext_load/data_plane/utils/validators.py b/src/load/azext_load/data_plane/utils/validators.py index 48ab1d1c31f..7eb25a40417 100644 --- a/src/load/azext_load/data_plane/utils/validators.py +++ b/src/load/azext_load/data_plane/utils/validators.py @@ -402,3 +402,65 @@ def validate_disable_public_ip(namespace): namespace.disable_public_ip = True else: namespace.disable_public_ip = False + + +def validate_autostop_enable_disable(namespace): + if namespace.autostop is None: + return + if not isinstance(namespace.autostop, str) or namespace.autostop.casefold() not in ["enable", "disable"]: + raise InvalidArgumentValueError( + f"Invalid autostop type: {type(namespace.autostop)}. Allowed values: enable, disable" + ) + if namespace.autostop.casefold() not in ["disable"]: + namespace.autostop = True + else: + namespace.autostop = False + + +def validate_autostop_error_rate_time_window(namespace): + if namespace.autostop_error_rate_time_window is None: + return + if not isinstance(namespace.autostop_error_rate_time_window, int): + raise InvalidArgumentValueError( + f"Invalid autostop-time-window type: {type(namespace.autostop_error_rate_time_window)}" + ) + if namespace.autostop_error_rate_time_window < 0: + raise InvalidArgumentValueError( + "Autostop error rate time window should be greater than or equal to 0" + ) + + +def validate_autostop_error_rate(namespace): + if namespace.autostop_error_rate is None: + return + if not isinstance(namespace.autostop_error_rate, float): + raise InvalidArgumentValueError( + f"Invalid autostop-error-rate type: {type(namespace.autostop_error_rate)}" + ) + if namespace.autostop_error_rate < 0.0 or namespace.autostop_error_rate > 100.0: + raise InvalidArgumentValueError( + "Autostop error rate should be in range of [0.0,100.0]" + ) + + +def _validate_autostop_disable_configfile(autostop): + if autostop.casefold() not in ["disable"]: + raise InvalidArgumentValueError( + "Invalid value for autoStop. Valid values are 'disable' or an object with errorPercentage and timeWindow" + ) + + +def _validate_autostop_criteria_configfile(error_rate, time_window): + if error_rate is not None: + if isinstance(error_rate, float) and (error_rate < 0.0 or error_rate > 100.0): + raise InvalidArgumentValueError( + "Invalid value for errorPercentage. Value should be a number between 0.0 and 100.0" + ) + if isinstance(error_rate, int) and (error_rate < 0 or error_rate > 100): + raise InvalidArgumentValueError( + "Invalid value for errorPercentage. Value should be a number between 0.0 and 100.0" + ) + if time_window is not None and (not isinstance(time_window, int) or time_window < 0): + raise InvalidArgumentValueError( + "Invalid value for timeWindow. Value should be an integer greater than or equal to 0" + ) diff --git a/src/load/azext_load/tests/latest/constants.py b/src/load/azext_load/tests/latest/constants.py index cd0427ace28..6f34e8266d5 100644 --- a/src/load/azext_load/tests/latest/constants.py +++ b/src/load/azext_load/tests/latest/constants.py @@ -72,6 +72,17 @@ class LoadConstants: INVALID_SERVER_METRIC_ID = r"/subscriptions/invalid/resource/id" + LOAD_TEST_CONFIG_FILE_WITH_AUTOSTOP = os.path.join(TEST_RESOURCES_DIR, r"config-autostop-criteria.yaml") + LOAD_TEST_CONFIG_FILE_WITH_AUTOSTOP_ERROR_RATE = os.path.join(TEST_RESOURCES_DIR, r"config-autostop-criteria-error-rate.yaml") + LOAD_TEST_CONFIG_FILE_WITH_AUTOSTOP_TIME_WINDOW = os.path.join(TEST_RESOURCES_DIR, r"config-autostop-criteria-time-window.yaml") + LOAD_TEST_CONFIG_FILE_WITH_INVALID_AUTOSTOP_ERROR_RATE = os.path.join(TEST_RESOURCES_DIR, r"config-invalid-autostop-criteria-error-rate.yaml") + LOAD_TEST_CONFIG_FILE_WITH_INVALID_AUTOSTOP_TIME_WINDOW = os.path.join(TEST_RESOURCES_DIR, r"config-invalid-autostop-criteria-time-window.yaml") + LOAD_TEST_CONFIG_FILE_WITH_INVALID_AUTOSTOP = os.path.join(TEST_RESOURCES_DIR, r"config-invalid-autostop-criteria-random-string.yaml") + AUTOSTOP_DISABLED = "disable" + AUTOSTOP_ERROR_RATE = 77.5 + AUTOSTOP_ERROR_RATE_INTEGER = 75 + AUTOSTOP_ERROR_RATE_TIME_WINDOW = 90 + class LoadTestConstants(LoadConstants): # Test IDs for load test commands diff --git a/src/load/azext_load/tests/latest/recordings/test_load_app_component.yaml b/src/load/azext_load/tests/latest/recordings/test_load_app_component.yaml index ee94ca30df3..ecac53fe58f 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_app_component.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_app_component.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7165684Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7165684Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:48 GMT + - Wed, 20 Nov 2024 11:15:59 GMT etag: - - '"130190aa-0000-0200-0000-672c56040000"' + - '"9603fcfe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E6ECB4791B2F48589EB5856485C86F5F Ref B: MAA201060516009 Ref C: 2024-11-07T05:54:49Z' + - 'Ref A: AE337C0493154C9D9FD8CBCF5C399576 Ref B: CO6AA3150220011 Ref C: 2024-11-20T11:15:59Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier app-component-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:54:51 GMT + - Wed, 20 Nov 2024 11:16:00 GMT mise-correlation-id: - - 990a6e0b-a91a-46d0-b873-f5b1f7cac08a + - e3e57125-f352-4009-bc53-933f4ee42444 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T055450Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011933 + - 20241120T111600Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg000000003zqn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"daf3595e-ee66-46b2-951b-5795d8c1c4e3": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"6d2d4d77-e517-4533-9d4f-4433a12a2466": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "2e8024c5-89c0-4177-89f8-320f5562b4e8": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "50ee077f-1b3c-4d44-a7de-d10f5ed2c270": + "78"}, "5545d7f2-a44f-4098-b3ff-764923c4e675": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "c956b8d5-00aa-4838-8ea6-48fc17121a8c": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:54:52.188Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:52.188Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:00.83Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:00.83Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1053' + - '1153' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:52 GMT + - Wed, 20 Nov 2024 11:16:00 GMT location: - - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-03-01-preview + - https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 457704f4-5a62-4f82-9452-6e0ce9aed3b6 + - 5c03e373-bb8b-45e2-81dc-20631e10068a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055451Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f000000001195f + - 20241120T111600Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg000000003zqu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:52 GMT + - Wed, 20 Nov 2024 11:16:00 GMT mise-correlation-id: - - 0cefe327-c534-450e-b8cc-804cbab00729 + - 93794e39-e369-444b-984a-89ac7ef5afd9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055452Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f00000000119a2 + - 20241120T111600Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg000000003zr5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A53Z&sr=b&sp=r&sig=IgVm6H05Nd2zIT3bvQi0QEGGTHlA%2FnI5cvCFrVbwOA4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:04:53.029899Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A01Z&sr=b&sp=r&sig=jkIe43Kk%2BX7tVdQFde1MyOiRTIUU6l%2BaT8ZVto6OTYg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:26:01.3477099Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '575' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:53 GMT + - Wed, 20 Nov 2024 11:16:01 GMT location: - - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 6ae551e2-cc57-4a69-a6b7-44b80093a756 + - d45216f2-da6c-46cd-a611-f4a4d68fa07d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055452Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f00000000119bc + - 20241120T111600Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg000000003zr9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A53Z&sr=b&sp=r&sig=IgVm6H05Nd2zIT3bvQi0QEGGTHlA%2FnI5cvCFrVbwOA4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:04:53.3461165Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A02Z&sr=b&sp=r&sig=gUnQ3xE6c2E150yuY8FjW6lsdex%2FJEMTXAZFH1Kgrtc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:26:02.316697Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '572' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:53 GMT + - Wed, 20 Nov 2024 11:16:02 GMT mise-correlation-id: - - 1b9b3420-fa0c-41ac-87f3-d3c65f9a2a61 + - b22d213a-95e3-4ba8-99e3-2a3e2df9a1ca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055453Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f00000000119dn + - 20241120T111601Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg000000003zrk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A54Z&sr=b&sp=r&sig=L8htfkg7JbrDV0O%2BjMcsJPey0dzjd%2FmlP7u6ifrfd94%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:04:54.6768038Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A02Z&sr=b&sp=r&sig=jxSdfLIfKVBjtMv6qKCx1xsFP%2B2P4r%2F8RJjtgfq%2BBZk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:02.6231421Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:54 GMT + - Wed, 20 Nov 2024 11:16:02 GMT location: - - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 6628baee-ab90-4473-8822-6be10f83f238 + - 2ed788cb-1e2d-4fbe-b40a-e01ecc25381f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055453Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f00000000119ek + - 20241120T111602Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg000000003zsc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,31 +351,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A54Z&sr=b&sp=r&sig=EeuF8saBebCJd0aMNHsVMREzqtGj3Ts1dmt8DluNGgY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:04:54.9327111Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A02Z&sr=b&sp=r&sig=jxSdfLIfKVBjtMv6qKCx1xsFP%2B2P4r%2F8RJjtgfq%2BBZk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:02.7790766Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:55 GMT + - Wed, 20 Nov 2024 11:16:02 GMT mise-correlation-id: - - 3f2207c3-dfd7-4093-a55a-407238328f76 + - eed672a1-2500-4907-9314-4a22a19b79b5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055454Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f00000000119n6 + - 20241120T111602Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg000000003zsk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A00Z&sr=b&sp=r&sig=QErq%2FEEp1jOtZm0E98Nir1gVzWUgXDJmcX3Ppd%2F%2FimI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:05:00.2300216Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A07Z&sr=b&sp=r&sig=gXULgpmFazh8AnvOdZQQsP4vKjXF%2B0iWH7EYze5lmdo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:07.9048491Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:00 GMT + - Wed, 20 Nov 2024 11:16:07 GMT mise-correlation-id: - - 15357060-e832-458d-aa0e-e242f6b01786 + - d27890b3-1728-4e9c-8c6d-5ee750e5780a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055500Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011abd + - 20241120T111607Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg000000003zww x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,17 +437,61 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A05Z&sr=b&sp=r&sig=Onzqj2YXFwab9%2BFQn4m8C5hhSmkpsCr6c5syg8P2U0o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:05:05.5507416Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A13Z&sr=b&sp=r&sig=5KQ9dw5OgUtf4KHJQwzbURVnsNav2eGBksx8p8HAE4g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:13.0181977Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:16:13 GMT + mise-correlation-id: + - 0fe55564-ed1e-470a-8e35-a4838fab9473 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111612Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg000000004020 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A18Z&sr=b&sp=r&sig=gQaLFZS9E3ue08o%2FiFO7CkVPf4fkTET0jOjWoP9XPRk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:18.1422262Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -446,13 +499,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:05 GMT + - Wed, 20 Nov 2024 11:16:18 GMT mise-correlation-id: - - 3a58bcef-21b9-4e5d-84c9-f7a471984989 + - 1e8946bb-f6e6-4c15-8177-8b128c0ea3db strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055505Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011b55 + - 20241120T111618Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg00000000406c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A10Z&sr=b&sp=r&sig=f7Cgwvwye42YOurnH1nGuGuKOOjKrMSzuzFlxgOmqEg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:05:10.8039Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A23Z&sr=b&sp=r&sig=%2FqCGpYYxwDjJkMvBbxJq6uB%2FkbqxUNveunA%2FcxUpvn4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:23.3228727Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '565' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:10 GMT + - Wed, 20 Nov 2024 11:16:23 GMT mise-correlation-id: - - 73ac7384-3b8b-4f20-8563-b22b695f7eb9 + - a01ab6b1-d97b-414a-a75c-fa2eb427f80d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055510Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011c1d + - 20241120T111623Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg0000000040c2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,31 +566,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A16Z&sr=b&sp=r&sig=2pPBb9BAqAg8dhSA6VbTjiskHnz3Oe0yuVlDHi6yTx0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:05:16.746654Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A28Z&sr=b&sp=r&sig=CUl4qWGkGU1QRAvPWfijPc%2Fq68BtYZyJp2JkcKxq0rM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:28.4607358Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '565' + - '568' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:16 GMT + - Wed, 20 Nov 2024 11:16:28 GMT mise-correlation-id: - - db9d2395-7ea5-49b4-b725-a808f3f33961 + - 43740286-d053-497c-b5a5-17be51245cf0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055515Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011cr7 + - 20241120T111628Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg0000000040gp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -646,33 +701,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A17Z&sr=b&sp=r&sig=%2FAF2MX2JMYZiOpgo2g3sS7wyBuWEA1SiQdGirFBnhoU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:17.9173198Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A28Z&sr=b&sp=r&sig=ttntqeHls0Hz%2BVeBOHKTfTsKli8bf5f0%2Bwm1H2%2F6ck0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:28.7318667Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '562' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:18 GMT + - Wed, 20 Nov 2024 11:16:28 GMT location: - - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 8913ded5-6451-4bd9-8173-38b53e3b37f8 + - d4048ad7-5336-4dc3-9ea1-d3d0c6723cc0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055516Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011cvg + - 20241120T111628Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg0000000040gw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -690,17 +746,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A18Z&sr=b&sp=r&sig=9VIe7Vlpff5NBJs46TEUVdy5T%2Fh3bv%2BQX6cyboh9NiQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:18.1779986Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A28Z&sr=b&sp=r&sig=hqWx%2BR%2FAxlugLpQz2yjtSaRUvf4oJ2QEh6s7bycvcyg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:28.9112434Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -708,13 +765,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:18 GMT + - Wed, 20 Nov 2024 11:16:28 GMT mise-correlation-id: - - dd4e57d7-043d-461e-a24c-5710852bdfd7 + - 4f7a20e1-ea0e-46a2-adf7-02fd1cb55e79 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055518Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011d24 + - 20241120T111628Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg0000000040h7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +789,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A23Z&sr=b&sp=r&sig=mw60onlQvuCaucsL8wVxuIdSmOLl0Ytyj7Yikh7Pq3I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:23.4356072Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A34Z&sr=b&sp=r&sig=IGnRrBrEVSAhqN7ITsUHnq72avahp%2FH8d9%2BV3jLn2YU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:34.0449817Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '560' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:23 GMT + - Wed, 20 Nov 2024 11:16:34 GMT mise-correlation-id: - - 881f25f8-5efd-4ea1-b54b-aaaaa5d165e0 + - c681df66-c24b-492d-97bd-95b9ad916e07 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055523Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011dsg + - 20241120T111633Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg0000000040ph x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,31 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A28Z&sr=b&sp=r&sig=AVcShc6a5UQiPyzFdcOqtby1XFNdM1RQyH%2BC561jNIA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:28.7081725Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A39Z&sr=b&sp=r&sig=IjdzP0BPiL9cRBEWPikzfeOAkzRvb56Xfs%2FiK%2FRxR88%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:39.1609182Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:28 GMT + - Wed, 20 Nov 2024 11:16:39 GMT mise-correlation-id: - - 4e471467-630b-4e87-a56d-e15e19d493b5 + - 807c8f87-98cc-4997-921d-431806ebbaa2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055528Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011egh + - 20241120T111639Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg0000000040up x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A33Z&sr=b&sp=r&sig=A9mDBve3W7O3s5KmgusR4jMZ3nO0oSkg5ejmq3RYA9g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:33.9635158Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A44Z&sr=b&sp=r&sig=t5%2F3ct%2FFrK4h4YUd8a0qt8oj%2FQFEvwUJxopvq9z4E34%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:44.338972Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '561' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:34 GMT + - Wed, 20 Nov 2024 11:16:44 GMT mise-correlation-id: - - b1f9b258-52e2-4073-bcd2-13aff54df3c6 + - c92fec70-9302-47da-be76-fe6d78ae4016 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055533Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011f7y + - 20241120T111644Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg000000004107 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,17 +918,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A39Z&sr=b&sp=r&sig=fdr%2BXGIDEgMMGT4NoQub2iF356jyCy6Zk55U54rxrvE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:39.2307811Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A49Z&sr=b&sp=r&sig=vfuL7g3ilTVDfvG9uQkihQvwOPZifV1xnOEmZ%2B7BQnQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:49.4599497Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -876,13 +937,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:39 GMT + - Wed, 20 Nov 2024 11:16:49 GMT mise-correlation-id: - - 1dc7d018-30e2-419f-8263-0222cb99796e + - 2d5bb2ed-68dd-4121-8d2b-a249c67afb5d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055539Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011g18 + - 20241120T111649Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg00000000414s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,17 +961,61 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A44Z&sr=b&sp=r&sig=1Phvf2IfKLb0Tu0qNh8g6xJenaNxXL4IWW1Zd4%2FtYCQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:44.7674333Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A54Z&sr=b&sp=r&sig=96np7XRyoSasQiVPPBsl%2FidXZ7Z5A%2BcAfJoEc4gV64I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:54.5938109Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:16:54 GMT + mise-correlation-id: + - 18747e8c-05fb-4ff6-b6f0-10db1e608ffa + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111654Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg00000000418v + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A59Z&sr=b&sp=r&sig=rfVS55F3POJepi%2F14cRufmJV0MklqRJiVSAQZGrcHTw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:59.7153358Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -918,13 +1023,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:44 GMT + - Wed, 20 Nov 2024 11:16:59 GMT mise-correlation-id: - - b2922288-3ab3-409b-bcdf-ea104666fe5d + - df38d503-7256-4797-853f-4798c23b6e7e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055544Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011gur + - 20241120T111659Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg0000000041ce x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,32 +1047,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A45Z&sr=b&sp=r&sig=Vm8G2l8YgITgO0A4nI3dECmM5O2qa28uerexTjI0lh4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:45.0350908Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A45Z&sr=b&sp=r&sig=xUmQ1gj4yC4hJyqm5XC012Tx%2Fs5mBhIPGgvEAWrnfZM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:45.035517Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A45Z&sr=b&sp=r&sig=QR422IHXxaz%2BiAxgSI%2BErKgZt6JSVVr89JMmnxLAt1U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:45.0356958Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:54:52.188Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:40.922Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A59Z&sr=b&sp=r&sig=n86rvjF5dVByvJ90xYjkQ6kyvNHh%2FOikqnu5syHbAj0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:59.8304586Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A59Z&sr=b&sp=r&sig=EA6aHe0TttIGZFNq%2BjT9wWm03hzvgcR4hbwMFRL27Os%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:59.8307849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A59Z&sr=b&sp=r&sig=%2BA0DRC4SMbDIIVf3eQo0bVnd%2BCs8ZM%2F%2BqratqVRpOyc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:59.8308682Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:00.83Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:59.355Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2772' + - '2880' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:45 GMT + - Wed, 20 Nov 2024 11:16:59 GMT mise-correlation-id: - - d37b10c6-a3fa-4ee2-9a6c-5e8b812d21be + - 0ca92d89-b0ad-4e27-84e4-768a053785dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055544Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011gx9 + - 20241120T111659Z-r16f5dbf676dn9f8hC1YVRrkvw00000003tg0000000041ch x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -985,23 +1091,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7165684Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7165684Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:46 GMT + - Wed, 20 Nov 2024 11:17:00 GMT etag: - - '"130190aa-0000-0200-0000-672c56040000"' + - '"9603fcfe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1017,7 +1123,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DC04D46C0A9A470D87FCBA34D35B5049 Ref B: MAA201060516033 Ref C: 2024-11-07T05:55:45Z' + - 'Ref A: 1FD282341A6A4340949AF9E44C3B4314 Ref B: CO6AA3150217025 Ref C: 2024-11-20T11:17:00Z' status: code: 200 message: OK @@ -1031,32 +1137,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=wy6Y6HxBwfnf1%2F4INKoEdD8xnybPvM4K5A9LRKvHL5g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:47.9381951Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=%2B8f1Ko9WWimu0tunUolnd71Duc%2BcJwwyDcFVHdEzu78%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.9385259Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=L2jd6Su32PIfnEMacRHxBz1dqY9HrCKtktipxReGuH0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.9386473Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:54:52.188Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:40.922Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A01Z&sr=b&sp=r&sig=8VhBdAmjeqzmeN2oCvMBiveWsPi7g%2BPU82o90J8RAu8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:01.0317367Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A01Z&sr=b&sp=r&sig=A1q04thaVejAXowFYLyTZWoS2VGNQfGhP2RnBOftxzY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:01.0321454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A01Z&sr=b&sp=r&sig=EIYR2uZOmV2qOJV0SMtShSuoVearxRG4hT40PKkeuKE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:01.0323461Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:00.83Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:59.355Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2785' + - '2882' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:48 GMT + - Wed, 20 Nov 2024 11:17:01 GMT mise-correlation-id: - - c6831dc6-06ee-48f1-ab34-a87bea942e98 + - 0f3172b5-d242-4701-9728-f963f8e4eb12 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055547Z-16bf8d9b4c7zbtm7hC1BOMhr0s00000007a000000001ta2a + - 20241120T111700Z-r16f5dbf67697mklhC1YVRpa9000000003q0000000000ur5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1074,23 +1181,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7165684Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7165684Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:49 GMT + - Wed, 20 Nov 2024 11:17:00 GMT etag: - - '"130190aa-0000-0200-0000-672c56040000"' + - '"9603fcfe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1106,7 +1213,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 27B503F3A4B8436C9FDCB9A099C35E5D Ref B: MAA201060515027 Ref C: 2024-11-07T05:55:48Z' + - 'Ref A: 49140DDC72B24443A266B49ED901840A Ref B: CO6AA3150218045 Ref C: 2024-11-20T11:17:01Z' status: code: 200 message: OK @@ -1120,30 +1227,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with given name \"app-component-test-run-case\".","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:55:50 GMT + - Wed, 20 Nov 2024 11:17:01 GMT mise-correlation-id: - - c7e3bb5c-fd73-4470-8b85-fd9215bce4e5 + - 6d5caeba-2f3c-4673-8e0f-e05621a14468 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T055550Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000qzvr + - 20241120T111701Z-r16f5dbf676bfk2zhC1YVR2ru400000003q00000000007bd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1167,31 +1275,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=ocpr8sbxDhICjnHo3304yXvZZZseoqpwNPfJi%2BKbgi8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.946256Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=Qc7FukoAxShiV%2BMLVRcQb1Ox4fLA5oBZbAX3cM2lHPE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:52.9459467Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=Eq8Hb5Nkbmc8AIuVJJGWl5q2rlt2Xj0LxTffWs%2B7yMA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.9463648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=BlckMLz%2FNO%2FXJhCMZvylTw0Zg8rb4Mj8%2BR1QJ%2Fnli8k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.9464751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=vB8pxABrV94KV5PTsbo2QMh90uQYq2xzvacbcJscwHs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.9465837Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A52Z&se=2024-11-07T06%3A55%3A52Z&sr=c&sp=rl&sig=kF3ah%2FUGNSyIQaZ4w3fk9WUcvnnIJgO7Kfwk0%2BZyObQ%3D","expireDateTime":"2024-11-07T06:55:52.9466828Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"ACCEPTED","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:52.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A06Z&sr=b&sp=r&sig=0kNyqCPGRMKXdKFazwr00MLY5Q%2FDP%2FblPgDh%2FizkRSs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:06.5165621Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A06Z&sr=b&sp=r&sig=YmYEJ7GIujF5uFOdsgtp1mucL88kMPT5IYTk%2BEDPbbk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:06.5160062Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A06Z&sr=b&sp=r&sig=EHiiJC79sH7tb2bIUoliMKj41lzVq%2FIvXe6q9WT3SDo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:06.5166593Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A06Z&sr=b&sp=r&sig=iLuOjcJ5%2F9iJ8gg4zKUBum0QdOSjnraqMopkGdI6XWs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:06.5167515Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A06Z&sr=b&sp=r&sig=qeyG0p5T2531NzaahkK2vUY%2BvpTTOOJFSauKoJci%2FHE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:06.5168408Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A06Z&se=2024-11-20T12%3A17%3A06Z&sr=c&sp=rl&sig=gBKZloiIyvsBz2IdQZBBYKRMk29iwBOYHza%2B8%2Fr1r2k%3D","expireDateTime":"2024-11-20T12:17:06.5169332Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.506Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4899' + - '5004' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:53 GMT + - Wed, 20 Nov 2024 11:17:06 GMT location: - - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2022-11-01 + - https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 76912dea-6d6b-40ba-a277-8c1685ae117f + - 42427c2c-fc2a-4ff0-8a26-fd2dea0e1ef5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055550Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000qzyz + - 20241120T111701Z-r16f5dbf676bfk2zhC1YVR2ru400000003q00000000007c1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1209,31 +1318,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A06Z&sr=b&sp=r&sig=5XsHlQ4qCq4DTKanmdiw8rq5Jp%2FbouekC76oBM1jdms%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:06.6483401Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A06Z&sr=b&sp=r&sig=Yx2sVn%2Fiyej3DrTU6fPLOXl6ZS5fr8L8MzwliN%2FIJws%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:06.6477143Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A06Z&sr=b&sp=r&sig=aXZcUDaC3SXfo2%2BzocXw7ssocV63G3nEHb5xyNkv3bo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:06.6485434Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A06Z&sr=b&sp=r&sig=M8XDB1%2Bwl9u5BUdlGtb9QLmyPk2cRVu8qOYlhT0m%2Fpo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:06.6487788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A06Z&sr=b&sp=r&sig=y9AHEY3ZOGI14ElmokMZQ9Ra0lBLRsXP%2BgbnpmvmGYw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:06.6489768Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A06Z&se=2024-11-20T12%3A17%3A06Z&sr=c&sp=rl&sig=1Q8qEDtxDKTQLrQyURpetyygxiInXE3pjgJk4julcsA%3D","expireDateTime":"2024-11-20T12:17:06.6492086Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"NOTSTARTED","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.632Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '5000' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:17:06 GMT + mise-correlation-id: + - be0f5942-1794-4c21-9565-ba339f35bd98 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111706Z-r16f5dbf676bfk2zhC1YVR2ru400000003q00000000007nb + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A53Z&sr=b&sp=r&sig=xkH7LkvQP2J97a1B7OFlr8c%2FQ5JG0ZjwPCdR2mSNsUM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:53.3956751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A53Z&sr=b&sp=r&sig=MUbx%2B%2BqfbymhPLtCZ6QA7oy7Lx9O%2BOlB%2F1SPE1YI99E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:53.3953745Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A53Z&sr=b&sp=r&sig=eQ%2Fa4okTfm6kEW1NM68PYXrj1rEt5r2m8s33WDQbq0g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:53.395768Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A53Z&sr=b&sp=r&sig=EhkMkTWSvIAL5GwKk4b%2B8LCMZZC%2BHxuT2Zw1ECTAXaI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:53.3958791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A53Z&sr=b&sp=r&sig=X%2FEFeRpOOf8bCTkOYBKfF2mAQ4u4JpP8265lkQVvxSg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:53.3959714Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A53Z&se=2024-11-07T06%3A55%3A53Z&sr=c&sp=rl&sig=XNs4ZBtL20LHRLH%2FwiTxVt64mTF4c%2BMEqKD3gaRL19M%3D","expireDateTime":"2024-11-07T06:55:53.3960661Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"NOTSTARTED","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.244Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A11Z&sr=b&sp=r&sig=4ubS556Shfmm9%2BSNog93pABqaqPyA3ci2VPddaNKwWU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:11.7789171Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A11Z&sr=b&sp=r&sig=p07eeNESRcNaEGVkMjP8Df4z31YeGXVsyTHJfk7CJKQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:11.7785391Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A11Z&sr=b&sp=r&sig=u9%2BfEMU0K0DNLny8lWwz%2FrJ%2F7EBSU9nyWER09K7pPNM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:11.7790677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A11Z&sr=b&sp=r&sig=F4K0WU0hEyIC4fMOxQ1IwmXeAkExg1qx2ypmBcgf%2FPc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:11.7792147Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A11Z&sr=b&sp=r&sig=96m9KXa01zlspZNimLMKHaSFs6N81GofY9lAs5LFViE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:11.7793614Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A11Z&se=2024-11-20T12%3A17%3A11Z&sr=c&sp=rl&sig=mNfI5dAXY0IJQ4GMhuum%2BiTVMAo7d%2BYefDwYxBV0OIY%3D","expireDateTime":"2024-11-20T12:17:11.7795245Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.875Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4948' + - '5045' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:53 GMT + - Wed, 20 Nov 2024 11:17:11 GMT mise-correlation-id: - - f41bb897-55f0-4d14-a2de-8120f2db39a9 + - 7addaf3f-4072-4c63-8fbf-a39f5188aa6e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055553Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r0an + - 20241120T111711Z-r16f5dbf676bfk2zhC1YVR2ru400000003q00000000007vx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1251,31 +1404,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=2EmJR8%2BVJRO5RGei9zjQz07GxYaPSEnb4p%2FoHSGFzQM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.6681382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=ojdp6H2HrHL3NUgUGf3zQyJ2y0x7p8l4R4uvXE5LQxg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:58.6677234Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=XitqNTQF0haV4kK%2FsMwTgPOVdUQokv1yor5ST9sLXH8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.6683101Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=NSsqmBD2vkZuqjl7uOtCNsnw1GAbdKQn9BT13fmhsjU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.6684832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=mJOqFDdfnJaxXMNzRzbrqPb60kBkhBMrQtPZ%2BUXwiLE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.6686522Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A58Z&se=2024-11-07T06%3A55%3A58Z&sr=c&sp=rl&sig=Lan2s40nHa3wM1XO%2BAjTy9Y%2FSpAdbN2dvGcNqgYQH%2BY%3D","expireDateTime":"2024-11-07T06:55:58.6688175Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A16Z&sr=b&sp=r&sig=6o1na4T6Rzf0vvaLEmesUvvlmyJDCcuekh46tWcnGXA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:16.890931Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A16Z&sr=b&sp=r&sig=gOK3eLS9DI7JCVag9pmRYFo1KprRmFgTrnyCVUP87%2Fo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:16.8905475Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A16Z&sr=b&sp=r&sig=mllp%2BSJrpPPE2JyhAHGtaTrd1dizI%2FUCv7VMgileTec%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:16.8910693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A16Z&sr=b&sp=r&sig=VGvXMraBlvC0yHtt3%2FSq0L9HcklPrr9170XZelB9h0g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:16.8912152Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A16Z&sr=b&sp=r&sig=53tN4Tl3xzlG3opyrFwhHWDo2rKdJ1qrhpIje2Ox9tA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:16.8913567Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A16Z&se=2024-11-20T12%3A17%3A16Z&sr=c&sp=rl&sig=1WHnJjH5nBfXLAPb5E1cSkO5pALrB3SEr9OmvIHzjKc%3D","expireDateTime":"2024-11-20T12:17:16.8914984Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.875Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4943' + - '5038' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:58 GMT + - Wed, 20 Nov 2024 11:17:16 GMT mise-correlation-id: - - 2f156f79-eaec-4e0d-a09e-e01d9f5ffa1c + - 3290a690-762b-4601-aeaf-feb57adf7601 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055558Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r16c + - 20241120T111716Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000854 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1293,31 +1447,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=5TRM8KKdED9EqgGfF4gqcI1vFg1MTbYysz%2FOGBb39Gg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.9607422Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=a0Sq6xJzCRrE3y4y1V8jKhb5JEFHWabVQmADFOn8anA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:03.9602776Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=UMD%2FlylMURv%2F9urrGcUHNbhukXxO2CXKfZJH8VPBp0s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.9608824Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=NwEKB9GAYHQiklA7%2F9P08cC7%2FnDzSe1HMICDykm2Q0Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.9610468Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=MQziVLqUqkzbNdLrhBRby%2FC7m0pCc1uDgjGff03unq8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.9611913Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A03Z&se=2024-11-07T06%3A56%3A03Z&sr=c&sp=rl&sig=n3TSyxZ8CJ8WlWOLp0YYNJ2r%2BjwgpeXpAa%2BVYXU2Xl0%3D","expireDateTime":"2024-11-07T06:56:03.9613289Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A22Z&sr=b&sp=r&sig=lZkjdQWqMKLTIV4Y4ehPIfqedf68yBeq5r6WWMpDdWY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:22.4001641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A22Z&sr=b&sp=r&sig=LIP197p7yRUbwh1iZBIuYUUCx%2B7tOgcNDt0jagtWaLo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:22.3997695Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A22Z&sr=b&sp=r&sig=lOuSbfsb7szlEGp%2BbNAwRTzcAlIJaZELPok386iagN8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:22.4002971Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A22Z&sr=b&sp=r&sig=IpPZs4032KuT49mICUCb0S3cm46XKVeGV%2FejYpvcez8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:22.4004523Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A22Z&sr=b&sp=r&sig=uUkY98Q3JIod538ovrncqxh9fLczZU5hRDNTmFrviss%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:22.40058Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A22Z&se=2024-11-20T12%3A17%3A22Z&sr=c&sp=rl&sig=9WkF2VMp3vOWgbWL9OnyKhWE2bT5SR0BV5ZdCCFF7Oo%3D","expireDateTime":"2024-11-20T12:17:22.4007419Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.875Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4945' + - '5035' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:04 GMT + - Wed, 20 Nov 2024 11:17:22 GMT mise-correlation-id: - - c7f9c4f8-ecbc-493f-8fdd-9bb7aa196d80 + - 67481a20-c3f1-4a23-b455-c320ffc4fd54 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055603Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r227 + - 20241120T111721Z-r16f5dbf676bfk2zhC1YVR2ru400000003q000000000092r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1335,31 +1490,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A09Z&sr=b&sp=r&sig=tK2kNfTmtRUrfj3RQkF9IB4EN1o1KEt7SQ4%2Bw3InAJU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:09.2232828Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A09Z&sr=b&sp=r&sig=FYRe8To1HXdzGX9kd2LQNK%2BuwRgybsCb0yWSymC0%2BmA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:09.2230316Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A09Z&sr=b&sp=r&sig=v8wNh0iljwK%2F7%2FtS1JfQv3SwJVrgni3vKHAuiKx%2FnuA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:09.2233594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A09Z&sr=b&sp=r&sig=duPSKqv2NBUN6tQHJ0U4jJo6URo72MXFzc3fo0%2Bhruo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:09.2234367Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A09Z&sr=b&sp=r&sig=0ceEsd%2FTpd2Psbzc%2BwnIX5xjs5IfhYTto4llVJWrLHU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:09.2235119Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A09Z&se=2024-11-07T06%3A56%3A09Z&sr=c&sp=rl&sig=KGmFNqhwdBRIvGkxZ6rmfsvdoKiwyL0bKydps0Ob6gA%3D","expireDateTime":"2024-11-07T06:56:09.2235867Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A27Z&sr=b&sp=r&sig=0H8nBMF5s6sj1GN4QjG8E5aoRB7lzx7LfThrxGXv4lw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:27.5479542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A27Z&sr=b&sp=r&sig=fjL5193%2F5okU%2FIycv71Oad0DWgtJ2bcCNjfqfkZYjCM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:27.5476308Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A27Z&sr=b&sp=r&sig=OvnJadtgrOiRzLZjlUMfN0B5kGN%2BcWshtEvTQRKZIcE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:27.5480461Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A27Z&sr=b&sp=r&sig=nAvxsrW37K0dzFmKAQ9fXQnWD27PfCJ9QS4yJGfSwHE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:27.5481338Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A27Z&sr=b&sp=r&sig=tNZZCuDv6BEOAOHLY%2BbQYE2OBq4kxzbHOURcKadqX58%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:27.5482218Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A27Z&se=2024-11-20T12%3A17%3A27Z&sr=c&sp=rl&sig=WJ0Mm9a%2BykM0OnhJnwGW6vrD8N5GeMOe7DKfs3F66Bo%3D","expireDateTime":"2024-11-20T12:17:27.5483064Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.875Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4947' + - '5041' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:09 GMT + - Wed, 20 Nov 2024 11:17:27 GMT mise-correlation-id: - - 445f3f42-5ee6-48e8-b7c3-2c2fe6159be4 + - 8eede7ee-b7ae-48ea-9e29-de80c22fc42d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055609Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r34g + - 20241120T111727Z-r16f5dbf676bfk2zhC1YVR2ru400000003q00000000009bt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1377,31 +1533,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=KEB7KcRafHwqYUG9ht2oHtHdD033o9mcZrMh8Ei9ogk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.5055319Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=7rYCUzFXKSlOnTq3rRJleYrlKCqFKa0UNetCkpOZMwE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:14.5050524Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=%2Bazr4VDvsNJidTqLBr%2FhKnzwJ1xycAVoKQTUPGgtBdk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.5057568Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=%2BsE4AssTgnktoznCkMizVJ%2FWVkjeKMEtMplh3tXhjIQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.5059403Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=v0BjpjFn3wdESjkB%2B8Aaq3skLMt1Of8HrQl5oPiyB%2Fo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.5061457Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A14Z&se=2024-11-07T06%3A56%3A14Z&sr=c&sp=rl&sig=8YytmKlEG7mKtVS7yIWyekKPnDsaVEFbIWuaioGRU%2BA%3D","expireDateTime":"2024-11-07T06:56:14.506332Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A32Z&sr=b&sp=r&sig=8hyjH5HuUIB8f8%2FCEkr09QbzATijC958A4PgCfmGHFQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:32.6575748Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A32Z&sr=b&sp=r&sig=FSvtaUJyT8WvbqkTtF4vWMORrggcogtfY%2F8k8SOx5fU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:32.6570959Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A32Z&sr=b&sp=r&sig=q3Ertx5FFqTA8VNYiaLlbUDrsBV9dZTpThEdKDxUC3Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:32.6577037Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A32Z&sr=b&sp=r&sig=%2BsvfeL3Qw6kMgYpFwhl9O4wM5G26Of%2FgA2wai4e8mpo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:32.6578026Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A32Z&sr=b&sp=r&sig=JPRO3Wi8MOS6LU2tMiKkKdJ6%2BBu1Q%2B5gwqqYp1gFnaA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:32.6579292Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A32Z&se=2024-11-20T12%3A17%3A32Z&sr=c&sp=rl&sig=YitwIIudLhjC0OAbk%2BkIkq5w8exc2PPjeIjYkOt6dlo%3D","expireDateTime":"2024-11-20T12:17:32.6580368Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.875Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4942' + - '5045' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:14 GMT + - Wed, 20 Nov 2024 11:17:32 GMT mise-correlation-id: - - 822bd0b9-1c0e-4d56-a7c1-2c9e7394c1f3 + - caa7c9f6-1b89-439f-b2e0-b237138c1dee strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055614Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r44r + - 20241120T111732Z-r16f5dbf676bfk2zhC1YVR2ru400000003q00000000009s7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1419,31 +1576,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=VLO5Ql%2FfhC9ubjOEmIHq4GqX8c3nGRMharznMWYtpt0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.7790293Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=ulsJcB0cEABtor%2F6VvOoc0mzAVx0Hg23psUZcjgHNqE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:19.7781881Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=3thqQhD%2B3RW1sO%2FWiRP5nVB2zQwIWj1L8PpelRx1%2BIg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.779394Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=o6O0MQhp6DwtdSEf2lDt740Zj3ZLX29cYJytBRU%2BW9k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.7797373Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=hmvaxZnjQd7DpXJSHSJvgabtAqCq029HhLP2XHnkLw4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.7800809Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A19Z&se=2024-11-07T06%3A56%3A19Z&sr=c&sp=rl&sig=UY1nT%2FRko%2BsLmAF4UUEYhejZVv5HVoT4APM1E5dRCLg%3D","expireDateTime":"2024-11-07T06:56:19.7804147Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A37Z&sr=b&sp=r&sig=YhDjll9So5cxYR0MkXcKsEISMXsxAcOhEWszm7F4zMI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:37.7745999Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A37Z&sr=b&sp=r&sig=b99s7HJXCDQXZqw9vdvTWw3aQrd24g%2Bcl4lVDr11GRM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:37.7742971Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A37Z&sr=b&sp=r&sig=zlcNqy5JAjqPNBHpmzI3h7Fqed4H4rnYGDbbIYsbtKw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:37.7747356Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A37Z&sr=b&sp=r&sig=wP2h5BH2PbkUjVNc%2FI1e3otUCIF7NSPVXyKtyg3RE7I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:37.7748709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A37Z&sr=b&sp=r&sig=CYH7szTTX31pKpQDjcwmaihDHIVMmpxzW%2F6tmaEzov4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:37.7750046Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A37Z&se=2024-11-20T12%3A17%3A37Z&sr=c&sp=rl&sig=1meKW9CN6jwrU2FRUGhjNABCFlD%2BZ5RF3RlnGwOUof4%3D","expireDateTime":"2024-11-20T12:17:37.7751356Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.875Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4944' + - '5039' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:19 GMT + - Wed, 20 Nov 2024 11:17:37 GMT mise-correlation-id: - - 13fe11c3-f2d6-4b97-b220-0d077f909160 + - c6169cda-c78d-4ebc-b3d1-fda26e8b4daf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055619Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r55u + - 20241120T111737Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000afq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1461,31 +1619,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A25Z&sr=b&sp=r&sig=kqLrcGLZUwx7BS4wtNLjDny6owX1b7uu6IqdYhlHgF8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:25.0512865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A25Z&sr=b&sp=r&sig=PSATukDBw8AIbGA5Rs0DnPhVkPxfkDvOD7F8MzszsWU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:25.0510005Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A25Z&sr=b&sp=r&sig=K4NbPx9sxU7E3m46Ltmboc0FqSsA9m1427fua3lhtRo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:25.0513689Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A25Z&sr=b&sp=r&sig=hIfjsxqOuT%2B11xWaO4na%2Fx25lTYuCCuikpeV7Mebsj8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:25.0514513Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A25Z&sr=b&sp=r&sig=F1JQaUlx59BxaSp9QWUOWqj80zAmMaH%2FMwJkvyHXXdQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:25.0515325Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A25Z&se=2024-11-07T06%3A56%3A25Z&sr=c&sp=rl&sig=vlcfw7LlULG95W8bD7UvezcjrCoJdPrvHvSoglfL4x8%3D","expireDateTime":"2024-11-07T06:56:25.0516105Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A42Z&sr=b&sp=r&sig=oVggv3%2FzMy5sUonqEttCH4ta599M1yg7iBxhc25H5nk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:42.8950896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A42Z&sr=b&sp=r&sig=LUZV4d8MtyDfPdwcFZNRj%2FGTi2CB%2FjjmzzvVdV%2Fu7WI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:42.8947046Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A42Z&sr=b&sp=r&sig=oHIp%2Bb5RQ0UGKxw5o7s1b%2B%2F8tgWEc44y1hLr3DT7QBY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:42.895232Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A42Z&sr=b&sp=r&sig=2WhAk%2FsrsOeW1xwR8qnQaUtfGOvJRhgHqILGUPIYqy0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:42.8953849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A42Z&sr=b&sp=r&sig=WsR949fR71twsrqhmcejJwWOujFNNYX1vE6JXgKE8iQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:42.8955266Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A42Z&se=2024-11-20T12%3A17%3A42Z&sr=c&sp=rl&sig=0PEpB2%2FTOgp8qX5ivGK5aTQllIeOHh1r623HtRGdtsA%3D","expireDateTime":"2024-11-20T12:17:42.8956635Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.875Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4935' + - '5048' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:25 GMT + - Wed, 20 Nov 2024 11:17:42 GMT mise-correlation-id: - - 9cb441a0-36da-4c0e-8413-4bbd5549cff8 + - ddfbe305-a93a-4ca6-84c8-554f798106a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055624Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r632 + - 20241120T111742Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000ayb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1503,31 +1662,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=AOLZaP8mEQj%2F1HC%2FRj2CmK7CZMoSPIM%2FX%2B8RY35Nzb8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.3202322Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=C4sid8kb3RqSV6JKAVX%2BzMcuYgo8QHuwKVknngA7ynA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:30.3197988Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=R4HAzWcnICwuqU%2Bj9sKJLAMCxV7yE8xlKxjH4XVyCCU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.3204718Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=spxbQ2dn3Qpw1hplKibuvAMfR2nvOKrnEMK9%2FdncyNI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.3206388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=5zk4WgcezlZMb2Ck2uBiXbT6hlasO8di7jzSLRUb%2BYA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.3208371Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A30Z&se=2024-11-07T06%3A56%3A30Z&sr=c&sp=rl&sig=W0rGLn0bh8a1GU6UqPv67wEvBg6cVZPCqNzrA%2Bq5dOo%3D","expireDateTime":"2024-11-07T06:56:30.3210464Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A48Z&sr=b&sp=r&sig=7T%2FM5KdXUADFgU4fyDcdoPvllAqMi2oDNoYnxSmvLnk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:48.0023048Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A48Z&sr=b&sp=r&sig=vw%2BJFNQbKiZ4CD6Pa6NDWMhb4B%2F%2FYqAt3lXvL3unjPQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:48.0021008Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A48Z&sr=b&sp=r&sig=idowBoC6Hd%2F6Kmkx5O7YXhEXPB72LOqh2VTeTHQPRok%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:48.002387Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A48Z&sr=b&sp=r&sig=o0fL%2FxBE8iRyJDk70CYKcmXoAkPuOm4xdbTyZc%2ByTDU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:48.0024737Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A48Z&sr=b&sp=r&sig=6U%2BZUPtD%2B7mIwSE5BdLchcOTaauBzMQVIdWMN%2BB%2BYzM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:48.0025627Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A48Z&se=2024-11-20T12%3A17%3A48Z&sr=c&sp=rl&sig=FNx%2BAFBsYaEZRgp174VAwHey%2BTSjW%2FzYUfZUY9C86l8%3D","expireDateTime":"2024-11-20T12:17:48.0026486Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.875Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4947' + - '5058' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:30 GMT + - Wed, 20 Nov 2024 11:17:48 GMT mise-correlation-id: - - d6903152-51c4-49c3-aad9-dfb6663f69db + - 3f4a7d52-91bc-4099-80eb-d9bf2de345ad strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055630Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r6yr + - 20241120T111747Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000bh3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1545,31 +1705,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=yLM8xBGPM6m3tbZZHZzEfOoAjMQDxxVes0py0vAoIng%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.5836811Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=DaiAku4JU3gBInlf8x9vxhlTbpKtIeUEkt5wI%2BR0a%2BY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:35.5833177Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=E0PT6OssAdjw3VEv7cWbf6qt9j6FLs02eVjoZnwqx2A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.5838424Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=upmbrJoUp9MNKrcRbd6AGB1dwei7NNGOssi4VqNf53Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.5839875Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=mCYHCDRqTHb79UttwmKkZKSonvGrNicGRpVV7KTWh10%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.5841302Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A35Z&se=2024-11-07T06%3A56%3A35Z&sr=c&sp=rl&sig=A%2B7kI8PK8cgshuqqZh%2BwoSNI030S8SCjLY1KDGex1kI%3D","expireDateTime":"2024-11-07T06:56:35.584275Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A53Z&sr=b&sp=r&sig=hn78ffRZW24k2U24Za%2BO27vbTtIMO8r8cLA%2BlMOOzJQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:53.1117516Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A53Z&sr=b&sp=r&sig=T4ygcNh5BiEq1RlzbW3ytYNOmouWvV7VjMTC6autAsY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:53.1114206Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A53Z&sr=b&sp=r&sig=FDNyh3PMKxp8eRUTxY%2FSzmXXmRu0NO5iHBU6mZLCOOw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:53.1118538Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A53Z&sr=b&sp=r&sig=eRNSURDtr1GNTiyytV6f0v4Jkp1zf5mLx3htM86lUAU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:53.1120498Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A53Z&sr=b&sp=r&sig=BQFQkAakv8QJ1yCaZq7BCI13cHiJBDHizMF3Q19rNao%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:53.112299Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A53Z&se=2024-11-20T12%3A17%3A53Z&sr=c&sp=rl&sig=mU9hGiSvwQQ%2FZZUeb%2F8MWDL4sJlBMaUVlPT1NrQj5%2FE%3D","expireDateTime":"2024-11-20T12:17:53.1124754Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"CONFIGURING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:48.374Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4936' + - '5041' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:35 GMT + - Wed, 20 Nov 2024 11:17:53 GMT mise-correlation-id: - - 4c77f02e-749f-4fbb-b799-91a2249a1b32 + - dd2da0e5-51ea-4340-ac2e-23f235ab5607 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055635Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r7ud + - 20241120T111753Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000bvc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1587,31 +1748,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=v02cOBwXb9qocFpouZ1SuI%2FY4C89dTgiYEZnVdZ7Ogo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.8528437Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=PCSa0zzBJGW%2FMd7WbNfzlCmLyZDmLD8lkGAoAdXI65k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:40.8524725Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=YNtVwA6TP1rjw5MnNWBZTwILoSPYh%2F4Z0oQ%2BlxwK%2B4o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.8530281Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=tbUwIYqDBR7S70dMs%2FGdXpFAJZ2Trhihql4VIbo7j%2FI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.8531871Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=pZL6QR%2BcEXXqt87UeZD7BboDIHrQKeN5RdOgswpsJ8k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.8533442Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A40Z&se=2024-11-07T06%3A56%3A40Z&sr=c&sp=rl&sig=mvbtz4mTbHrpiWD4mmjA4ci4xG6x0jythHJUX9mxkLI%3D","expireDateTime":"2024-11-07T06:56:40.8534839Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"CONFIGURING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:38.16Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A58Z&sr=b&sp=r&sig=4%2Fco%2BKsl%2FrM04WgqTUgPfQiYCp96ZdN2BPNfgtL4OXA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:58.2260219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A58Z&sr=b&sp=r&sig=lQYiihufk826tEH4qBz59KAfQQmILCEuiFyBDMIjiLs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:58.2256812Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A58Z&sr=b&sp=r&sig=LMqQ%2FbrXD1jqwOqKtYrW1WVOYOfp9dkIX91QvujU9UQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:58.2261563Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A58Z&sr=b&sp=r&sig=13AWHywPn%2Fe7HQCG1iAHpPuDZwWHGtA734ATGVKNV7c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:17:58.2262867Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A58Z&sr=b&sp=r&sig=nYvwKNgGThyxL0FOKT5ay2%2FgaaYnF0uB%2FK8mqot74ak%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:17:58.2264396Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A17%3A58Z&se=2024-11-20T12%3A17%3A58Z&sr=c&sp=rl&sig=KAGtLwXP6mtcgK3qxjXJK%2BEwKcvXl4eqOPy%2FnHwe7GA%3D","expireDateTime":"2024-11-20T12:17:58.2265747Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4943' + - '5045' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:40 GMT + - Wed, 20 Nov 2024 11:17:58 GMT mise-correlation-id: - - 8ace3c17-5c07-4e6e-ab99-cb3d0418b59b + - ade7eb22-870a-4f29-b0c4-2e092520df9d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055640Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r8qp + - 20241120T111758Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000c3e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1629,31 +1791,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A46Z&sr=b&sp=r&sig=oEm829vaQOY0pToBqb6Yv55evbbE49uBSARWdLKAubE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:46.114906Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A46Z&sr=b&sp=r&sig=JBe4UlmjRgCT5YByhUKPaw5wr5d5h8iBnGea7TNpe5Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:46.1144885Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A46Z&sr=b&sp=r&sig=qKak1Hn%2Bpylyk7eEmTDRHXOB9TW7HN6fBnHdEF995mk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:46.1150347Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A46Z&sr=b&sp=r&sig=Z2gcGhSLyQAMKvyDsdY%2BW0r%2FAtUuTlpJBNiHxOdrr%2B0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:46.1151931Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A46Z&sr=b&sp=r&sig=8ohrbnZW00Y2WqP0pcIEZidGV%2FMYrRhBN5HHxo8IqzE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:46.1153529Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A46Z&se=2024-11-07T06%3A56%3A46Z&sr=c&sp=rl&sig=d9PKFzAdQlbXhO%2F33XiMvNj3ZZylewH8KEaaLDaP2zc%3D","expireDateTime":"2024-11-07T06:56:46.1155105Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A03Z&sr=b&sp=r&sig=Bv5bMRR%2B4DIdveUW%2FHJmmSmycWqZI9SdaREEuqgD8fg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:03.3420665Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A03Z&sr=b&sp=r&sig=jmEn29CcXffpnivZ4s5xXtnSZTDfl%2BjS2GGsZpii%2FI4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:03.3417942Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A03Z&sr=b&sp=r&sig=%2FE046EuSjLGbzNdTi%2Fzl5B2mKmc5yHJejtzUHVEQS4E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:03.3421638Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A03Z&sr=b&sp=r&sig=Zm5HVG6I%2F2GJscVJas3suHu%2BpAu%2FLMXSz5DRF54tRqk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:03.342255Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A03Z&sr=b&sp=r&sig=I%2BSV%2BGfr%2Fm5Umly6UlKOPHlCLWPke3C4qhJC84UsjGs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:03.3423457Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A03Z&se=2024-11-20T12%3A18%3A03Z&sr=c&sp=rl&sig=ax32Xt2Khf%2FOYv%2BGjWqbtzyIhXVYfIl88mjDCWIADIU%3D","expireDateTime":"2024-11-20T12:18:03.3424321Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4937' + - '5054' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:46 GMT + - Wed, 20 Nov 2024 11:18:03 GMT mise-correlation-id: - - cc06ec38-6f81-4125-aff6-693631cd4bc0 + - d71e45dc-c5e8-40e0-aae4-56168ea45a03 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055645Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r9n4 + - 20241120T111803Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000c9q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1671,31 +1834,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=YxMVGxpzlsbViup8Z9gxMimrjxPxGH%2B6XIiODcb%2Bfpw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.3735323Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=GsRbDV8ran8CJjMfAT%2B7NvB92nOfCQ4xHDVeu5jHN%2Fc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:51.3732295Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=E8ZTGcQUDuBSKHFPS%2BL527SKuHP%2FbAIgAVquum9Wg7s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.3736305Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=re1Fq6HLa0dyRjS4uJXW6Yz2JRF2btZwvuTrzF35HpI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.3737213Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=vaEXQQD2kGWRWdK0N4kPzR%2F2EzA3zXtGTqXasLCyaOU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.3738115Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A51Z&se=2024-11-07T06%3A56%3A51Z&sr=c&sp=rl&sig=8YHbJ96ef5f%2Fc%2FfBh55iTa77BojTiAT70s6oW8xP%2F7I%3D","expireDateTime":"2024-11-07T06:56:51.3739012Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A08Z&sr=b&sp=r&sig=%2B4HwhuuDKKMDCWf1xWNURX1pT3grPRNO6PFxzLMPEJw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:08.4512086Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A08Z&sr=b&sp=r&sig=0U%2FgYkLUiAolG1LnY3f4seosNWsCBOWTdj0a1D380rQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:08.4506961Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A08Z&sr=b&sp=r&sig=SqBysoPegZI3szcIKI%2B%2B8ntdsUC5q%2Bgxbm2HM0dH85Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:08.4514233Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A08Z&sr=b&sp=r&sig=O5%2FlooM0oD0Fn95WRmwhRbiUMJy2vSlOPqJZyC45jro%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:08.4516453Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A08Z&sr=b&sp=r&sig=g8UKSQJ7sr6PETrOVpmCwqYKup42kaMWBpDCvJBSDMs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:08.4518551Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A08Z&se=2024-11-20T12%3A18%3A08Z&sr=c&sp=rl&sig=C%2BnFFpx1iFWZOdWO%2BefhHZmbsDvX0ZFthPvCkWgFnOU%3D","expireDateTime":"2024-11-20T12:18:08.4520719Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4946' + - '5043' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:51 GMT + - Wed, 20 Nov 2024 11:18:08 GMT mise-correlation-id: - - 3aa3ed91-75ed-4e30-b8be-9642b63ef29f + - 00ffbf48-fa68-4740-a006-ac2ab97067a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055651Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000raes + - 20241120T111808Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000cep x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1713,31 +1877,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=4kiVv5yAEcjTNnegNTloXw9Skz0wNVIdLmpy5v%2FXCAU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.6351751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=pfbzk2PGw1qtDgTgU2UCnK%2F9Vs%2FnqnGF0l0Z84Hds8E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:56.6340013Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=LktX%2FEGrIAIGMUv2O3OUAZYgB%2Fzukk%2FZAGBL0fPc1KM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.6353611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=AffYmbw%2FnlwxXj8GgEtpw8WsGPsatb%2FdcrVk6ci00Iw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.6355458Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=dUVYrd6RgJDA7AfphRuHVj4y6BUIH6Y8MD06c711rQ4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.6357368Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A56Z&se=2024-11-07T06%3A56%3A56Z&sr=c&sp=rl&sig=eqy18NkctC6IJkejpqnTKlOGaSkXdaxFHBHL5D7hhWo%3D","expireDateTime":"2024-11-07T06:56:56.6359093Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A13Z&sr=b&sp=r&sig=uydXZkNKgffJdSCHt1M1WUuBT%2F4YVKRCpPA7pV%2FQdYE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:13.5591533Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A13Z&sr=b&sp=r&sig=4l4OnUao%2Be86Elih3F4frF6N1O7HJKW3u1ADuGblEUs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:13.5588807Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A13Z&sr=b&sp=r&sig=8F%2FnXGX%2FtQ3vLzDjbwyZmIY5J1I1ynLpNTedu1dwdww%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:13.559251Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A13Z&sr=b&sp=r&sig=ZY33NxjadoHEnE5W020IDORmMbMv58SlWaj2yp5WMPY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:13.5593511Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A13Z&sr=b&sp=r&sig=bEIW%2F3JkCR0vRBZnLqssybj%2FfHGFrh%2Bxa%2BwHRtmhFqI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:13.5594491Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A13Z&se=2024-11-20T12%3A18%3A13Z&sr=c&sp=rl&sig=p4QLtQjtp1dApRP7hNwVDGkxb1S%2Fqt2kUBZHwG9xgW4%3D","expireDateTime":"2024-11-20T12:18:13.5595453Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4942' + - '5046' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:56 GMT + - Wed, 20 Nov 2024 11:18:13 GMT mise-correlation-id: - - 436c59b5-d6d9-453e-9e34-fc99ed851819 + - 40b4e017-c699-4347-a66a-72dd197f5f67 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055656Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rbbs + - 20241120T111813Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000ck5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1755,31 +1920,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=WwYbbTndWv8Xe2s8YQ48hGnNfAr1Oq1gKMAtXixO0pk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.9103885Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=%2FQHJgEXGF%2FVv5v6HvvFTYFFFI%2BLTF%2Bil0PRdYDNZPbk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:01.9101311Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=LGsvrrbdAaEW5SXgIunjcz06TzhYiRq1V9Q2B8Kr6z0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.9104745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=HNvhZu3Ux7nJYGehpIdbqvOhG8tGv6v4H8cnA8CWoQk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.9105361Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=ejFOeL66PIOiP33ssdcfDOhHh58LTbhYbICpiOEDdoo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.9105983Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A01Z&se=2024-11-07T06%3A57%3A01Z&sr=c&sp=rl&sig=RSz0RKj7BPXtWVDnV8nAvekkEPwPYPlLsxJzh6tvGb0%3D","expireDateTime":"2024-11-07T06:57:01.9106567Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A18Z&sr=b&sp=r&sig=smsiCflvqEJMF9WSKQoilLFLJoQyjIIPSFAyCYtdzfM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:18.668677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A18Z&sr=b&sp=r&sig=xGtFbCOi5JrFMiW1vc%2BdIWgbP1P3PNXNAoIdMdG0nso%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:18.6682477Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A18Z&sr=b&sp=r&sig=t0XVoQbd4Q7Xle8Hc64iFGWopXO%2FANQTk03n%2FIfwdqg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:18.6688145Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A18Z&sr=b&sp=r&sig=LYDUa5lz8StmldZYFxqAR3x%2FORv2xO1U1koIAeYz74U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:18.6689605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A18Z&sr=b&sp=r&sig=yx0TR5moYUfiASMcxHjRvu4PwYNTuc9u1TX66p%2BhJTA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:18.6691526Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A18Z&se=2024-11-20T12%3A18%3A18Z&sr=c&sp=rl&sig=PwI71mmu8fcPoqD3QWlMFHJAi%2BSqif66zvh9uraivt8%3D","expireDateTime":"2024-11-20T12:18:18.6692945Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4934' + - '5038' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:02 GMT + - Wed, 20 Nov 2024 11:18:18 GMT mise-correlation-id: - - 7c5df16f-44fe-4951-9ca1-455d3ca24da6 + - 0392dd04-a549-4d9b-903c-6ef713b213a7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055701Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rc77 + - 20241120T111818Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000cpz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1797,31 +1963,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=23yU6iOmoyRyhg6qN1eQcrFZdrd%2FVXYalFILa7F%2BdKg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.216919Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=Aufo1cFTlGe9Lk91EOWm0%2FjpuMSTAeZhQNJbiuRPdzw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:07.2166577Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=MOkUGm252%2BH87lCA0o3brt2jXfKOX2oNSy1EWMnhqbA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.2169932Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=Hvd0LCnKedXZglEY%2FlIJkW%2BwRUZO%2B5iNtZXjqGcVuUM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.2170695Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=SaT4f%2Bb%2FlmEQKWIsD39Kv4nZKWiuL%2F4p%2By%2Fj3bWcut8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.2171412Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A07Z&se=2024-11-07T06%3A57%3A07Z&sr=c&sp=rl&sig=CXp4xyAkwt5II9a6seubmVfcpgJwgh2eANGSbNrtP8Q%3D","expireDateTime":"2024-11-07T06:57:07.2172096Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A24Z&sr=b&sp=r&sig=00DIHFbsG6I%2FKmuyTbnWTNil%2BHHLoFl4dcprLn7JgEQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:24.2350089Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A24Z&sr=b&sp=r&sig=6Vv1V2DxcX6NOFhFEjb%2BN%2FOJyi9ISbIUAu51EsC%2BuuE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:24.2343416Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A24Z&sr=b&sp=r&sig=8tbhOjGJj7Psbn%2BPSExqqVua3GCQtvh1eh3krrEcCow%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:24.2356312Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A24Z&sr=b&sp=r&sig=s92mgkFP0X0vHqAFifF6iPaBk6AExf7qDJX01r6Q7F4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:24.2358396Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A24Z&sr=b&sp=r&sig=rzheE%2BUTOUyS8qPxKFT4DXZ5TRYmE9CD%2Frv%2B7GnlV9w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:24.2363124Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A24Z&se=2024-11-20T12%3A18%3A24Z&sr=c&sp=rl&sig=N3odNfvekWsvcJ74Wh6%2FGBTu%2Fpogyy42%2Fr%2FYqa6WE%2FU%3D","expireDateTime":"2024-11-20T12:18:24.2364365Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4949' + - '5055' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:07 GMT + - Wed, 20 Nov 2024 11:18:24 GMT mise-correlation-id: - - f523d2e0-26b9-42e1-977d-ea2f854fa9a1 + - 44e32083-8671-4dc8-8f9e-3c5f01cfd961 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055707Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rcxk + - 20241120T111823Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000ctk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1839,31 +2006,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=rtVzByAtj7h%2FLh%2B4SZDRGKQDJMCgooE54QwCYYuCePI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.4740801Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=1aResVFKsbkM%2FjY0GkBs%2FYL2CWXYz5z18BQ6fN%2BXiIQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:12.4737122Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=LYLIuDZgJKFxIUZFFtlISNuvJvl%2Fz0Hz5AZKHrcv%2FgQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.4742331Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=EifCEMiWaklYhU7bfoKyRCgXZ0saIn0wpBscmxvUFeY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.4743579Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=%2Fzjc%2BDQgtClLDj54fdemuzWsowrVzoRHH3rfczsDKBY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.4744985Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A12Z&se=2024-11-07T06%3A57%3A12Z&sr=c&sp=rl&sig=7962LcrEA3pi%2FtDCxXDFg7mn%2BQ3IlbFugL%2FX4KoFH5k%3D","expireDateTime":"2024-11-07T06:57:12.4746409Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A29Z&sr=b&sp=r&sig=GiLpUqGv1aF1uTyMd5fVZW7drrxHOxfauI%2BVkeUaNvw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:29.3566543Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A29Z&sr=b&sp=r&sig=TeKlQpmhiHzmA9RgYGaV0RaRTCajleVm000Oa0o767Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:29.3561985Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A29Z&sr=b&sp=r&sig=65qbp5ZRft1EPo4uznHWYHfcrUnsg%2BJDXl%2FOHI%2Fp%2FSQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:29.3568412Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A29Z&sr=b&sp=r&sig=ZjAbUEz3sy2VLwMlUZHKtLiziiPGSLPwIYhiPDzHGL4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:29.35701Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A29Z&sr=b&sp=r&sig=cUztu7VLIgSbpLuKUqdicdKxQIK%2Fn1yaSjJKl6BXIE8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:29.357178Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A29Z&se=2024-11-20T12%3A18%3A29Z&sr=c&sp=rl&sig=fSod9l36hYAMzs9sh2Iy3J8q1ZKWnpjM2LzGWJMkJe0%3D","expireDateTime":"2024-11-20T12:18:29.3573394Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4950' + - '5036' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:12 GMT + - Wed, 20 Nov 2024 11:18:29 GMT mise-correlation-id: - - affa4e52-0795-4c6f-aba7-c8db82c3b050 + - bd968483-3b8f-458f-b308-1342b6df051a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055712Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rdpy + - 20241120T111829Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000cws x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,31 +2049,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A17Z&sr=b&sp=r&sig=FegnOf8kOT5EwFW9ZJLnJ2yw9glZ5g3sp%2FNkJiL7SEo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:17.7375691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A17Z&sr=b&sp=r&sig=QeTVV8V8N0yj97uuUY0m0EY3306BmywEN41JddrfkU0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:17.7372338Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A17Z&sr=b&sp=r&sig=vZeEZRLadNc1NwcCmKhzUlzjimb5OBxO2Hv4sTM148k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:17.7376941Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A17Z&sr=b&sp=r&sig=gKOGdfoHthMJdTMmsqe%2FMBjAETkW%2Bf0pVstJb6vblvo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:17.7378354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A17Z&sr=b&sp=r&sig=uP4tc%2BXS6%2B%2Foy5ffOYOKgDIafqhT1OsmmX7YyBQzC58%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:17.7379523Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A17Z&se=2024-11-07T06%3A57%3A17Z&sr=c&sp=rl&sig=WeP6z7P2OdZ%2Fs1KPMyxspxOIz5y%2BTui2%2BXy%2B27zG8LE%3D","expireDateTime":"2024-11-07T06:57:17.7380702Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A34Z&sr=b&sp=r&sig=055F9EQuZvAEicPQ%2BKfw0dSbRCDfKCjtnvE%2Bxc8pB4c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:34.4864809Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A34Z&sr=b&sp=r&sig=ZfaoctaA4%2BLhZdR2StcdGQqV8ZFyTNPc3jiHKVJK7ao%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:34.4861579Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A34Z&sr=b&sp=r&sig=gjEn1BBnZ8b1AXIiDTqMUSCv8H7AJ69JhWiXECURh3Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:34.4865767Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A34Z&sr=b&sp=r&sig=4B%2BYbytYulBPW2xNbrcBS3rZhFiXuvmdEwLYF0eXSTU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:34.4866792Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A34Z&sr=b&sp=r&sig=LFLIXUq0fc7NFbT06K1e2%2F0PhtnkEP7sLAcoDgHqqfg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:34.4867751Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A34Z&se=2024-11-20T12%3A18%3A34Z&sr=c&sp=rl&sig=Hfvo91l%2FcrBlw8WuuGJkTlAT1trNJJtPMPU1vO3OZY4%3D","expireDateTime":"2024-11-20T12:18:34.4868659Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4946' + - '5039' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:17 GMT + - Wed, 20 Nov 2024 11:18:34 GMT mise-correlation-id: - - bbc1be4e-4d0a-4484-bf98-5e4fcf5e3d33 + - 7acd9f2a-3ab5-4388-8589-298bac63716a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055717Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000ree8 + - 20241120T111834Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000d0a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1923,31 +2092,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A22Z&sr=b&sp=r&sig=pcQY0KQCsNB%2BrNslTGFlHvCBrphWtw4bSNNCp0yzvhE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:22.9952211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A22Z&sr=b&sp=r&sig=rDfjIY7Ehnr8CKlIWzEm4bOAIJ%2BpIjVVGWGVWdzT0HU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:22.9947341Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A22Z&sr=b&sp=r&sig=2B6VlqOEid2M4YvCiMhWos9qJ2ivgiGvRJ%2FL07Rq6cY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:22.9953845Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A22Z&sr=b&sp=r&sig=4GT3eaWRuYLKdXsJaAcVsXk9kkPIajdsLWytsft9HJE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:22.9954725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A22Z&sr=b&sp=r&sig=uNLtn74OWifam6vQPS4jioXFP9dLhRvIDpNSB9pV89g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:22.9955545Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A22Z&se=2024-11-07T06%3A57%3A22Z&sr=c&sp=rl&sig=DNNM3omxOCKOBZYfMPsIpqGPOsF2AVxqMHDk6LNY5JE%3D","expireDateTime":"2024-11-07T06:57:22.9956381Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A39Z&sr=b&sp=r&sig=qL3h5GHlXhzr0AFHTs4yh6WD1mYs97GJp3OELeRcu9w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:39.7166687Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A39Z&sr=b&sp=r&sig=2Z%2BnG%2BWkq6HvX1t5eIR5nHY1tHdeCq6aI%2FdLhz4Wx34%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:39.7163152Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A39Z&sr=b&sp=r&sig=qiJbFlz%2FMJ%2Fi8duOtJdnKYgw0TyHozBylPoQNjCw3iw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:39.7168287Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A39Z&sr=b&sp=r&sig=vYCCLLI1Ugq%2FMmZOxLZ7ulMb9r5A5gd3V7Bdz%2BnAtrI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:39.7169892Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A39Z&sr=b&sp=r&sig=ZQ%2BGCajBqH%2F0zWTlhb9ISMLWDlv7UVdnMwG6%2FNaGbHA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:39.7171593Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A39Z&se=2024-11-20T12%3A18%3A39Z&sr=c&sp=rl&sig=aDqvoSIO4zwnQYp8Bz9yCISe7WG3l%2BQvqy%2BExmNaIa8%3D","expireDateTime":"2024-11-20T12:18:39.7173223Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4932' + - '5051' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:23 GMT + - Wed, 20 Nov 2024 11:18:39 GMT mise-correlation-id: - - d5a238c8-87bb-4cbf-9ac2-b87fb95ad1f3 + - 2396ee01-439f-4445-b984-fc365d464dac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055722Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rffs + - 20241120T111839Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000d4p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1965,31 +2135,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A28Z&sr=b&sp=r&sig=EXmaijQEw5DBhjHvhLJzgni37eyKzjt%2BkqVNRbU1WcE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:28.2644454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A28Z&sr=b&sp=r&sig=I01cCjS3YKbIE%2F3NpGy5%2F0%2FsdkDjaVBD6nh2RxeSs2Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:28.2640206Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A28Z&sr=b&sp=r&sig=tvY6H5tAfMD75zFdX9EgWuFyHPJ8jemwSHYlbkrFRh0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:28.2645374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A28Z&sr=b&sp=r&sig=lfXgVEuboewhFx20WT6OBKcR8MWk9xkCa5V7oA3GV3M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:28.264629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A28Z&sr=b&sp=r&sig=Mb8i6OnPpchG%2BhuOkRM9fF%2BKaSQ6kJBfDqJcgOhpdUk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:28.2647211Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A28Z&se=2024-11-07T06%3A57%3A28Z&sr=c&sp=rl&sig=yU2Tgeve4Jf5KdzNIufmlCJOZWsGyD3mcyvKcDQzaEU%3D","expireDateTime":"2024-11-07T06:57:28.264812Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A44Z&sr=b&sp=r&sig=MMiiUjU%2BlzZ8JNBsaHDz89QsIxHeL0rvWdoeXFBiwgg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:44.8357498Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A44Z&sr=b&sp=r&sig=bkMMhc%2B%2BnPmQ%2Fmm3VPyxryHjjzcyCkwgmScRlAMJrmc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:44.8353199Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A44Z&sr=b&sp=r&sig=LDtqv4EovDgKbEwLFJP9spA525M6%2Bc1kll6b1%2BAXBKk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:44.8359176Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A44Z&sr=b&sp=r&sig=Ny33Jn8LZhBtITsU0WNztW%2FgtA0qyBz3NVanVpSjcWc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:44.8360982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A44Z&sr=b&sp=r&sig=apJcPiIr2JDPeTNzrIglrgiTifcpd63%2B1lClWkOz3Po%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:44.8362632Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A44Z&se=2024-11-20T12%3A18%3A44Z&sr=c&sp=rl&sig=V74k%2Bj6NJtESTIHodXMIl5Q9BvJdO%2BUlY%2BhIjj5yKF4%3D","expireDateTime":"2024-11-20T12:18:44.8364395Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4936' + - '5049' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:28 GMT + - Wed, 20 Nov 2024 11:18:44 GMT mise-correlation-id: - - bc50962f-007b-42e3-9115-23d8b92d61f4 + - dfc392bb-c644-4910-8a5b-d7463f8c7634 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055728Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rgd6 + - 20241120T111844Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000d8z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2007,31 +2178,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A33Z&sr=b&sp=r&sig=YLIeJYXwDl5sTrcXQfIL%2BnRTCjI3pPDp1ZOrvQS0Igs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:33.5313627Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A33Z&sr=b&sp=r&sig=8kRxpPm3VbBlAwcpAI1Y%2FoyKODqkj1PfoPuHnGWRkFo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:33.5309752Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A33Z&sr=b&sp=r&sig=EDlt%2FYf5Oy%2BU9wWjqo5PzF2%2Fh4zjZM9vz35d0w1KcGE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:33.5314537Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A33Z&sr=b&sp=r&sig=eGuCxewRZufpks64sAT3zJMu%2Fl1QOBlHjATlx6U5WI8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:33.5315454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A33Z&sr=b&sp=r&sig=9nvWOAc4o3fBWJSCzi58KRM3i5h6Q6RHgTYt3Nt8lCQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:33.531642Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A33Z&se=2024-11-07T06%3A57%3A33Z&sr=c&sp=rl&sig=DbsZ76X%2FKzIzGSAnb26El5KZARc6IqY9fVUmMK9nVXY%3D","expireDateTime":"2024-11-07T06:57:33.5317322Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A49Z&sr=b&sp=r&sig=wIHNUe8sgeOKSEqdCnuN1L5%2F10EPDWoyU9DrMchQCXU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:49.9434296Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A49Z&sr=b&sp=r&sig=u5pnWx6PdJMmCENXiraAcy2I45i9ux7Df4XPm8ln%2Bhk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:49.9430358Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A49Z&sr=b&sp=r&sig=8DBVfXAuM6n6aO0DS%2F6d%2FiZpDXeZLuN3yAkU%2BB6BeWE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:49.9435812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A49Z&sr=b&sp=r&sig=GuG11%2F9VUV%2BG3GZIJYXHvbFYD2DkZMarNSOmzOY7GXQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:49.9437461Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A49Z&sr=b&sp=r&sig=2c3andPz0DuIsn9JS74U%2Fd6HveHSi%2Fk7vukt7Zx8HCY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:49.9438668Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A02Z&ske=2024-11-20T18%3A16%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A49Z&se=2024-11-20T12%3A18%3A49Z&sr=c&sp=rl&sig=7wy5I5W7%2FwRVXWZHcX9DDISnBe3sFVTX5SVvgjDtSL8%3D","expireDateTime":"2024-11-20T12:18:49.9440108Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4939' + - '5047' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:33 GMT + - Wed, 20 Nov 2024 11:18:49 GMT mise-correlation-id: - - 02f59079-36b5-46f3-a30d-9967d7d8f5d3 + - 3f505836-e1b0-40a5-b9d3-ccd742237c70 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055733Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rh68 + - 20241120T111849Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000dc3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2049,31 +2221,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A38Z&sr=b&sp=r&sig=FqIVu%2BnzufwwFcTmOsffE7g1Z80euR0Az98urEfLkdI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:38.7915255Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A38Z&sr=b&sp=r&sig=Tsm9txxhC9uHAeSS7bb74rn9hUHMCOkGj0NT2OQwHhc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:38.7910954Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A38Z&sr=b&sp=r&sig=Ta25SM7MW9rbWMPk3RQH9IIfXTB4%2Fs%2FiELj%2FnQEFooU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:38.7916976Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A38Z&sr=b&sp=r&sig=ejHdm2zcEUXQsSN6koR3GOLdMggAxAfBVaAHkHV2KVk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:38.7918722Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A38Z&sr=b&sp=r&sig=jDCuGFO92Soqnx3qhmsJ0VaqStrUlxc6QF2JQb2IyYs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:38.7920416Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A38Z&se=2024-11-07T06%3A57%3A38Z&sr=c&sp=rl&sig=%2FBNQuyZYtlwbO9BM%2Fb9cU4bmMZvATqbxwviR7kR7ssc%3D","expireDateTime":"2024-11-07T06:57:38.7922122Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A55Z&sr=b&sp=r&sig=bBYQN95AK4VLcWPEBEOOH%2BFjVw0VVfsHtTd3EHkPeJc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:55.0560141Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A55Z&sr=b&sp=r&sig=bpkY76eC%2FdaSWBTnP10WXmc0VO9SbQM8edytNXfELl0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:55.0557011Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A55Z&sr=b&sp=r&sig=ktIs4EBr9%2Fql7l09%2BnIo0%2FOm0vpbfvXfeGq7%2FrAUBs0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:55.0561594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A55Z&sr=b&sp=r&sig=TNpsU7VOJGVrYa4wD4WVDzGT%2BjQIVYM2B%2FmQDOYOsQg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:55.0562611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A55Z&sr=b&sp=r&sig=%2BXLBHmNmG%2FlEadso6q7PXAsJTVh83dvxUPpprPoSn0s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:55.0565738Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A18%3A55Z&se=2024-11-20T12%3A18%3A55Z&sr=c&sp=rl&sig=VtRQhOvwJQM22E68z8wnRCrB1XQ3MElCTHZtCFPvURg%3D","expireDateTime":"2024-11-20T12:18:55.0568642Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4938' + - '5047' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:38 GMT + - Wed, 20 Nov 2024 11:18:55 GMT mise-correlation-id: - - 0d2efafa-9d9a-4eea-a56e-635902fc10a3 + - 744c98c2-58e7-4cfd-b5fb-f703ce06e2b3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055738Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rk1u + - 20241120T111854Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000dfy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2091,31 +2264,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A44Z&sr=b&sp=r&sig=1e0YIEpIttCSh9om1455UBzKZE1Bt4QDrgvFQfcOp5A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:44.0638732Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A44Z&sr=b&sp=r&sig=2WIe%2F4VLBiXdYXMELHjoXj6xf2m7AcoTH0WgqrtE6LU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:44.0634471Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A44Z&sr=b&sp=r&sig=pfjRZasKRA%2FPOcSYcqqle8F0lsEIz5nIxfqXzlE6XPU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:44.0640199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A44Z&sr=b&sp=r&sig=UDYWoJkta6XdlFvO1qp%2BhNyFtjbHMPmVB%2FThh%2BYL5rQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:44.0641442Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A44Z&sr=b&sp=r&sig=zPDBsrFwxZ2PeCxTCY8Ec20xhfQkXojLoBZ1lmgSJsM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:44.0642915Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A44Z&se=2024-11-07T06%3A57%3A44Z&sr=c&sp=rl&sig=xB1lh6DBZdT9O1CUFdI1p4IE1mC8wHy%2FL%2FZXXmLO%2FyY%3D","expireDateTime":"2024-11-07T06:57:44.0644307Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A00Z&sr=b&sp=r&sig=wdTqeJFfrAUVQKH4bJVC%2BgrhKjie9%2BOFBUzVkw3Et1I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:00.1768038Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A00Z&sr=b&sp=r&sig=EyYcDHmIUkURIEka0FEt0ib9Gmw286gu30%2BeyLA%2BpdY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:00.1765461Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A00Z&sr=b&sp=r&sig=shUO1YYF9dvbGf1SLY%2F2Y%2FACmmWvw3i70upo1tyFbE4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:00.1768803Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A00Z&sr=b&sp=r&sig=s%2B7QI0RNyCcTqtRzNllsBiG2mtWTJ7KZsRuVCUPhDJ4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:00.1769525Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A00Z&sr=b&sp=r&sig=ZB%2BYyVVKBrtr%2F9U427n5Lrvip8abK1ksKcgKfDKHRd8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:00.1770214Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A00Z&se=2024-11-20T12%3A19%3A00Z&sr=c&sp=rl&sig=s17mlRetx5OIbOYRE82tsItAsNvg5Ne3zdLMcGx3qSk%3D","expireDateTime":"2024-11-20T12:19:00.1770859Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4942' + - '5045' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:44 GMT + - Wed, 20 Nov 2024 11:19:00 GMT mise-correlation-id: - - fdfe4bd0-4ab2-4b0d-a05d-ad87ed7214ce + - 43379f5a-5eb3-493a-862b-4bda04f19854 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055743Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rkwy + - 20241120T111900Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000dm8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2133,31 +2307,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A49Z&sr=b&sp=r&sig=agyPtF%2BE3Gtv%2FiccsDhH2w%2FC33aG6UbWVYvCUozU9ls%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:49.3281747Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A49Z&sr=b&sp=r&sig=Nv0UOgj2yeQRbjGLyuUBKlFFVKorNIij6F3FOVmASw8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:49.327813Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A49Z&sr=b&sp=r&sig=IiAAVGes9dbj9DG2VhfGpSbuiql9k7J0S1Z0GVL1iGc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:49.3283192Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A49Z&sr=b&sp=r&sig=AF2V4DrxGcerzw8GRvNx8aW6DUQsg4tQDEnfIp0ZQbY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:49.3284655Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A49Z&sr=b&sp=r&sig=rLK2N%2BSndmamaBBfRHOgjSPo6duc5jUqko51pcgi4kU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:49.3286047Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A49Z&se=2024-11-07T06%3A57%3A49Z&sr=c&sp=rl&sig=eVRFSY5CeVkvNEXAbK53BNdqjPvWPjyyE004jIIlh7U%3D","expireDateTime":"2024-11-07T06:57:49.328741Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A05Z&sr=b&sp=r&sig=kanWRfncoNZ0sSKX5HhpfUAqF68mmgH85%2FW9nvbdbC4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:05.2873927Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A05Z&sr=b&sp=r&sig=p%2F6FQLhGb9YMBFko7bDirte%2BiFjc%2FcKfR%2FYB7CSM2L0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:05.2870571Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A05Z&sr=b&sp=r&sig=hlNyydEqe1whd36hcp6s1evreSZk5svEXXPxW7Sexqs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:05.2874943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A05Z&sr=b&sp=r&sig=1Tw28%2Fi%2FYI8T0kkgG4FqvmSJK3gn9hEeoP6fSDxVQAs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:05.2875993Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A05Z&sr=b&sp=r&sig=hZwMziBIG4EO5%2FhpNFvbL6bM7S2P4VUd9odEKqdIv9w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:05.287703Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A05Z&se=2024-11-20T12%3A19%3A05Z&sr=c&sp=rl&sig=FqJ4mNSsLts%2FRN8sGTG6jD4Ep7VIIS7SYHlI8eT5pcU%3D","expireDateTime":"2024-11-20T12:19:05.2878042Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4932' + - '5044' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:49 GMT + - Wed, 20 Nov 2024 11:19:05 GMT mise-correlation-id: - - 309d2ad2-3bb4-4df1-ad67-b7eb49450133 + - 1dcfa60a-b946-4671-a41f-5136caaa499a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055749Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rmxt + - 20241120T111905Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000drp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2175,31 +2350,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A54Z&sr=b&sp=r&sig=9ca7zU3OiGVvvS%2FjVMOWFao%2Bf1AR0nOzZYDMDeQfS68%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:54.5929272Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A54Z&sr=b&sp=r&sig=OwVtC0cqEgl81AGixMcTbjt%2BmufnIdXqvDXUFINj6Rk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:54.5925036Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A54Z&sr=b&sp=r&sig=9e9IlMhebqUscgc6l1BSxDiGNCmwmfLk%2BxYFTQ%2FK4VQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:54.5931188Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A54Z&sr=b&sp=r&sig=8QkkZIytGmTTh8eVetps4AHKrpHRCNbBwDi7AXTvGKE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:54.5933077Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A54Z&sr=b&sp=r&sig=T7ukd9GnYuZ4IYF7C5kl1tfWr2qb2Nhg23foplDYoJg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:54.5935008Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A54Z&se=2024-11-07T06%3A57%3A54Z&sr=c&sp=rl&sig=UAveHT5KK9h4pgyn%2BEdBi%2FnHWhmgwQBjeSyDKhq%2BOEw%3D","expireDateTime":"2024-11-07T06:57:54.5936956Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A10Z&sr=b&sp=r&sig=L7PuIVsrlT8CDCE4OcbZrBeG%2BMxt84a1Mf1bBN%2BKiug%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:10.3942872Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A10Z&sr=b&sp=r&sig=uYsiB9%2BcSW5wNps7aHA6KYtEFqEVjBBHY8QKGCsfhxA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:10.393665Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A10Z&sr=b&sp=r&sig=sdcf%2BNoTFhLongg%2B66T8wYNqIvGaey%2BQD9KStrcEdkg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:10.394468Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A10Z&sr=b&sp=r&sig=HXzpUifZaZ1wnQaBtd8LnC9Jl%2FeL8NcAFCESpOEcuS8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:10.3946376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A10Z&sr=b&sp=r&sig=bGCP1djN5DJAqtT%2Be00SW1KpNytFMcGqnK4avxK7Mik%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:10.3948173Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A10Z&se=2024-11-20T12%3A19%3A10Z&sr=c&sp=rl&sig=zpeD2KWjzAa5s9RW9QtlgrLjirWO%2F71zLJYnTLzCAAE%3D","expireDateTime":"2024-11-20T12:19:10.3949841Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4942' + - '5043' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:54 GMT + - Wed, 20 Nov 2024 11:19:10 GMT mise-correlation-id: - - 9fdb3a1a-d7af-4151-b703-f624c0d3c1be + - 39e318b8-e0f7-44ca-8f50-f5259aba7993 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055754Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rnph + - 20241120T111910Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000dws x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2217,31 +2393,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A59Z&sr=b&sp=r&sig=0q5lMQCAU6YwYJlWV3goJ9bfy%2F%2Fu1ESSN0XKYjG0cg8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:59.8699417Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A59Z&sr=b&sp=r&sig=FUNblJNNsojBY9DNq6Hlcce0yEo9d2CXtEMZmUWXgFQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:59.8694272Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A59Z&sr=b&sp=r&sig=DHzRB1hOnfJk1eq4BDo99s%2B9k5qFMMBVj4W62DOviYU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:59.8700375Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A59Z&sr=b&sp=r&sig=f1NC7qdYS04tPDFLgisVrJGJ6jpIq1U%2F8f9%2BJu6gn14%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:59.8701328Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A59Z&sr=b&sp=r&sig=6USoEEDhj3POGFF72MDg3Ncavl%2BrugB0FhEG%2FNSg%2BDU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:59.8702014Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A59Z&se=2024-11-07T06%3A57%3A59Z&sr=c&sp=rl&sig=DyxVI9%2BP5UNJL9mJ%2BYeKnhsmVPFpgO2RX7CORay%2FRZo%3D","expireDateTime":"2024-11-07T06:57:59.8702612Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A15Z&sr=b&sp=r&sig=xtr2kLR2yQoQLhfPJ4NOT1jezitZSAlWbrr80MttgQg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:15.5121991Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A15Z&sr=b&sp=r&sig=CEOeTR2ochn1EkNWJZichkm6wuz9OTx1rH3gNcI3e7Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:15.5118628Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A15Z&sr=b&sp=r&sig=EiLS3O3dKSvGGeeW9DFWZIjirpGlufbub9LpUzNHlDY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:15.5123228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A15Z&sr=b&sp=r&sig=y9g2DG%2BDojrrjDYV0BJKVRJxmdrbCYqVfqtbUZJaTjY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:15.5124623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A15Z&sr=b&sp=r&sig=mBQa1wQCYZwcJI5fbFLnGrTIoy1%2F9NgwpafnU8tUC1c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:15.5125911Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A15Z&se=2024-11-20T12%3A19%3A15Z&sr=c&sp=rl&sig=Gq6ANNQumgQOFEC%2BDoJRELZoL3BfWnDG9XjoD%2F9urFA%3D","expireDateTime":"2024-11-20T12:19:15.5127205Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4948' + - '5035' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:59 GMT + - Wed, 20 Nov 2024 11:19:15 GMT mise-correlation-id: - - 5c2ccf1d-ebc8-46cd-a109-88d0a6220244 + - dbff11e0-320c-4aa3-a7df-6f22cc750d99 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055759Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rpfe + - 20241120T111915Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000e2t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2259,31 +2436,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A05Z&sr=b&sp=r&sig=cKfy7F0Yk1k2bpeHKLQ0uDo8QR6GBBfFRBUOIKJ7PNE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:05.1421614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A05Z&sr=b&sp=r&sig=p43njSW3kBF%2FOQ2jMqRrvFEmnYo8afDLrVSdWGCKZZ8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:05.1415588Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A05Z&sr=b&sp=r&sig=kBDL3paOaSxyHosY0cfvYFDhvWdKFzBAS1rC5pJANko%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:05.1422693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A05Z&sr=b&sp=r&sig=ocMdl2%2B79tuYcmCbb%2FWfqYAh0apyiWCcn8DaZXIIMiY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:05.142359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A05Z&sr=b&sp=r&sig=k1ldcchDB9%2FgOhBugdUN8c9tKmSO55wxz93pCEStL0M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:05.1424481Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A05Z&se=2024-11-07T06%3A58%3A05Z&sr=c&sp=rl&sig=UicVbWRGCm4Z%2FPC3r74E9JOSjvOzxiycMkNmzRzZpeA%3D","expireDateTime":"2024-11-07T06:58:05.1425323Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A20Z&sr=b&sp=r&sig=bK2CvQ%2BXDUf6XmmggiENdMkhngXgVV3BzrbsumevHFM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:20.6247052Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A20Z&sr=b&sp=r&sig=3r5fUPG1j2bLf%2FGqmveOtFf30m%2FUzGHywc0fGRQrpaw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:20.6242164Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A20Z&sr=b&sp=r&sig=2yJ%2BdiLpljN4%2FT6pLfqV5No%2B3Gw0D5iKn3DD8dH6xc0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:20.6248359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A20Z&sr=b&sp=r&sig=IsWHcfDDI1XzsABU7HO4t9%2B0M7G4hRumPyk2Mp9AsCY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:20.6249303Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A20Z&sr=b&sp=r&sig=85S2ewtcex7Vi%2Fru28PfTGSjvgC4uqbcBXEHTjavjh4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:20.6250274Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A20Z&se=2024-11-20T12%3A19%3A20Z&sr=c&sp=rl&sig=1rhj73bxakFz8WCvfSQiH6cdZXfUwkgmgZUOP8inTgY%3D","expireDateTime":"2024-11-20T12:19:20.6251193Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4935' + - '5043' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:05 GMT + - Wed, 20 Nov 2024 11:19:20 GMT mise-correlation-id: - - 0ea39ee7-b64e-45ff-a550-93f38b1dde21 + - ad03a8b2-88d3-4974-a15a-f962ab8f4e1e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055805Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rqan + - 20241120T111920Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000e77 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2301,31 +2479,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A10Z&sr=b&sp=r&sig=6uHvdkeuR%2B4WAWKX0gXYTSkHdcrstAIxOtCYEfIYuDc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:10.4024538Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A10Z&sr=b&sp=r&sig=tG1%2Bzum%2FtdQnrMFRH4c2me%2FqB9P2Fi1R9K4xIoVhyF0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:10.4020336Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A10Z&sr=b&sp=r&sig=RUg4yRlha5qvc%2F0%2FxZ%2BUNeEu29ySllpNmxPLYeW1ouk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:10.4026274Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A10Z&sr=b&sp=r&sig=jFlhN5XPVasIiFItjlcWSoJxVP20RfvhAXx8GRrVEpg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:10.4028123Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A10Z&sr=b&sp=r&sig=wGkflPS6Scp%2Fd%2BevRto9PXRQkWFQ7%2BfQGO9hYdgGYGQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:10.4029887Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A10Z&se=2024-11-07T06%3A58%3A10Z&sr=c&sp=rl&sig=E%2BOgIq3DF4rC1JZjCOKpFRhHstSYKsrj9Nr%2BAS6pPcg%3D","expireDateTime":"2024-11-07T06:58:10.4031623Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A25Z&sr=b&sp=r&sig=4wFqjE7HXeWXFgR%2FTbtB8D9ucJT0DrKwa789qtpDd88%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:25.7394354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A25Z&sr=b&sp=r&sig=CWonAhorbDXPOCY30zeiqyJ9PK4TUZPVCJAv6uRH2OM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:25.7390916Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A25Z&sr=b&sp=r&sig=Zec0llGtSoXA3yn9W4Ykd6kj58wjby8xgRi4iU%2F5NFs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:25.7395293Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A25Z&sr=b&sp=r&sig=o13emdVqXlBpEEmIBrrnery%2BHzXYn95pIDc7xstL1Uw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:25.7396253Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A25Z&sr=b&sp=r&sig=uyMOyJt3VnwKp4RhKWEz%2BuYeZEFL4J8HsiOVxltlPok%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:25.7397449Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A28Z&ske=2024-11-20T18%3A16%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A25Z&se=2024-11-20T12%3A19%3A25Z&sr=c&sp=rl&sig=BH1hTED%2BJgnrqagVBacjy9p13i%2BvCVq%2BylyY%2FBH4asc%3D","expireDateTime":"2024-11-20T12:19:25.7398773Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4950' + - '5043' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:10 GMT + - Wed, 20 Nov 2024 11:19:25 GMT mise-correlation-id: - - f04f0250-fe61-49a9-9aa0-c1092a4ca7ba + - bb9c6977-314d-4efe-ab19-b903be169f54 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055810Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rr5g + - 20241120T111925Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000ebq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2343,31 +2522,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A15Z&sr=b&sp=r&sig=WH3M0v197QystYpMJrqB3BoJntI5PD2ISzfnDbEedVs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:15.6854788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A15Z&sr=b&sp=r&sig=4hxiVWQ2NRLEHnzP2otaWdeluhzMSxRvagxi51PU4As%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:15.6852343Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A15Z&sr=b&sp=r&sig=QVWxKuKJoX8zassuFW8r1mDNfaRw1dMToXmWHM9YHjg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:15.6855432Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A15Z&sr=b&sp=r&sig=C9NDeakZ7zrZXTH1S5DQJsVB%2Ffh7H%2BIlg2mTmiWLtQw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:15.6856045Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A15Z&sr=b&sp=r&sig=EDVtHXvWQUdCVZiTzROg2jUQAXnbRlSAwxxBzIV1peM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:15.6856653Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A15Z&se=2024-11-07T06%3A58%3A15Z&sr=c&sp=rl&sig=Tde6QNCCAHFKe6RsqxOOtHNHHf3FdOMJsMaquxF0e3g%3D","expireDateTime":"2024-11-07T06:58:15.6857254Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A30Z&sr=b&sp=r&sig=XD%2FWwai63ONJB3BV9p61emj8gX4iDMYO%2B0P%2FzumzLdw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:30.8565482Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A30Z&sr=b&sp=r&sig=r1HvGZXbwQ0WSIoWIeVON%2BjAmHAJRx1whjmvyrJeA9Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:30.8560644Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A30Z&sr=b&sp=r&sig=FQGo%2FMPBa%2FZqM3Bgrd5X8NubPz%2BfUgkB1XfSIZ0ndZk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:30.8568306Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A30Z&sr=b&sp=r&sig=4ZZL5EzukKFKBZeyFO9nuON0UWT7%2FzyQ0pZ9Yn7w%2FrY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:30.8570884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A30Z&sr=b&sp=r&sig=a%2BEjd7oWvCo8%2B%2BOEzVKwt62U6XPKDz6bZf%2FKDGhU1SU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:30.8572823Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A30Z&se=2024-11-20T12%3A19%3A30Z&sr=c&sp=rl&sig=JXiIp%2F94ryhpNkF8oYI3cePWr%2Baw1hYztohHykIXZbU%3D","expireDateTime":"2024-11-20T12:19:30.8574924Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4930' + - '5057' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:15 GMT + - Wed, 20 Nov 2024 11:19:30 GMT mise-correlation-id: - - 8b50137a-a5ac-40a3-91a3-cc2e9f626df4 + - 1ca1cc6d-16bc-4cc7-89b2-4bca55df62df strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055815Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rs1w + - 20241120T111930Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000eg8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2385,31 +2565,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A21Z&sr=b&sp=r&sig=Bb%2FwwMAiyAmVY4jWzs%2FM9QdM9LJYxeee1ruY%2F42Mr8k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:21.015437Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A21Z&sr=b&sp=r&sig=YLyAog6IHY426r%2Fp2yY7HfzOYwNsJVepyVPwqT6aBXQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:21.0149531Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A21Z&sr=b&sp=r&sig=Rv3kd6ATsnxKj0YvfX88T6%2Fa6N9LYA%2FkfRmVddo1Yzc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:21.0156232Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A21Z&sr=b&sp=r&sig=yzBxAuSRsrlZJt%2BzD3vv4cURxGi6IilMLAi1seSoNEs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:21.0158133Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A21Z&sr=b&sp=r&sig=XxrVFB5q%2BVXxT%2BiDMyZ4h7hr9sOC3z8WK8jZZDMP7es%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:21.0159991Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A21Z&se=2024-11-07T06%3A58%3A21Z&sr=c&sp=rl&sig=Dm5aDb8ochUZyr6j8J0tPv0XSE%2BLR1InGkA9DN91wBY%3D","expireDateTime":"2024-11-07T06:58:21.016188Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A35Z&sr=b&sp=r&sig=3xruWTbDs79b0JsmLlBr8zIB81PK6%2BvJt4JIGwAHj2A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:35.9624676Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A35Z&sr=b&sp=r&sig=FXrLRHKWiTXWbNxvg%2B%2Bvm8hH%2FWzWwjGE6e8%2FZ3UWokU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:35.9620749Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A35Z&sr=b&sp=r&sig=%2F0GzBbaprDVyoA2L7vl7dU7rNMv8yXKJuW5X%2BxCT9bY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:35.9626139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A35Z&sr=b&sp=r&sig=%2Fif%2BCv8gkRs9ubKQhIaooQwvngW%2BmlApxquQUFYAY3w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:35.9627669Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A35Z&sr=b&sp=r&sig=fdZHQujFC%2F59GH%2F1Gzvz2PEPXoYfBKA2nZfBt9HC5ig%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:35.9629097Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A01Z&ske=2024-11-20T18%3A16%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A35Z&se=2024-11-20T12%3A19%3A35Z&sr=c&sp=rl&sig=odJj7NDEymGaQohtz8cm9u6kDDuPvfe1MriTvzfslXc%3D","expireDateTime":"2024-11-20T12:19:35.9630545Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4944' + - '5051' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:21 GMT + - Wed, 20 Nov 2024 11:19:35 GMT mise-correlation-id: - - 81645a53-275e-466a-87b8-4421f9253cc2 + - 61756325-34d0-4747-802a-adb649df0451 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055820Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rt19 + - 20241120T111935Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000enq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2427,31 +2608,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A26Z&sr=b&sp=r&sig=cgGitFVFQ7AMDlKSCfjEw3Bf4a%2FeJt136HriOsCsqcc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:26.2705818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A26Z&sr=b&sp=r&sig=l4oSEL9wevn5p0MjdSlp4jSIBkNmum4gPGW7sIika5w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:26.2702435Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A26Z&sr=b&sp=r&sig=gG8NpGT9ovEtrUzjupqlbIIf7QeCbutqZ2UgcUnZTJk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:26.27075Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A26Z&sr=b&sp=r&sig=AKxuvZU4LXv3H2piDeLANNCMpZ%2BOA4yvEpYCM8ko4D0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:26.2709295Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A26Z&sr=b&sp=r&sig=8JfvFNSQOJkmIQiDwhWEPLJD10RQ5KzKYmwrU4FAEIY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:26.2711163Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A26Z&se=2024-11-07T06%3A58%3A26Z&sr=c&sp=rl&sig=SzHb%2B2Q7bIboSEWVD1K3v7ZJeCZQU01x%2BND2TvP6u%2FE%3D","expireDateTime":"2024-11-07T06:58:26.2712691Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A41Z&sr=b&sp=r&sig=8CG4aQnDgT3GX%2FMrBQyDGp9y4Oh1KdYb%2BR73fWXwFPU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:41.0696186Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A41Z&sr=b&sp=r&sig=osJvDfUJTBEPetdxFLAIrDRNp9dh1dqg%2FAE5ovnDBi8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:41.0693424Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A41Z&sr=b&sp=r&sig=T3pEcCz3s3CK3GTTg05jSofjYQGjjOThRWMHzssD8IM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:41.0697079Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A41Z&sr=b&sp=r&sig=lXdAMyiE9ktpYLbE%2ByFWcVAuIKz4V%2BJBtjN27VGfgZo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:41.0697967Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A41Z&sr=b&sp=r&sig=QM6uZNtqt3AcGaepmccEh1T7ElyLOGvmawEvDe79yIo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:41.0698856Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A23Z&ske=2024-11-20T18%3A16%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A41Z&se=2024-11-20T12%3A19%3A41Z&sr=c&sp=rl&sig=ZzUjyjpiWiojnffDtvoK5MeCAWvx1LYrm11%2BdWlpE%2B8%3D","expireDateTime":"2024-11-20T12:19:41.0700057Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4934' + - '5041' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:26 GMT + - Wed, 20 Nov 2024 11:19:41 GMT mise-correlation-id: - - 93ff2bf8-3c4f-4522-ad63-61ca11501e11 + - 4e5fac91-0122-43b6-9720-e1ebce595553 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055826Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rtwn + - 20241120T111940Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000etz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2469,31 +2651,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A31Z&sr=b&sp=r&sig=WAl55Xs3NFKp157mXI4iGqCe3Jm5s9LrQgkNz7%2BdeHc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:31.5430788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A31Z&sr=b&sp=r&sig=6wTc8HEtBlbJqQDAtDP%2B%2BlHaBhdah4TLWIJkbXerteA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:31.5427531Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A31Z&sr=b&sp=r&sig=qGQ3XJiHIvgaJWWgMbE6FOxcg%2FqINW1fHK%2FF5YlfJa0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:31.5431997Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A31Z&sr=b&sp=r&sig=4q652R16XxID7nFYDxqiaDALpJIpvDtKqY5LC3UULK0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:31.5433223Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A31Z&sr=b&sp=r&sig=9Kk4FlBl7HWp1HjRUCcquSVW02GNgT3vqOj6dnnnA2k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:31.5434409Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A31Z&se=2024-11-07T06%3A58%3A31Z&sr=c&sp=rl&sig=f51ehoK08ZRzRVObZgv015b%2B6SQAJAct%2BKpsNnZH2T4%3D","expireDateTime":"2024-11-07T06:58:31.5435553Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A46Z&sr=b&sp=r&sig=0PZO%2F0EJZc4uVoegL9lGcnBD%2F3loUAY8n3EGXIg7fLU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:46.1729174Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A46Z&sr=b&sp=r&sig=FM5Vliv%2BjPlAqKljve97Vgcd5csqtRFCN4cZuK2faT8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:46.1725097Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A46Z&sr=b&sp=r&sig=144zFp%2BFCZ5bEv%2BfLWMOSrE3bxxG2ygST3tP850DXtM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:46.1730115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A46Z&sr=b&sp=r&sig=HPaYx6O8hxsju2a2WMiNH%2ByT3mwfl5hSmz49v1pGRdQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:46.1731931Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A46Z&sr=b&sp=r&sig=%2FNFAhLnxDt8gi3KVOBjxfxeS0vQ2FzwObHy1PjozHv0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:46.1733107Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A46Z&se=2024-11-20T12%3A19%3A46Z&sr=c&sp=rl&sig=uxLHlnlbc1%2F8Z8pqpkLlvFOjBazOP3%2BwpAwKK1gVTBU%3D","expireDateTime":"2024-11-20T12:19:46.1734094Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:17:06.643Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:54.82Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4940' + - '5045' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:31 GMT + - Wed, 20 Nov 2024 11:19:46 GMT mise-correlation-id: - - 60eafec8-d1ee-4c09-830c-72040f1b8e50 + - fee7ef0c-4c3a-4fe4-bd97-0c3936a23fa4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055831Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rura + - 20241120T111946Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000ey3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2511,32 +2694,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A36Z&sr=b&sp=r&sig=wk%2FKpZrY7OCxZV3pPMKQz9pfPDndEEj5RIGxaIQ4BSs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:36.8105018Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A36Z&sr=b&sp=r&sig=28TEeYNWz%2BfBBriZcZ58D%2BKaB0JTA0WUvy9z8aua9SM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:36.810295Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A36Z&sr=b&sp=r&sig=0SiLKD9lhfmwQFbsptzI3xMEflKCh%2Bt2ZXuFnrkiQgE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:36.8105879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A36Z&sr=b&sp=r&sig=TsJSRZpj0zKG1SINR2yx%2FFU1ltUUGPDZtXaGLJ6CIGQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:36.8106744Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A36Z&sr=b&sp=r&sig=dgXqWTXdV3MBrguuB2hHPKlAh7BADmNuXT4DiHb5C%2FU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:36.8107582Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A36Z&se=2024-11-07T06%3A58%3A36Z&sr=c&sp=rl&sig=vMMjUrnAwB0ErlhpNUT7cNGElCOhCSPomMihVoLqM9Q%3D","expireDateTime":"2024-11-07T06:58:36.8108454Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"FAILED","startDateTime":"2024-11-07T05:55:53.244Z","endDateTime":"2024-11-07T05:58:35.149Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:35.822Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A51Z&sr=b&sp=r&sig=bFR3Na2VXeU2%2F5zWazIhe9OAq5vKZRQCRLSqMVReMzs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:51.2825814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A51Z&sr=b&sp=r&sig=sqLU%2BLTTWRTVPC4K%2BgvdRRsI6e7Eo%2BQ%2B5496wL%2FGBHE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:51.2823642Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A51Z&sr=b&sp=r&sig=mK1UQ7O6nr1Pi5KD8%2FBV2EmUEgkfDUiSpgqk3x48%2FM8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:51.2826704Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A51Z&sr=b&sp=r&sig=652IlLN4RypWi6sTWEiKSZRWioPLiIRTSNOYDKNHdiI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:51.2827557Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A51Z&sr=b&sp=r&sig=N4LjiSwTAxLYUfGQV5YIyj9349RAoC5fHaRw6IdYglM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:51.2828413Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A05Z&ske=2024-11-21T20%3A17%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A51Z&se=2024-11-20T12%3A19%3A51Z&sr=c&sp=rl&sig=2FbZYRJV482D6NLrFaOIgLIBKZ34tEW%2BtaffJReR8B0%3D","expireDateTime":"2024-11-20T12:19:51.2829263Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"FAILED","startDateTime":"2024-11-20T11:17:06.643Z","endDateTime":"2024-11-20T11:19:46.363Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:19:46.901Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5065' + - '5174' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:36 GMT + - Wed, 20 Nov 2024 11:19:51 GMT mise-correlation-id: - - 40c5a031-f44d-411c-818e-f2704b668ef8 + - 6b759144-de7c-41d6-9659-b9676131f9ee strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055836Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rvvh + - 20241120T111951Z-r16f5dbf676bfk2zhC1YVR2ru400000003q0000000000f20 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2554,23 +2738,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7165684Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7165684Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:38 GMT + - Wed, 20 Nov 2024 11:19:51 GMT etag: - - '"130190aa-0000-0200-0000-672c56040000"' + - '"9603fcfe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -2586,7 +2770,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F2642BF2EECE432FB51345872BF99FA1 Ref B: MAA201060514017 Ref C: 2024-11-07T05:58:37Z' + - 'Ref A: CDDAF37E8B254BC6B524409F5B0F2DE4 Ref B: CO6AA3150217051 Ref C: 2024-11-20T11:19:51Z' status: code: 200 message: OK @@ -2600,32 +2784,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=app-component-test-case + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=app-component-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A39Z&sr=b&sp=r&sig=CHgPn2VOZR0VOm8uiDEG6xzuaowQG7gLZVDk4MwgntQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:39.7251349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A39Z&sr=b&sp=r&sig=9s%2BTwGFmkSZAc8s%2FRPHu869HQaGMOzW%2BhliO6DCsoyc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:39.7247213Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A39Z&sr=b&sp=r&sig=sS7Uu0Og5gxB5TMuZ%2B31B%2Fhiy5njSAyptH1ZIXFaQV0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:39.7253137Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A39Z&sr=b&sp=r&sig=XFgfTEa%2BCly38O%2B%2BIsscQytJ4GTvUtOmerioIePyM%2BM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:39.7254883Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A39Z&sr=b&sp=r&sig=L4cvUb61y5E6O26U1FlH2e9Cyw4XbbriI6N5NjaDHds%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:39.7256547Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A39Z&se=2024-11-07T06%3A58%3A39Z&sr=c&sp=rl&sig=jyiU%2F4cBoWZR1UTgztqI6yJCTTTlUuxYy2IiKsYa%2F%2Fg%3D","expireDateTime":"2024-11-07T06:58:39.7258434Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"FAILED","startDateTime":"2024-11-07T05:55:53.244Z","endDateTime":"2024-11-07T05:58:35.149Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:35.822Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"6d2d4d77-e517-4533-9d4f-4433a12a2466":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5545d7f2-a44f-4098-b3ff-764923c4e675":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c956b8d5-00aa-4838-8ea6-48fc17121a8c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/fd879e45-842c-4d92-afb2-c75e1b24876f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A52Z&sr=b&sp=r&sig=pU3MbsZYRCmtw2%2F69rvH0J7LGgRpMyAwIDd4qu6o9JY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:52.0085765Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/af5d86bd-3eb4-4200-9f47-2fbc4d17569d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A52Z&sr=b&sp=r&sig=7D%2B4YbLp2hQk9WIibTjXXixZZwpM4fSDURVOMBw%2FHwU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:52.0082398Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/e1ab750a-4488-434e-93cd-80fbca64a905?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A52Z&sr=b&sp=r&sig=UxaOIV82JzONqatTHoywXZ74XfgKiE1OwYvNuyDujVY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:52.0086977Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/847d0157-cc16-45b9-8b0e-a7d46e426fd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A52Z&sr=b&sp=r&sig=Wu0BtdkTGZ6qVu%2FI1v9RR5Fejh2cSGMMFQA8Le1ytG8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:52.0088277Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/91434456-5a6c-4653-a0f8-fdfb1a468505/ed037383-5673-45dd-824b-1a25466ec8d5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A52Z&sr=b&sp=r&sig=r%2Fv4CB%2B2YZ5AZFju4natq1l1wtFWAPunom%2FbrE5QXPA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:52.0089456Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d6km00ub0a5obpd8bcnrisi6.z27.blob.storage.azure.net/ec6e24ce-e171-4338-a6cd-41eaf3fe6340?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A59Z&ske=2024-11-21T01%3A16%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A19%3A52Z&se=2024-11-20T12%3A19%3A52Z&sr=c&sp=rl&sig=N%2BktcEQ5vcVrGqZlIisAiOS69n1dUnpMJ5UBMKrlxaw%3D","expireDateTime":"2024-11-20T12:19:52.0090706Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"FAILED","startDateTime":"2024-11-20T11:17:06.643Z","endDateTime":"2024-11-20T11:19:46.363Z","executedDateTime":"2024-11-20T11:17:02.136Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-20T11:17:02.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:19:46.901Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5090' + - '5184' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:39 GMT + - Wed, 20 Nov 2024 11:19:52 GMT mise-correlation-id: - - abc67bc5-ae80-49b3-a243-da6271ce3c15 + - 8040e140-d3d3-480e-8a53-100a946fd545 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055839Z-16998b5679fg7psxhC1MAAy9kc00000002c00000000087eh + - 20241120T111951Z-17b7777dc45ckvg4hC1CO1tgyw0000000w5g000000008nye x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2647,12 +2832,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003?api-version=2023-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-11-07T05:54:26.7363308Z","key2":"2024-11-07T05:54:26.7363308Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:54:26.8457061Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:54:26.8457061Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-07T05:54:26.5957077Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-11-20T11:15:39.6968630Z","key2":"2024-11-20T11:15:39.6968630Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-20T11:15:39.8218669Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-20T11:15:39.8218669Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-20T11:15:39.5093725Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -2661,7 +2846,7 @@ interactions: content-type: - application/json date: - - Thu, 07 Nov 2024 05:58:50 GMT + - Wed, 20 Nov 2024 11:20:02 GMT expires: - '-1' pragma: @@ -2673,9 +2858,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: F1DF74D4423E482F8F27697E297C150E Ref B: MAA201060516047 Ref C: 2024-11-07T05:58:50Z' + - 'Ref A: 009EE138CA6C4CB9836CB891D3EE8E2F Ref B: CO6AA3150218025 Ref C: 2024-11-20T11:20:02Z' status: code: 200 message: OK @@ -2689,23 +2874,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7165684Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7165684Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:51 GMT + - Wed, 20 Nov 2024 11:20:02 GMT etag: - - '"130190aa-0000-0200-0000-672c56040000"' + - '"9603fcfe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -2721,14 +2906,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 27FCEE3B0DFB4CF3B7E912E34501EF07 Ref B: MAA201060514035 Ref C: 2024-11-07T05:58:51Z' + - 'Ref A: 58605A58256F43E9BD12DB3F26A3B057 Ref B: CO6AA3150217029 Ref C: 2024-11-20T11:20:02Z' status: code: 200 message: OK - request: - body: '{"testRunId": "app-component-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-lldu4auqyrmqf3ief/providers/Microsoft.Storage/storageAccounts/clitestloadstiahrbxv": - {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-lldu4auqyrmqf3ief/providers/Microsoft.Storage/storageAccounts/clitestloadstiahrbxv", - "resourceName": "clitestloadstiahrbxv", "resourceType": "Microsoft.Storage/storageAccounts", + body: '{"testRunId": "app-component-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-cquc5ops7doqqhfof/providers/Microsoft.Storage/storageAccounts/clitestloadx237oksci": + {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-cquc5ops7doqqhfof/providers/Microsoft.Storage/storageAccounts/clitestloadx237oksci", + "resourceName": "clitestloadx237oksci", "resourceType": "Microsoft.Storage/storageAccounts", "kind": "Storage"}}}' headers: Accept: @@ -2740,33 +2925,34 @@ interactions: Content-Length: - '520' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-07T05:58:53.468Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:53.468Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-20T11:20:03.432Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:03.432Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '742' + - '748' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:53 GMT + - Wed, 20 Nov 2024 11:20:03 GMT location: - - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview + - https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview mise-correlation-id: - - 6b1daf10-af01-4e17-a2c8-00d99757adf8 + - 241130f2-02c8-4373-b907-27f7fc8b88ac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055852Z-184f6b5dbd8xzp4vhC1MAAwxtg0000000720000000004kfz + - 20241120T112003Z-17b7777dc45rltqhhC1CO1uz7s0000000w7000000000bb20 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2784,23 +2970,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7165684Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7165684Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:54 GMT + - Wed, 20 Nov 2024 11:20:03 GMT etag: - - '"130190aa-0000-0200-0000-672c56040000"' + - '"9603fcfe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -2816,7 +3002,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 43857E1A70F146FAB556BC182B5112EC Ref B: MAA201060515039 Ref C: 2024-11-07T05:58:54Z' + - 'Ref A: 601893F5891B4B4EA823B840A7765651 Ref B: CO6AA3150218025 Ref C: 2024-11-20T11:20:03Z' status: code: 200 message: OK @@ -2830,31 +3016,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-07T05:58:53.468Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:53.468Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-20T11:20:03.432Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:03.432Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '742' + - '748' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:56 GMT + - Wed, 20 Nov 2024 11:20:04 GMT mise-correlation-id: - - b68bdc83-f94a-4869-8094-6faa2206f040 + - efc33736-3f14-4d04-8b90-6e358b7ab27d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055856Z-184f6b5dbd8x2vfvhC1MAAb43c000000075000000000b7hf + - 20241120T112004Z-17b7777dc45nxqv9hC1CO1qrb0000000015g0000000050cg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2872,23 +3059,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7165684Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7165684Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:58 GMT + - Wed, 20 Nov 2024 11:20:04 GMT etag: - - '"130190aa-0000-0200-0000-672c56040000"' + - '"9603fcfe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -2904,12 +3091,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F158DEC243164FC2BAD918AC995D66E8 Ref B: MAA201060515045 Ref C: 2024-11-07T05:58:57Z' + - 'Ref A: AE71CEB27EEC478F90EB041855678D96 Ref B: CO6AA3150217009 Ref C: 2024-11-20T11:20:04Z' status: code: 200 message: OK - request: - body: '{"testRunId": "app-component-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-lldu4auqyrmqf3ief/providers/Microsoft.Storage/storageAccounts/clitestloadstiahrbxv": + body: '{"testRunId": "app-component-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-cquc5ops7doqqhfof/providers/Microsoft.Storage/storageAccounts/clitestloadx237oksci": null}}' headers: Accept: @@ -2921,33 +3108,34 @@ interactions: Content-Length: - '232' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-07T05:58:53.468Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:59.695Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-20T11:20:03.432Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:05.328Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '229' + - '235' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:58:59 GMT + - Wed, 20 Nov 2024 11:20:05 GMT mise-correlation-id: - - 258d66cf-293c-45dc-9e43-407b49932e31 + - a73e9618-d98d-4d57-acb6-c2c919ba3165 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055859Z-16998b5679fg7psxhC1MAAy9kc00000002fg000000003qmd + - 20241120T112005Z-17b7777dc45hcd5hhC1CO1mrt40000000w2g00000000u8dp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2965,23 +3153,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7165684Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7165684Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:59:00 GMT + - Wed, 20 Nov 2024 11:20:05 GMT etag: - - '"130190aa-0000-0200-0000-672c56040000"' + - '"9603fcfe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -2997,7 +3185,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 30FE9E98CA6243BBB1E09761C7B51774 Ref B: MAA201060513033 Ref C: 2024-11-07T05:59:00Z' + - 'Ref A: F097A7867C754D6497F1EE889A4C507F Ref B: CO6AA3150220045 Ref C: 2024-11-20T11:20:05Z' status: code: 200 message: OK @@ -3011,31 +3199,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://f618d49b-1e5c-4ff3-8320-14da13610d6f.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-07T05:58:53.468Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:59.695Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-20T11:20:03.432Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:05.328Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '229' + - '235' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:59:02 GMT + - Wed, 20 Nov 2024 11:20:06 GMT mise-correlation-id: - - a99a363a-d866-4a69-a87c-8d733a211ff4 + - c1e89603-ecf3-4a29-99fc-0e42eb5db33d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055901Z-184f6b5dbd8sdcb5hC1MAAkzhn0000000740000000009wz8 + - 20241120T112005Z-17b7777dc45hcd5hhC1CO1mrt40000000w4g00000000kfs4 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_scenarios.yaml b/src/load/azext_load/tests/latest/recordings/test_load_scenarios.yaml index 8211158adac..0037e2c2683 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_scenarios.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_scenarios.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001","name":"cli_test_azure_load_testing000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_load_scenarios","date":"2024-10-16T05:38:29Z","module":"load"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001","name":"cli_test_azure_load_testing000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_load_scenarios","date":"2024-11-20T11:14:59Z","module":"load"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:13 GMT + - Wed, 20 Nov 2024 11:15:36 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BDA61AF3707A48EBB8E770D28E6488EC Ref B: CO6AA3150218049 Ref C: 2024-10-16T05:39:13Z' + - 'Ref A: BC8BCD496B26439A813E9D6135017403 Ref B: CO6AA3150220045 Ref C: 2024-11-20T11:15:37Z' status: code: 200 message: OK @@ -63,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1?api-version=2023-01-31 response: body: - string: '{"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1","name":"clitestid1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","clientId":"4095a352-29c5-4466-875a-dc5fe63e2dba"}}' + string: '{"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1","name":"clitestid1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","clientId":"b1c0bfba-712f-4578-8987-884c9f9e4f23"}}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:14 GMT + - Wed, 20 Nov 2024 11:15:38 GMT expires: - '-1' location: @@ -95,7 +95,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 941A992E00DB4515BB0FD0868033E95D Ref B: CO6AA3150220029 Ref C: 2024-10-16T05:39:14Z' + - 'Ref A: 34C835B5EA5645CCAE8ED6ADC9A2298F Ref B: CO6AA3150218047 Ref C: 2024-11-20T11:15:37Z' status: code: 201 message: Created @@ -113,12 +113,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001","name":"cli_test_azure_load_testing000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_load_scenarios","date":"2024-10-16T05:38:29Z","module":"load"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001","name":"cli_test_azure_load_testing000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_load_scenarios","date":"2024-11-20T11:14:59Z","module":"load"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -127,7 +127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:14 GMT + - Wed, 20 Nov 2024 11:15:38 GMT expires: - '-1' pragma: @@ -139,9 +139,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16496' x-msedge-ref: - - 'Ref A: 5CE65FC86F0F4C9F990A8C451EDC7697 Ref B: CO6AA3150217021 Ref C: 2024-10-16T05:39:15Z' + - 'Ref A: 95EE5992C0B743ED9AA95C8181A2F3C2 Ref B: CO6AA3150219019 Ref C: 2024-11-20T11:15:39Z' status: code: 200 message: OK @@ -163,12 +163,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid2?api-version=2023-01-31 response: body: - string: '{"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid2","name":"clitestid2","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"eaff2d68-e667-4d97-9a7f-b72eaff030b1","clientId":"7d9dff12-828e-454a-b530-f4cb1d30646f"}}' + string: '{"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid2","name":"clitestid2","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"c56a2749-7b94-4d44-a7e1-1c4c7c76a26d","clientId":"31c0bf3a-9d1a-4856-9098-27eab8abe3d1"}}' headers: cache-control: - no-cache @@ -177,7 +177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:16 GMT + - Wed, 20 Nov 2024 11:15:39 GMT expires: - '-1' location: @@ -195,7 +195,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1ABD5D057C9F4A81B93928558ED5051A Ref B: CO6AA3150220021 Ref C: 2024-10-16T05:39:15Z' + - 'Ref A: CD4A794486384CAAA50F3435EB368C93 Ref B: CO6AA3150220023 Ref C: 2024-11-20T11:15:39Z' status: code: 201 message: Created @@ -217,17 +217,17 @@ interactions: ParameterSetName: - --name --location --resource-group User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:39:17.3087825Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:39:17.3087825Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"81b14425-6f28-40c8-8907-f7875c957050.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Accepted"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:40.9697238Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:40.9697238Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"3bacfe41-dc85-4f61-82c1-8843b0c7657a.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Accepted"}}' headers: api-supported-versions: - 2022-12-01, 2023-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b725a9e2-c9b3-4b31-b445-51a3c1f7e4c9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646539578087828&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=oLLsi8EWaHGePkuwZ4p1v8zyCkB1nhH8vQx2h9jd9QgLDtZKWYgBcla0vxEV3OKqMG96o-_RLmkUPtiv_cxe3E4S_swWRVZa-m0OdRjT58HWxdIRzFQnwagbvZC41EoF6dl7v8ywVj_nrL6EB2lorBk8rC-wWqheRmBevOoIhlfgZzWEA8D9v41wrrY_i7NDVGOvu5TZ7ODpyWznDIWKJBO0_NtvzzBo4wuSGAWG-mnuBr9sfq-k5HUo1DzNm8SHhjccU7zyzH_TYU6XTyPJCkG2a0AIiV7lGeHhJbhBm9T0QoUHcneA3FfTBNzqnr2tebuWooJXiuvRXXVItAB_Dw&h=rr_qYfBkXvbS0AmMWPzjGIBQ4ZYpf_0zxSZ3okEzOds + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/e3635b1b-a8f7-4e79-bd55-dc723ad5797c*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676981420947005&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=aQ438jWv3L7Bwxp46JmqNFuFiluMq5rdVcxWHOGRt291uv9MML1gu2574-IfAf5Gt8eotIQmNkcNW5g29OkB0Kq5uTEhtB5KwH0Sxacl26BH0o23A4gUPdqQ6WKtQXzZVrS7jNLRF-SDf0GQTVWHwVBwjQQRWL_WmVj1jJg2pW4Mdy0qQNKW5GIpetFRxvkRbdn-PZfFTTKaRIuXV5nkk3xe9YTxLilzLzjyX4qlecEn3sentzkRUPBvsoqKOCFdo0nd9W5xBHPjjZwI_kIwUqOX4dNWnEwH-W4L4y6yvVHPyOxTvLpb5FrE963wcfV2ca0deE3MGz0J71IZrTxUBA&h=bzwnRAvnosPogUsnE4Qc9Cl3C-r-P0grxpnX_vyUNwM cache-control: - no-cache content-length: @@ -235,19 +235,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:17 GMT + - Wed, 20 Nov 2024 11:15:42 GMT etag: - - '"3300f24e-0000-0800-0000-670f51850000"' + - '"5d02b7c7-0000-0800-0000-673dc4de0000"' expires: - '-1' mise-correlation-id: - - 134b96c0-74c5-4126-bed9-eec35f2ecc19 + - 7c79c012-f87b-4f2c-81f9-ab5486f84a8c pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053917Z-166cf497cd4g2mz5b71exmq12g00000002h000000000dz6v + - 20241120T111541Z-r16f5dbf676jhzw2hC1YVRptw400000001m0000000000420 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -259,7 +259,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: FF6C9354468C4F49923D2BFC6F0F257E Ref B: CO6AA3150219047 Ref C: 2024-10-16T05:39:16Z' + - 'Ref A: DAF5DC958181420AAA20414954A0B77A Ref B: CO6AA3150218021 Ref C: 2024-11-20T11:15:40Z' status: code: 201 message: Created @@ -277,12 +277,12 @@ interactions: ParameterSetName: - --name --location --resource-group User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b725a9e2-c9b3-4b31-b445-51a3c1f7e4c9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646539578087828&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=oLLsi8EWaHGePkuwZ4p1v8zyCkB1nhH8vQx2h9jd9QgLDtZKWYgBcla0vxEV3OKqMG96o-_RLmkUPtiv_cxe3E4S_swWRVZa-m0OdRjT58HWxdIRzFQnwagbvZC41EoF6dl7v8ywVj_nrL6EB2lorBk8rC-wWqheRmBevOoIhlfgZzWEA8D9v41wrrY_i7NDVGOvu5TZ7ODpyWznDIWKJBO0_NtvzzBo4wuSGAWG-mnuBr9sfq-k5HUo1DzNm8SHhjccU7zyzH_TYU6XTyPJCkG2a0AIiV7lGeHhJbhBm9T0QoUHcneA3FfTBNzqnr2tebuWooJXiuvRXXVItAB_Dw&h=rr_qYfBkXvbS0AmMWPzjGIBQ4ZYpf_0zxSZ3okEzOds + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/e3635b1b-a8f7-4e79-bd55-dc723ad5797c*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676981420947005&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=aQ438jWv3L7Bwxp46JmqNFuFiluMq5rdVcxWHOGRt291uv9MML1gu2574-IfAf5Gt8eotIQmNkcNW5g29OkB0Kq5uTEhtB5KwH0Sxacl26BH0o23A4gUPdqQ6WKtQXzZVrS7jNLRF-SDf0GQTVWHwVBwjQQRWL_WmVj1jJg2pW4Mdy0qQNKW5GIpetFRxvkRbdn-PZfFTTKaRIuXV5nkk3xe9YTxLilzLzjyX4qlecEn3sentzkRUPBvsoqKOCFdo0nd9W5xBHPjjZwI_kIwUqOX4dNWnEwH-W4L4y6yvVHPyOxTvLpb5FrE963wcfV2ca0deE3MGz0J71IZrTxUBA&h=bzwnRAvnosPogUsnE4Qc9Cl3C-r-P0grxpnX_vyUNwM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b725a9e2-c9b3-4b31-b445-51a3c1f7e4c9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","name":"b725a9e2-c9b3-4b31-b445-51a3c1f7e4c9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Accepted","startTime":"2024-10-16T05:39:17.5587738Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/e3635b1b-a8f7-4e79-bd55-dc723ad5797c*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","name":"e3635b1b-a8f7-4e79-bd55-dc723ad5797c*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Accepted","startTime":"2024-11-20T11:15:41.2675445Z"}' headers: cache-control: - no-cache @@ -291,9 +291,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:17 GMT + - Wed, 20 Nov 2024 11:15:42 GMT etag: - - '"50001d32-0000-0800-0000-670f51850000"' + - '"9c15029a-0000-0800-0000-673dc4dd0000"' expires: - '-1' pragma: @@ -307,7 +307,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 59160D07B8C6417CA148BB4DEAE619D5 Ref B: CO6AA3150220045 Ref C: 2024-10-16T05:39:17Z' + - 'Ref A: D1E9C2438B26401F9F65F162698449D2 Ref B: CO6AA3150218021 Ref C: 2024-11-20T11:15:42Z' status: code: 200 message: OK @@ -325,12 +325,12 @@ interactions: ParameterSetName: - --name --location --resource-group User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b725a9e2-c9b3-4b31-b445-51a3c1f7e4c9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646539578087828&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=oLLsi8EWaHGePkuwZ4p1v8zyCkB1nhH8vQx2h9jd9QgLDtZKWYgBcla0vxEV3OKqMG96o-_RLmkUPtiv_cxe3E4S_swWRVZa-m0OdRjT58HWxdIRzFQnwagbvZC41EoF6dl7v8ywVj_nrL6EB2lorBk8rC-wWqheRmBevOoIhlfgZzWEA8D9v41wrrY_i7NDVGOvu5TZ7ODpyWznDIWKJBO0_NtvzzBo4wuSGAWG-mnuBr9sfq-k5HUo1DzNm8SHhjccU7zyzH_TYU6XTyPJCkG2a0AIiV7lGeHhJbhBm9T0QoUHcneA3FfTBNzqnr2tebuWooJXiuvRXXVItAB_Dw&h=rr_qYfBkXvbS0AmMWPzjGIBQ4ZYpf_0zxSZ3okEzOds + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/e3635b1b-a8f7-4e79-bd55-dc723ad5797c*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676981420947005&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=aQ438jWv3L7Bwxp46JmqNFuFiluMq5rdVcxWHOGRt291uv9MML1gu2574-IfAf5Gt8eotIQmNkcNW5g29OkB0Kq5uTEhtB5KwH0Sxacl26BH0o23A4gUPdqQ6WKtQXzZVrS7jNLRF-SDf0GQTVWHwVBwjQQRWL_WmVj1jJg2pW4Mdy0qQNKW5GIpetFRxvkRbdn-PZfFTTKaRIuXV5nkk3xe9YTxLilzLzjyX4qlecEn3sentzkRUPBvsoqKOCFdo0nd9W5xBHPjjZwI_kIwUqOX4dNWnEwH-W4L4y6yvVHPyOxTvLpb5FrE963wcfV2ca0deE3MGz0J71IZrTxUBA&h=bzwnRAvnosPogUsnE4Qc9Cl3C-r-P0grxpnX_vyUNwM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b725a9e2-c9b3-4b31-b445-51a3c1f7e4c9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","name":"b725a9e2-c9b3-4b31-b445-51a3c1f7e4c9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Succeeded","startTime":"2024-10-16T05:39:17.5587738Z","endTime":"2024-10-16T05:39:39.1068153Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/e3635b1b-a8f7-4e79-bd55-dc723ad5797c*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","name":"e3635b1b-a8f7-4e79-bd55-dc723ad5797c*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Succeeded","startTime":"2024-11-20T11:15:41.2675445Z","endTime":"2024-11-20T11:16:04.1177561Z","properties":null}' headers: cache-control: - no-cache @@ -339,9 +339,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:48 GMT + - Wed, 20 Nov 2024 11:16:12 GMT etag: - - '"50001335-0000-0800-0000-670f519b0000"' + - '"9c1573a1-0000-0800-0000-673dc4f40000"' expires: - '-1' pragma: @@ -355,7 +355,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8507167BB8C1434D88630A79A9741800 Ref B: CO6AA3150217053 Ref C: 2024-10-16T05:39:48Z' + - 'Ref A: 5A4166D90E554EC194DBCA1E5FFB5538 Ref B: CO6AA3150218021 Ref C: 2024-11-20T11:16:12Z' status: code: 200 message: OK @@ -373,12 +373,12 @@ interactions: ParameterSetName: - --name --location --resource-group User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:39:17.3087825Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:39:17.3087825Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"81b14425-6f28-40c8-8907-f7875c957050.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:40.9697238Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:40.9697238Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"3bacfe41-dc85-4f61-82c1-8843b0c7657a.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -387,9 +387,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:48 GMT + - Wed, 20 Nov 2024 11:16:12 GMT etag: - - '"c501b274-0000-0200-0000-670f519b0000"' + - '"96033dff-0000-0200-0000-673dc4f40000"' expires: - '-1' pragma: @@ -405,7 +405,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4612A663B5424576BA706CACB00641AE Ref B: CO6AA3150220029 Ref C: 2024-10-16T05:39:48Z' + - 'Ref A: 44E4515A05D941F6ABAFD41C3B6F6C4F Ref B: CO6AA3150218021 Ref C: 2024-11-20T11:16:12Z' status: code: 200 message: OK @@ -429,18 +429,18 @@ interactions: ParameterSetName: - --name --location --resource-group --identity-type --user-assigned User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:39:17.3087825Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:39:49.5110701Z"},"identity":{"principalId":"e5e207a6-2e9c-4fb3-a6c3-d54f86bd09ff","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","clientId":"4095a352-29c5-4466-875a-dc5fe63e2dba"}}},"properties":{"dataPlaneURI":"81b14425-6f28-40c8-8907-f7875c957050.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Accepted"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:40.9697238Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:13.3714873Z"},"identity":{"principalId":"bd655bb6-bbc4-43e5-93b9-5c2d18f595fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","clientId":"b1c0bfba-712f-4578-8987-884c9f9e4f23"}}},"properties":{"dataPlaneURI":"3bacfe41-dc85-4f61-82c1-8843b0c7657a.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Accepted"}}' headers: api-supported-versions: - 2022-12-01, 2023-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6e738a43-d375-48e3-8b5b-6105918eced9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646539906985773&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=RButmq4efyJnVgWZb7ulGNqvDnvp--RrLnCBvH8yExG2ycMfblwzf6TcX48IVVZ4o0Yq7d9gGHTUVL5LYO_vVc-vpAGy5JMDAWDoQnWWdfpF4XtFn4eldjGl_Qf_sXwsOEO03FwUeBAf4wBehknIqGEGgnGnwb-HeELtszgb3ghpnvDZNSGe8FeQf_ad5fFYP9Vaw_FCjynnFu700L9DiWWA8bWB6z3zD_6LU5nSzpkXBAUR0OOqKIr56hhT8mN9R1DlEXh7O_tWH-Ri3Tk1hqpfzXWO_7wqzh8CZADY4tEYYO6DgqdDFjS2x-TFtaIuSPqX9uHA3TnsFCf08rmv6w&h=IsvpLla4HcyozKtLHpQioPJgl9S3HI46OoV4gW3LgIA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/9f19d2d8-47ee-4e9d-bc3a-568f46e3d0d2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676981757308770&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=teEXyt8YK-vqBupXcZ8IXp9IJ3Ygkj4UmPcdJ7c16wsdLCaqCSyoGtGWd_6vRpkPd7s2z9ckHe7A_VwoxIcpoODTbHi1iLdVUMTBbnMKEl9e-vBDOBFeyN6AvSnJcWibsc9d9OC9iuV2eLGd2z5Rw0G8SVl6Uewd6mNx0ZwjpsXc9L2Gld-yDxScwkHGHEiQskduoCGNkJO62gbWKm5RL2Ucmy3i1bRCYvEPXngxpCGgX1zblW0hbu_mSGtUU2Hro4E5qQGMDXI5Urh5KH-hCU9jyy31OUF8n_avKH044OQ6GZH2yTYNTP2eOS6tCJqRcw5FOCOmUwSHTITDsOX3aw&h=ZI2sRCRuBDC8syfesCd4K4U_wGos_SvHClo_F_S7Xzs cache-control: - no-cache content-length: @@ -448,19 +448,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:50 GMT + - Wed, 20 Nov 2024 11:16:15 GMT etag: - - '"33008a53-0000-0800-0000-670f51a60000"' + - '"5d02eec7-0000-0800-0000-673dc4ff0000"' expires: - '-1' mise-correlation-id: - - 3d6d60de-1b4a-4eb8-827e-c807b841c57a + - 4728c0e4-d9e7-4139-917c-e7707caa4331 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053950Z-17f5d849667b4k641769x7f50c00000004g0000000007ftt + - 20241120T111613Z-17b7777dc45v8nvnhC1CO169a00000000w4g00000000waay x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -472,7 +472,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 7A88A1C5A86E46039FA0D9339177E336 Ref B: CO6AA3150219033 Ref C: 2024-10-16T05:39:49Z' + - 'Ref A: 9EAF1B58118640B1B3A8FED4D2160C28 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:16:13Z' status: code: 201 message: Created @@ -490,12 +490,12 @@ interactions: ParameterSetName: - --name --location --resource-group --identity-type --user-assigned User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6e738a43-d375-48e3-8b5b-6105918eced9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646539906985773&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=RButmq4efyJnVgWZb7ulGNqvDnvp--RrLnCBvH8yExG2ycMfblwzf6TcX48IVVZ4o0Yq7d9gGHTUVL5LYO_vVc-vpAGy5JMDAWDoQnWWdfpF4XtFn4eldjGl_Qf_sXwsOEO03FwUeBAf4wBehknIqGEGgnGnwb-HeELtszgb3ghpnvDZNSGe8FeQf_ad5fFYP9Vaw_FCjynnFu700L9DiWWA8bWB6z3zD_6LU5nSzpkXBAUR0OOqKIr56hhT8mN9R1DlEXh7O_tWH-Ri3Tk1hqpfzXWO_7wqzh8CZADY4tEYYO6DgqdDFjS2x-TFtaIuSPqX9uHA3TnsFCf08rmv6w&h=IsvpLla4HcyozKtLHpQioPJgl9S3HI46OoV4gW3LgIA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/9f19d2d8-47ee-4e9d-bc3a-568f46e3d0d2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676981757308770&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=teEXyt8YK-vqBupXcZ8IXp9IJ3Ygkj4UmPcdJ7c16wsdLCaqCSyoGtGWd_6vRpkPd7s2z9ckHe7A_VwoxIcpoODTbHi1iLdVUMTBbnMKEl9e-vBDOBFeyN6AvSnJcWibsc9d9OC9iuV2eLGd2z5Rw0G8SVl6Uewd6mNx0ZwjpsXc9L2Gld-yDxScwkHGHEiQskduoCGNkJO62gbWKm5RL2Ucmy3i1bRCYvEPXngxpCGgX1zblW0hbu_mSGtUU2Hro4E5qQGMDXI5Urh5KH-hCU9jyy31OUF8n_avKH044OQ6GZH2yTYNTP2eOS6tCJqRcw5FOCOmUwSHTITDsOX3aw&h=ZI2sRCRuBDC8syfesCd4K4U_wGos_SvHClo_F_S7Xzs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6e738a43-d375-48e3-8b5b-6105918eced9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","name":"6e738a43-d375-48e3-8b5b-6105918eced9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Accepted","startTime":"2024-10-16T05:39:50.3011187Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/9f19d2d8-47ee-4e9d-bc3a-568f46e3d0d2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","name":"9f19d2d8-47ee-4e9d-bc3a-568f46e3d0d2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Accepted","startTime":"2024-11-20T11:16:13.9109676Z"}' headers: cache-control: - no-cache @@ -504,9 +504,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:50 GMT + - Wed, 20 Nov 2024 11:16:15 GMT etag: - - '"50000937-0000-0800-0000-670f51a60000"' + - '"9c1582a6-0000-0800-0000-673dc4fd0000"' expires: - '-1' pragma: @@ -520,7 +520,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 98E8FB0FE1264E818528937CDAC7AC78 Ref B: CO6AA3150219025 Ref C: 2024-10-16T05:39:50Z' + - 'Ref A: 3D38F15A1D5D456FBBB20C984B5A14C6 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:16:15Z' status: code: 200 message: OK @@ -538,12 +538,12 @@ interactions: ParameterSetName: - --name --location --resource-group --identity-type --user-assigned User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6e738a43-d375-48e3-8b5b-6105918eced9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646539906985773&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=RButmq4efyJnVgWZb7ulGNqvDnvp--RrLnCBvH8yExG2ycMfblwzf6TcX48IVVZ4o0Yq7d9gGHTUVL5LYO_vVc-vpAGy5JMDAWDoQnWWdfpF4XtFn4eldjGl_Qf_sXwsOEO03FwUeBAf4wBehknIqGEGgnGnwb-HeELtszgb3ghpnvDZNSGe8FeQf_ad5fFYP9Vaw_FCjynnFu700L9DiWWA8bWB6z3zD_6LU5nSzpkXBAUR0OOqKIr56hhT8mN9R1DlEXh7O_tWH-Ri3Tk1hqpfzXWO_7wqzh8CZADY4tEYYO6DgqdDFjS2x-TFtaIuSPqX9uHA3TnsFCf08rmv6w&h=IsvpLla4HcyozKtLHpQioPJgl9S3HI46OoV4gW3LgIA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/9f19d2d8-47ee-4e9d-bc3a-568f46e3d0d2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676981757308770&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=teEXyt8YK-vqBupXcZ8IXp9IJ3Ygkj4UmPcdJ7c16wsdLCaqCSyoGtGWd_6vRpkPd7s2z9ckHe7A_VwoxIcpoODTbHi1iLdVUMTBbnMKEl9e-vBDOBFeyN6AvSnJcWibsc9d9OC9iuV2eLGd2z5Rw0G8SVl6Uewd6mNx0ZwjpsXc9L2Gld-yDxScwkHGHEiQskduoCGNkJO62gbWKm5RL2Ucmy3i1bRCYvEPXngxpCGgX1zblW0hbu_mSGtUU2Hro4E5qQGMDXI5Urh5KH-hCU9jyy31OUF8n_avKH044OQ6GZH2yTYNTP2eOS6tCJqRcw5FOCOmUwSHTITDsOX3aw&h=ZI2sRCRuBDC8syfesCd4K4U_wGos_SvHClo_F_S7Xzs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6e738a43-d375-48e3-8b5b-6105918eced9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","name":"6e738a43-d375-48e3-8b5b-6105918eced9*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Succeeded","startTime":"2024-10-16T05:39:50.3011187Z","endTime":"2024-10-16T05:40:01.7519079Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/9f19d2d8-47ee-4e9d-bc3a-568f46e3d0d2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","name":"9f19d2d8-47ee-4e9d-bc3a-568f46e3d0d2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Succeeded","startTime":"2024-11-20T11:16:13.9109676Z","endTime":"2024-11-20T11:16:25.9767487Z","properties":null}' headers: cache-control: - no-cache @@ -552,9 +552,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:20 GMT + - Wed, 20 Nov 2024 11:16:45 GMT etag: - - '"5000bd38-0000-0800-0000-670f51b10000"' + - '"9c150caa-0000-0800-0000-673dc5090000"' expires: - '-1' pragma: @@ -568,7 +568,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 295B5F93CAEF42D382E8A1F822025AF8 Ref B: CO6AA3150219031 Ref C: 2024-10-16T05:40:20Z' + - 'Ref A: 2CCC499480CC417887602B5E1EF5E772 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:16:45Z' status: code: 200 message: OK @@ -586,13 +586,13 @@ interactions: ParameterSetName: - --name --location --resource-group --identity-type --user-assigned User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:39:17.3087825Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:39:49.5110701Z"},"identity":{"principalId":"e5e207a6-2e9c-4fb3-a6c3-d54f86bd09ff","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","clientId":"4095a352-29c5-4466-875a-dc5fe63e2dba"}}},"properties":{"dataPlaneURI":"81b14425-6f28-40c8-8907-f7875c957050.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:40.9697238Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:13.3714873Z"},"identity":{"principalId":"bd655bb6-bbc4-43e5-93b9-5c2d18f595fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","clientId":"b1c0bfba-712f-4578-8987-884c9f9e4f23"}}},"properties":{"dataPlaneURI":"3bacfe41-dc85-4f61-82c1-8843b0c7657a.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -601,9 +601,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:20 GMT + - Wed, 20 Nov 2024 11:16:45 GMT etag: - - '"c501bd75-0000-0200-0000-670f51b10000"' + - '"960358ff-0000-0200-0000-673dc50a0000"' expires: - '-1' pragma: @@ -619,7 +619,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CF27337071D04099B61854A3556F72BF Ref B: CO6AA3150218011 Ref C: 2024-10-16T05:40:21Z' + - 'Ref A: 5A342A9601B44B61B9F9CD1457D27B06 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:16:45Z' status: code: 200 message: OK @@ -637,12 +637,12 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2023-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.928Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:04.025Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:04.025Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -651,7 +651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:21 GMT + - Wed, 20 Nov 2024 11:16:45 GMT expires: - '-1' pragma: @@ -665,11 +665,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.1341.0 + - 1.5.1361.0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C5C92290D2FD4ADEAE9EE66AB06228F3 Ref B: CO6AA3150219019 Ref C: 2024-10-16T05:40:21Z' + - 'Ref A: D47AF0AEDEA348AAB27FCE3F296A4F05 Ref B: CO6AA3150218037 Ref C: 2024-11-20T11:16:46Z' status: code: 200 message: OK @@ -698,12 +698,12 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2023-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:22.781Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:04.025Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:46.703Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -712,7 +712,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:22 GMT + - Wed, 20 Nov 2024 11:16:46 GMT expires: - '-1' pragma: @@ -726,13 +726,13 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.1341.0 + - 1.5.1361.0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: ED3FDB10C8AA4B3289A4841F0C34434D Ref B: CO6AA3150220017 Ref C: 2024-10-16T05:40:21Z' + - 'Ref A: 76D99ACFC0D14A98AFFDC9863659E76B Ref B: CO6AA3150219031 Ref C: 2024-11-20T11:16:46Z' status: code: 200 message: OK @@ -750,12 +750,12 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2023-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:22.781Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:04.025Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:46.703Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -764,7 +764,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:22 GMT + - Wed, 20 Nov 2024 11:16:47 GMT expires: - '-1' pragma: @@ -778,11 +778,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.1341.0 + - 1.5.1361.0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8729300BB91F4FA3AE846B83B2B77A78 Ref B: CO6AA3150220023 Ref C: 2024-10-16T05:40:23Z' + - 'Ref A: 964CD342BA0F4E0BA53D2C0C8FFB41BE Ref B: CO6AA3150218021 Ref C: 2024-11-20T11:16:47Z' status: code: 200 message: OK @@ -811,12 +811,12 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2023-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:23.441Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"enablePurgeProtection":true,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:04.025Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:47.298Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"enablePurgeProtection":true,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -825,7 +825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:22 GMT + - Wed, 20 Nov 2024 11:16:46 GMT expires: - '-1' pragma: @@ -839,13 +839,13 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.1341.0 + - 1.5.1361.0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: A9805256922447DD8D0D53A50657AF41 Ref B: CO6AA3150218045 Ref C: 2024-10-16T05:40:23Z' + - 'Ref A: B14A28CAC6164FDEB04C7D0E041BB2BB Ref B: CO6AA3150217047 Ref C: 2024-11-20T11:16:47Z' status: code: 200 message: OK @@ -863,12 +863,12 @@ interactions: ParameterSetName: - --name --resource-group --object-id --key-permissions User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2023-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:23.441Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"enablePurgeProtection":true,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:04.025Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:47.298Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"enablePurgeProtection":true,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -877,7 +877,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:23 GMT + - Wed, 20 Nov 2024 11:16:47 GMT expires: - '-1' pragma: @@ -891,11 +891,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.1341.0 + - 1.5.1361.0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6802EE1E534C488DA530FA279903BB13 Ref B: CO6AA3150219049 Ref C: 2024-10-16T05:40:23Z' + - 'Ref A: 9588BBC4C107468AA4E3B40A2968A2F1 Ref B: CO6AA3150218011 Ref C: 2024-11-20T11:16:47Z' status: code: 200 message: OK @@ -905,11 +905,11 @@ interactions: "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "6d27b751-c7f6-4776-9024-ada93a12bab0", "permissions": {"keys": ["all"], "secrets": ["all"], "certificates": ["all"], "storage": ["all"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": - "7aedcd17-344a-41c3-a30d-0b62b78213dc", "permissions": {"keys": ["unwrapKey", - "get", "wrapKey"]}}], "vaultUri": "https://clitest000002.vault.azure.net/", - "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": - 7, "enableRbacAuthorization": false, "enablePurgeProtection": true, "provisioningState": - "Succeeded", "publicNetworkAccess": "Enabled"}}' + "e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b", "permissions": {"keys": ["get", "unwrapKey", + "wrapKey"]}}], "vaultUri": "https://clitest000002.vault.azure.net/", "enabledForDeployment": + false, "enableSoftDelete": true, "softDeleteRetentionInDays": 7, "enableRbacAuthorization": + false, "enablePurgeProtection": true, "provisioningState": "Succeeded", "publicNetworkAccess": + "Enabled"}}' headers: Accept: - application/json @@ -926,12 +926,12 @@ interactions: ParameterSetName: - --name --resource-group --object-id --key-permissions User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2023-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:24.186Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","permissions":{"keys":["unwrapKey","get","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"enablePurgeProtection":true,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:04.025Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:47.946Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"enablePurgeProtection":true,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -940,7 +940,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:23 GMT + - Wed, 20 Nov 2024 11:16:48 GMT expires: - '-1' pragma: @@ -954,13 +954,13 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.1341.0 + - 1.5.1361.0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 6D81BB98FDBA4A6E8BD085065E189B6F Ref B: CO6AA3150217037 Ref C: 2024-10-16T05:40:23Z' + - 'Ref A: CAE5E744AE554297B69AE155A1A7D420 Ref B: CO6AA3150218011 Ref C: 2024-11-20T11:16:47Z' status: code: 200 message: OK @@ -993,7 +993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:24 GMT + - Wed, 20 Nov 2024 11:16:48 GMT expires: - '-1' pragma: @@ -1006,11 +1006,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=20.236.11.102;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus2 x-ms-keyvault-service-version: - - 1.9.1753.1 + - 1.9.1864.2 status: code: 401 message: Unauthorized @@ -1033,7 +1033,7 @@ interactions: uri: https://clitest000002.vault.azure.net/keys/testkey1/create?api-version=7.5-preview.1 response: body: - string: '{"key":{"kid":"https://clitest000002.vault.azure.net/keys/testkey1/08f6f8796fe9458898e68e64862d73b3","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"oaabQSBKBDZxcakyCoDa6MwkVwc3XbiqreoIVC5VrsarlWjaOyaPfx4vP3iD6HrESd6_dOifWMq8smckndJF28ug7y-5LYe80dpgk5ijgABvGLjGSVvspeCVy3YvirlWxSaqcLBB0DtvbhPWU5U7YajaK-LHnh-dobwcAXulWRnfsWERzsAlgg9N8YHj5qyZ0mD1VqpDZ7FNwa0h73759_VUJFD-suGc5JSYQ6pP6ddm-rOe2W4VGGRWb9Y4xf_JZuPgKt4GGTu5NdfjSC65xw5J8y_VA07RY6bHCrG8Yp918GoscGGp6yNWdOhTeyOmQPFjMrkYSxt_sPEpRfFUMQ","e":"AQAB"},"attributes":{"enabled":true,"created":1729057224,"updated":1729057224,"recoveryLevel":"CustomizedRecoverable","recoverableDays":7,"exportable":false,"hsmPlatform":"0"}}' + string: '{"key":{"kid":"https://clitest000002.vault.azure.net/keys/testkey1/7fc0e0717830433591dcfc77fae2c383","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"26RDsG9_8ArTzUUSXZ1RnGFaMZwrIU0gM-jmdY03EJnYty2ApEba7wijJjpWTYVDHETQxPWmMRwIjTkeYkCOmgteSgP7IByept0rkEFJcrqTC1KpFjpInkrqBeVuNj0Tcp-zx3gH_mfpdDYOfFOwmL6_rd3fYxxK4Jqm0i9kYOmAB6Tpck5DRUnvD_F9HB0F2KMcZZcNpPq78rwjLuLKBIUUk2bRjgGvGlmv_uAPyr_h2SqT-j7aTVZlefe7sjmQiIa1cZ_K0UZF3ABk7mAclMpOnUC_DPPvZgguDoFeTQr1wxLpA56i0CxAsaBgF6Jfb09ZZTUs4XxCHc_QChOz1Q","e":"AQAB"},"attributes":{"enabled":true,"created":1732101409,"updated":1732101409,"recoveryLevel":"CustomizedRecoverable","recoverableDays":7,"exportable":false,"hsmPlatform":"0"}}' headers: cache-control: - no-cache @@ -1042,7 +1042,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:24 GMT + - Wed, 20 Nov 2024 11:16:49 GMT expires: - '-1' pragma: @@ -1052,11 +1052,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=20.236.11.102;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus2 x-ms-keyvault-service-version: - - 1.9.1753.1 + - 1.9.1864.2 status: code: 200 message: OK @@ -1064,7 +1064,7 @@ interactions: body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1": {}}}, "location": "westus2", "properties": {"encryption": {"identity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1", - "type": "UserAssigned"}, "keyUrl": "https://clitest000002.vault.azure.net/keys/testkey1/08f6f8796fe9458898e68e64862d73b3"}}}' + "type": "UserAssigned"}, "keyUrl": "https://clitest000002.vault.azure.net/keys/testkey1/7fc0e0717830433591dcfc77fae2c383"}}}' headers: Accept: - application/json @@ -1082,17 +1082,17 @@ interactions: - --name --location --resource-group --identity-type --user-assigned --encryption-key --encryption-identity User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:25.5765292Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:25.5765292Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","clientId":"4095a352-29c5-4466-875a-dc5fe63e2dba"}}},"properties":{"dataPlaneURI":"14916564-8f28-42ea-96bb-0b676930af02.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/08f6f8796fe9458898e68e64862d73b3","identity":{"type":"UserAssigned","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1"}},"provisioningState":"Accepted"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:50.3786218Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:50.3786218Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","clientId":"b1c0bfba-712f-4578-8987-884c9f9e4f23"}}},"properties":{"dataPlaneURI":"78f5dc79-b170-49bc-97e9-7428cb19ec94.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/7fc0e0717830433591dcfc77fae2c383","identity":{"type":"UserAssigned","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1"}},"provisioningState":"Accepted"}}' headers: api-supported-versions: - 2022-12-01, 2023-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/d2308e47-209f-4f11-b1ff-5e7cb6b6b6ce*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646540275452754&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=0cPHsdMf5IN__xY1iY4gBZikoNfBsH5kaGRtYoBMvNAZVDEv8aVH-QXxFjRRArEgfTLpWVvQPiaadfHzQahUtdWnOi6Sh7PHcjX7uUncqXuRBXrfoNJPX2TZqEqAVhZdvqVUadKp32s8pYSTTRKMuQrseMSCfAoxGUgU2x_tZpXXNBUGm5hh7U38cZQt8eB-n04WS-jRMPvgiiqrvlijbKXtpWpeGlB3UZzWa2Z5dc70fMOf7XLsFzyWTMg3p4ADGmuGZWcRwuntFcDPj_-oZr9o_KZTxuDD4OeqCadVy1loD0W828DZK91q96APkeday9sGZqI35l9abzqdGbNOBQ&h=nDZNwKGt2SuiVGt5_DX6wuLTedV2qqr2orLHiR4TnBo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/cc33b79f-d99e-4716-af36-cdbdf85c167b*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676982127223810&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=s4gfrIG6GAoaIyKmuCfxvB3OFsjulcAeA7dOt9IrzIH123BbTOzr3I9S3LTrDDt_dMY_zo3lr-wJIVgEbZcUIE-27njIsZZjVHvEpyn6E_r1gCo-W8PhuO18f2rSgPEGEVQ8jg5QPQ9NymLioVMeY3SdyWCqpIq3sx-xMKCfga68jap6DbjZMAcva2SvhoM1W-V0_YZgjGZsACTFQKkbr7pNxlZ-qgbtpQt4L55lfn2PDCO7rrHA3xIoy8CsWwLGlr3mYvcqYWYWrx0QGBVf3IomihVzXdkgOaKuBVJ_zaHZZc9_Q0VZLeJ36RIDpqnIAV5_aGQXqaMjAMnCK7NMYw&h=5Mb_5OBol0vHnKyag6CLwT8NpXvvbf92AElx7zRZhbE cache-control: - no-cache content-length: @@ -1100,19 +1100,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:27 GMT + - Wed, 20 Nov 2024 11:16:52 GMT etag: - - '"3300db56-0000-0800-0000-670f51cb0000"' + - '"5d028ec8-0000-0800-0000-673dc5240000"' expires: - '-1' mise-correlation-id: - - dbd54dce-ee45-497d-a051-f90bf4ab1a5d + - 3cb2058a-2555-47c4-99f3-b802e592721c pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054025Z-18489d46dcc7qds9rw9wr310dc000000061000000000nkq9 + - 20241120T111650Z-1846dc7bb4dj2pdkhC1YVRs83s00000003yg000000004nz8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1124,7 +1124,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D8729E3E34B141DF81D4F0D0E7048154 Ref B: CO6AA3150219039 Ref C: 2024-10-16T05:40:25Z' + - 'Ref A: A85821FE87B440E5B67A94EAF79708A6 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:16:49Z' status: code: 201 message: Created @@ -1143,12 +1143,12 @@ interactions: - --name --location --resource-group --identity-type --user-assigned --encryption-key --encryption-identity User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/d2308e47-209f-4f11-b1ff-5e7cb6b6b6ce*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646540275452754&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=0cPHsdMf5IN__xY1iY4gBZikoNfBsH5kaGRtYoBMvNAZVDEv8aVH-QXxFjRRArEgfTLpWVvQPiaadfHzQahUtdWnOi6Sh7PHcjX7uUncqXuRBXrfoNJPX2TZqEqAVhZdvqVUadKp32s8pYSTTRKMuQrseMSCfAoxGUgU2x_tZpXXNBUGm5hh7U38cZQt8eB-n04WS-jRMPvgiiqrvlijbKXtpWpeGlB3UZzWa2Z5dc70fMOf7XLsFzyWTMg3p4ADGmuGZWcRwuntFcDPj_-oZr9o_KZTxuDD4OeqCadVy1loD0W828DZK91q96APkeday9sGZqI35l9abzqdGbNOBQ&h=nDZNwKGt2SuiVGt5_DX6wuLTedV2qqr2orLHiR4TnBo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/cc33b79f-d99e-4716-af36-cdbdf85c167b*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676982127223810&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=s4gfrIG6GAoaIyKmuCfxvB3OFsjulcAeA7dOt9IrzIH123BbTOzr3I9S3LTrDDt_dMY_zo3lr-wJIVgEbZcUIE-27njIsZZjVHvEpyn6E_r1gCo-W8PhuO18f2rSgPEGEVQ8jg5QPQ9NymLioVMeY3SdyWCqpIq3sx-xMKCfga68jap6DbjZMAcva2SvhoM1W-V0_YZgjGZsACTFQKkbr7pNxlZ-qgbtpQt4L55lfn2PDCO7rrHA3xIoy8CsWwLGlr3mYvcqYWYWrx0QGBVf3IomihVzXdkgOaKuBVJ_zaHZZc9_Q0VZLeJ36RIDpqnIAV5_aGQXqaMjAMnCK7NMYw&h=5Mb_5OBol0vHnKyag6CLwT8NpXvvbf92AElx7zRZhbE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/d2308e47-209f-4f11-b1ff-5e7cb6b6b6ce*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","name":"d2308e47-209f-4f11-b1ff-5e7cb6b6b6ce*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Accepted","startTime":"2024-10-16T05:40:25.908032Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/cc33b79f-d99e-4716-af36-cdbdf85c167b*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","name":"cc33b79f-d99e-4716-af36-cdbdf85c167b*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Accepted","startTime":"2024-11-20T11:16:50.715327Z"}' headers: cache-control: - no-cache @@ -1157,9 +1157,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:27 GMT + - Wed, 20 Nov 2024 11:16:52 GMT etag: - - '"50007c3c-0000-0800-0000-670f51c90000"' + - '"9c150cb2-0000-0800-0000-673dc5220000"' expires: - '-1' pragma: @@ -1173,7 +1173,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1BFE42F0B3F44EA287908A546C4DED68 Ref B: CO6AA3150218031 Ref C: 2024-10-16T05:40:27Z' + - 'Ref A: 6E1E3787D649488B98E7D6C2ED38B690 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:16:52Z' status: code: 200 message: OK @@ -1192,12 +1192,12 @@ interactions: - --name --location --resource-group --identity-type --user-assigned --encryption-key --encryption-identity User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/d2308e47-209f-4f11-b1ff-5e7cb6b6b6ce*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646540275452754&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=0cPHsdMf5IN__xY1iY4gBZikoNfBsH5kaGRtYoBMvNAZVDEv8aVH-QXxFjRRArEgfTLpWVvQPiaadfHzQahUtdWnOi6Sh7PHcjX7uUncqXuRBXrfoNJPX2TZqEqAVhZdvqVUadKp32s8pYSTTRKMuQrseMSCfAoxGUgU2x_tZpXXNBUGm5hh7U38cZQt8eB-n04WS-jRMPvgiiqrvlijbKXtpWpeGlB3UZzWa2Z5dc70fMOf7XLsFzyWTMg3p4ADGmuGZWcRwuntFcDPj_-oZr9o_KZTxuDD4OeqCadVy1loD0W828DZK91q96APkeday9sGZqI35l9abzqdGbNOBQ&h=nDZNwKGt2SuiVGt5_DX6wuLTedV2qqr2orLHiR4TnBo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/cc33b79f-d99e-4716-af36-cdbdf85c167b*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676982127223810&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=s4gfrIG6GAoaIyKmuCfxvB3OFsjulcAeA7dOt9IrzIH123BbTOzr3I9S3LTrDDt_dMY_zo3lr-wJIVgEbZcUIE-27njIsZZjVHvEpyn6E_r1gCo-W8PhuO18f2rSgPEGEVQ8jg5QPQ9NymLioVMeY3SdyWCqpIq3sx-xMKCfga68jap6DbjZMAcva2SvhoM1W-V0_YZgjGZsACTFQKkbr7pNxlZ-qgbtpQt4L55lfn2PDCO7rrHA3xIoy8CsWwLGlr3mYvcqYWYWrx0QGBVf3IomihVzXdkgOaKuBVJ_zaHZZc9_Q0VZLeJ36RIDpqnIAV5_aGQXqaMjAMnCK7NMYw&h=5Mb_5OBol0vHnKyag6CLwT8NpXvvbf92AElx7zRZhbE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/d2308e47-209f-4f11-b1ff-5e7cb6b6b6ce*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","name":"d2308e47-209f-4f11-b1ff-5e7cb6b6b6ce*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Succeeded","startTime":"2024-10-16T05:40:25.908032Z","endTime":"2024-10-16T05:40:55.4354814Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/cc33b79f-d99e-4716-af36-cdbdf85c167b*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","name":"cc33b79f-d99e-4716-af36-cdbdf85c167b*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Succeeded","startTime":"2024-11-20T11:16:50.715327Z","endTime":"2024-11-20T11:17:18.8762561Z","properties":null}' headers: cache-control: - no-cache @@ -1206,9 +1206,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:57 GMT + - Wed, 20 Nov 2024 11:17:22 GMT etag: - - '"5000ed40-0000-0800-0000-670f51e70000"' + - '"9c153bbc-0000-0800-0000-673dc53e0000"' expires: - '-1' pragma: @@ -1222,7 +1222,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CD9E12FD8FB04A5ABB16FBDEA7FA6841 Ref B: CO6AA3150220031 Ref C: 2024-10-16T05:40:57Z' + - 'Ref A: FB3A0C636A3740A8B227CA7B19623365 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:17:22Z' status: code: 200 message: OK @@ -1241,12 +1241,12 @@ interactions: - --name --location --resource-group --identity-type --user-assigned --encryption-key --encryption-identity User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:25.5765292Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:25.5765292Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","clientId":"4095a352-29c5-4466-875a-dc5fe63e2dba"}}},"properties":{"dataPlaneURI":"14916564-8f28-42ea-96bb-0b676930af02.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/08f6f8796fe9458898e68e64862d73b3","identity":{"type":"UserAssigned","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1"}},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:50.3786218Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:50.3786218Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","clientId":"b1c0bfba-712f-4578-8987-884c9f9e4f23"}}},"properties":{"dataPlaneURI":"78f5dc79-b170-49bc-97e9-7428cb19ec94.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/7fc0e0717830433591dcfc77fae2c383","identity":{"type":"UserAssigned","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1"}},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1255,9 +1255,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:57 GMT + - Wed, 20 Nov 2024 11:17:22 GMT etag: - - '"c5018178-0000-0200-0000-670f51e70000"' + - '"96039fff-0000-0200-0000-673dc53e0000"' expires: - '-1' pragma: @@ -1273,7 +1273,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D199B2BC8D744E538E863DAFCA5459B8 Ref B: CO6AA3150218025 Ref C: 2024-10-16T05:40:57Z' + - 'Ref A: EBC2DA83C440437D992F2EE36D153EC7 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:17:22Z' status: code: 200 message: OK @@ -1295,7 +1295,7 @@ interactions: ParameterSetName: - --name --resource-group --tags --identity-type User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003?api-version=2022-12-01 response: @@ -1305,7 +1305,7 @@ interactions: api-supported-versions: - 2022-12-01, 2023-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/edd1cfad-f79c-466a-85ea-b8f0e7b95692*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646540596596780&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=W9eI_Ss0P-0Sd_T1ki6O9JI4iB_wPpPWeUbzgbtg9OkIT5p9cvdZvGJiIu2dRsfvNV4-mBca0et_7AFitnEBP92TclSaeFGRDIra6kgn0fgchTUgcu-93f7rOd850pp_x8J7TstB00BTivGQJf6pvJBPpPMYO8lu19y4pXWarCcbqpbizjDRAGM-Q7pack6dCeYVmoobX2d7XVGLSHR632Prlkcfrb7XhF3AwTGV-_kmMXLG3yK0pbhpMmOqSTyqPGxxu251Wm4NW4AYfGvAun4gwZJNhioCV30ZhF8x7vKknrY90hflW_AWNacsA6CmzxIGBjXJoi14YP4OdZhByg&h=EQfXsOB9c76qaw-0Eb1N--jo0btRdsi31MsnR_rg7jI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6b187c3f-42b9-4470-8a58-6e4b190f7456*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676982445826137&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=yfofwg2kP5bV-L3uLgSGAlaOC56MgtjKnMKCiBvKne5S2fy2YT3yIBO4rrpYinvkCWjs5fjGKxgjaluyd-W3KukzzXTRdsCR377ICUSUxzw3XctWCDbSH35Yl6-TSh4BA5Qr8POosYMVOOgDVprXmxXmbTyjXa1sHOHUkKpcJdT2v5x6v_JmvxEXHWl3j5Z3kuK4ToWCe_xbkyHgMhYzPFhTY7LWU23zDTsl_62v4o-Zd8pXeTJAaCJCwsUQGM60XwNxgoE5oQk1wwzPS1L1wyN5IMwq69IcaiS0qlYrEjI2ECzIe4dSFceL4LZjUqu9bwQqWS_Qa8OKCM6lexoyMQ&h=yo5qn1DKTXfT8qfRCKhvPlesfZGo8mhPJ2ZCSCGEBAI cache-control: - no-cache content-length: @@ -1313,21 +1313,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:59 GMT + - Wed, 20 Nov 2024 11:17:24 GMT etag: - - '"33003659-0000-0800-0000-670f51eb0000"' + - '"5d02eec8-0000-0800-0000-673dc5440000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/edd1cfad-f79c-466a-85ea-b8f0e7b95692*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646540596753047&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=ACQCXFsM7t_T6-L599gqUXBV0nkaZrwAxn8C-8lEHIrVfdwldCTrI5s0mxa5fjIAdJcNc-83RfNwQS3dVKh9w4EK91syPhlIzVsPq0iuiXgKFtvQdM9FZI-5U8I3VCCW-etrgJGpx0VLmOYswK4WkMLFHCWQL_tvaZGwhhDZYg2QVFZ_dSTu3TZhaxkOCNjxJdcLaUdU1tqm32JjnlndtjwvSIWjlcz0_DldVdAKR31Yb6RENHsTVaJiJasH26bh3Ltg6Tk2sHT8QQbDOq0cnf5lRDldyRfSvJ7ruVig79oe1sXMgoJSuWip4lBkhxzhB7LFGQlp8Nev9_0FGauicg&h=_H40qwGa_lELafoMcbEI2dbQHz1QPTKG7Psch7YPz3k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6b187c3f-42b9-4470-8a58-6e4b190f7456*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676982446607399&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=0sJ0z75hsHLD69ybhIqBUg9_1PwBcgfl62Yp93BgSGqDI8wYwavC2751E9kb_OM1Rl6bHsTsgMB2bHDrOoOb-HaTjpkcmYCBipmbNpL6SYdjqW1u8O71TMx69Ep7Ii12nfGadHnaeSXH8qwaLtYCDjTExwtHwsPw5hqw8D356nXpRn_ZzBEgRbNFndYZpypFjMVgVmfJOnLXjBiJ42MrXS22aUjr9k8CRmLeRnydox0ozPeSePr5ntzKN4yahBoNDzBmHo2HL602ZgZXSDHeC18bAquZ7TsODMxxLT0Ytu9N5Hdlg3UiNn3ihVwlbw1NF5vm2u58Mb2x7Z65hmTxqw&h=H02Hc3hkJq3pHEb3LWNXrph_Rkh0ZN3p25gnR7W1qkw mise-correlation-id: - - 70888847-bee5-4149-9291-f5e9b3cad645 + - 72f7d689-b1e6-40ba-a28e-486c21441be5 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054059Z-18489d46dccp2df8e3m20gzz8w00000007t000000000fb7r + - 20241120T111724Z-17b7777dc45v8nvnhC1CO169a00000000w4g00000000wddx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1339,7 +1339,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: A01160B05E1E4C1B8512A456D1F3BABF Ref B: CO6AA3150218019 Ref C: 2024-10-16T05:40:58Z' + - 'Ref A: 19A448F705A245C784E3922AC651F81A Ref B: CO6AA3150218017 Ref C: 2024-11-20T11:17:23Z' status: code: 202 message: Accepted @@ -1357,12 +1357,12 @@ interactions: ParameterSetName: - --name --resource-group --tags --identity-type User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/edd1cfad-f79c-466a-85ea-b8f0e7b95692*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646540596596780&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=W9eI_Ss0P-0Sd_T1ki6O9JI4iB_wPpPWeUbzgbtg9OkIT5p9cvdZvGJiIu2dRsfvNV4-mBca0et_7AFitnEBP92TclSaeFGRDIra6kgn0fgchTUgcu-93f7rOd850pp_x8J7TstB00BTivGQJf6pvJBPpPMYO8lu19y4pXWarCcbqpbizjDRAGM-Q7pack6dCeYVmoobX2d7XVGLSHR632Prlkcfrb7XhF3AwTGV-_kmMXLG3yK0pbhpMmOqSTyqPGxxu251Wm4NW4AYfGvAun4gwZJNhioCV30ZhF8x7vKknrY90hflW_AWNacsA6CmzxIGBjXJoi14YP4OdZhByg&h=EQfXsOB9c76qaw-0Eb1N--jo0btRdsi31MsnR_rg7jI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6b187c3f-42b9-4470-8a58-6e4b190f7456*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676982445826137&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=yfofwg2kP5bV-L3uLgSGAlaOC56MgtjKnMKCiBvKne5S2fy2YT3yIBO4rrpYinvkCWjs5fjGKxgjaluyd-W3KukzzXTRdsCR377ICUSUxzw3XctWCDbSH35Yl6-TSh4BA5Qr8POosYMVOOgDVprXmxXmbTyjXa1sHOHUkKpcJdT2v5x6v_JmvxEXHWl3j5Z3kuK4ToWCe_xbkyHgMhYzPFhTY7LWU23zDTsl_62v4o-Zd8pXeTJAaCJCwsUQGM60XwNxgoE5oQk1wwzPS1L1wyN5IMwq69IcaiS0qlYrEjI2ECzIe4dSFceL4LZjUqu9bwQqWS_Qa8OKCM6lexoyMQ&h=yo5qn1DKTXfT8qfRCKhvPlesfZGo8mhPJ2ZCSCGEBAI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/edd1cfad-f79c-466a-85ea-b8f0e7b95692*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","name":"edd1cfad-f79c-466a-85ea-b8f0e7b95692*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Accepted","startTime":"2024-10-16T05:40:59.4162119Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6b187c3f-42b9-4470-8a58-6e4b190f7456*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","name":"6b187c3f-42b9-4470-8a58-6e4b190f7456*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Accepted","startTime":"2024-11-20T11:17:24.4380984Z"}' headers: cache-control: - no-cache @@ -1371,9 +1371,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:59 GMT + - Wed, 20 Nov 2024 11:17:24 GMT etag: - - '"5000a741-0000-0800-0000-670f51eb0000"' + - '"9c15fdbd-0000-0800-0000-673dc5440000"' expires: - '-1' pragma: @@ -1387,7 +1387,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7305D32BCB074DF3AFE2D1B9D46A64DA Ref B: CO6AA3150217051 Ref C: 2024-10-16T05:40:59Z' + - 'Ref A: EA75663DAB9D48D3A95603C7C2DDAD9A Ref B: CO6AA3150218017 Ref C: 2024-11-20T11:17:24Z' status: code: 200 message: OK @@ -1405,12 +1405,12 @@ interactions: ParameterSetName: - --name --resource-group --tags --identity-type User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/edd1cfad-f79c-466a-85ea-b8f0e7b95692*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646540596596780&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=W9eI_Ss0P-0Sd_T1ki6O9JI4iB_wPpPWeUbzgbtg9OkIT5p9cvdZvGJiIu2dRsfvNV4-mBca0et_7AFitnEBP92TclSaeFGRDIra6kgn0fgchTUgcu-93f7rOd850pp_x8J7TstB00BTivGQJf6pvJBPpPMYO8lu19y4pXWarCcbqpbizjDRAGM-Q7pack6dCeYVmoobX2d7XVGLSHR632Prlkcfrb7XhF3AwTGV-_kmMXLG3yK0pbhpMmOqSTyqPGxxu251Wm4NW4AYfGvAun4gwZJNhioCV30ZhF8x7vKknrY90hflW_AWNacsA6CmzxIGBjXJoi14YP4OdZhByg&h=EQfXsOB9c76qaw-0Eb1N--jo0btRdsi31MsnR_rg7jI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6b187c3f-42b9-4470-8a58-6e4b190f7456*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676982445826137&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=yfofwg2kP5bV-L3uLgSGAlaOC56MgtjKnMKCiBvKne5S2fy2YT3yIBO4rrpYinvkCWjs5fjGKxgjaluyd-W3KukzzXTRdsCR377ICUSUxzw3XctWCDbSH35Yl6-TSh4BA5Qr8POosYMVOOgDVprXmxXmbTyjXa1sHOHUkKpcJdT2v5x6v_JmvxEXHWl3j5Z3kuK4ToWCe_xbkyHgMhYzPFhTY7LWU23zDTsl_62v4o-Zd8pXeTJAaCJCwsUQGM60XwNxgoE5oQk1wwzPS1L1wyN5IMwq69IcaiS0qlYrEjI2ECzIe4dSFceL4LZjUqu9bwQqWS_Qa8OKCM6lexoyMQ&h=yo5qn1DKTXfT8qfRCKhvPlesfZGo8mhPJ2ZCSCGEBAI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/edd1cfad-f79c-466a-85ea-b8f0e7b95692*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","name":"edd1cfad-f79c-466a-85ea-b8f0e7b95692*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Succeeded","startTime":"2024-10-16T05:40:59.4162119Z","endTime":"2024-10-16T05:41:10.8456039Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6b187c3f-42b9-4470-8a58-6e4b190f7456*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","name":"6b187c3f-42b9-4470-8a58-6e4b190f7456*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Succeeded","startTime":"2024-11-20T11:17:24.4380984Z","endTime":"2024-11-20T11:17:35.6584106Z","properties":null}' headers: cache-control: - no-cache @@ -1419,9 +1419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:29 GMT + - Wed, 20 Nov 2024 11:17:54 GMT etag: - - '"50005d43-0000-0800-0000-670f51f60000"' + - '"9c15bfc1-0000-0800-0000-673dc54f0000"' expires: - '-1' pragma: @@ -1433,9 +1433,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 9E03694147B945D8B6B7A0343AF1777B Ref B: CO6AA3150217033 Ref C: 2024-10-16T05:41:29Z' + - 'Ref A: 28515EA246DC4EBC955A6A518AA34BDA Ref B: CO6AA3150218017 Ref C: 2024-11-20T11:17:54Z' status: code: 200 message: OK @@ -1453,23 +1453,23 @@ interactions: ParameterSetName: - --name --resource-group --tags --identity-type User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","tags":{"test":"test"},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:39:17.3087825Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:59.3471747Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"81b14425-6f28-40c8-8907-f7875c957050.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","tags":{"test":"test"},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:40.9697238Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:24.395109Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"3bacfe41-dc85-4f61-82c1-8843b0c7657a.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '690' + - '689' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:36 GMT + - Wed, 20 Nov 2024 11:17:54 GMT etag: - - '"c5017179-0000-0200-0000-670f51f70000"' + - '"9603c4ff-0000-0200-0000-673dc54f0000"' expires: - '-1' pragma: @@ -1485,7 +1485,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C99BE33F64244FBE940D86FCDDDB57FE Ref B: CO6AA3150219029 Ref C: 2024-10-16T05:41:37Z' + - 'Ref A: C33F333C14CC4CBAAB1015B75FE1FE55 Ref B: CO6AA3150218017 Ref C: 2024-11-20T11:17:54Z' status: code: 200 message: OK @@ -1507,7 +1507,7 @@ interactions: ParameterSetName: - --name --resource-group --identity-type User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004?api-version=2022-12-01 response: @@ -1517,7 +1517,7 @@ interactions: api-supported-versions: - 2022-12-01, 2023-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/14c6f36c-b4cd-41e6-b4e6-60e4278c4bd8*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646540987499223&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=Pi5V--x-s9cZuCRezoShIYKm1QYTI3FfgNJq5WASmw3-KDZLbM_kqSx5Q3DwyADgNzZFyD99WD9hOXORiAQXz4vYtzY5WAdlD8lvqNRH9ShccPuVLl2Sv45yHymaWLLES3mXAio6buz4f1I7Seq4ozs2prhOv8t7MM1n9zgnfFv6KeOSdaEbnfdC3lytdmnrftpZpVbCVrd_do35DL_5LW-dDXR1XZvpMF5CLF4GkqRI3ACDPFV-OTSBIVz3B1bXh5A_aqhfg0DCyuhAwfELNKI91d6ZE4rNpARIcRztMspDpz910cH7VNoRvC2mYwUvWQ-hulG4x8xwz8jVXSjXnA&h=0utz6em2BXvXDJtgeVAMib-3q-KNZ-8SUU9CiuW0aus + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/2e102b63-57d2-484f-822d-74424a4c98e6*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676982761601284&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=ofhX89Tr5eWkLR1E6yJHrQfTaRo2_W6VqidwY4bQkut0oxPWbOYDIwCqC6KibB8UCA-bGtmwJXaGskOIN7nZzWhqgpcYlXMRPPuSR5KcoTm0-4SrlCo8vmKg48lPP5reOFgf3PgoEKBDDnHhVKkiJtkO2ELVVnJUrQpJ9iksiTTGxX6kwoypjVaBiFqHkJIEI6OMi4uFTlmWhLipmkoMdMwzhbrqIinKdh7rDUT9pkneDGVAU9K9AZhLugj72-Rp3V-KcEnpJNdUbVsbROj3OihUHByuadbsybfh1go2QYV9yAZBgfyYMKmTSmj4KKz1Zw1bjrFgUUifxvcmeziGTA&h=2wcyFOarsQVQIIGcQ9my8AV831vRpMmZLJMSLuSLHaQ cache-control: - no-cache content-length: @@ -1525,21 +1525,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:38 GMT + - Wed, 20 Nov 2024 11:17:55 GMT etag: - - '"33007b5b-0000-0800-0000-670f52120000"' + - '"5d025cc9-0000-0800-0000-673dc5640000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/14c6f36c-b4cd-41e6-b4e6-60e4278c4bd8*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646540987655463&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=vV0WEw5QyTZOfI_90wrcAKVrbZRL1RRCHTmW3EfYUzyfj9Ta3BQJlmzLAlpubWqYDCDWdyEC89_a3Or5Na6AmSdHy_sVaO3IQ99kXe-P4jl6iOKkStFE3dvv-d-e99Nn0k5rDB2TNqPqEvL1o_BsAAwEf5-OxUFKG3g6P0A7WRgpV-hhoZ-3bo_q3DerRFXdZG1seTUHfJjemtD8yikRmIGRLfoT1IqrNld9JnKWqhwASkqX0OFBpbgBFQPkp2dGBp8RPmTwpJ8XFv3iJEnbsW92U0YEVyh-aWQ69562JnqWPQNu-yoCqfHyA2M7WhLRtSs7pP-qdR92AhvL4iYPIA&h=8Ee29Of2odtm9tEZSxFAEjunHaOcHT2NLAobctxAxGM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/2e102b63-57d2-484f-822d-74424a4c98e6*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676982761601284&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=ofhX89Tr5eWkLR1E6yJHrQfTaRo2_W6VqidwY4bQkut0oxPWbOYDIwCqC6KibB8UCA-bGtmwJXaGskOIN7nZzWhqgpcYlXMRPPuSR5KcoTm0-4SrlCo8vmKg48lPP5reOFgf3PgoEKBDDnHhVKkiJtkO2ELVVnJUrQpJ9iksiTTGxX6kwoypjVaBiFqHkJIEI6OMi4uFTlmWhLipmkoMdMwzhbrqIinKdh7rDUT9pkneDGVAU9K9AZhLugj72-Rp3V-KcEnpJNdUbVsbROj3OihUHByuadbsybfh1go2QYV9yAZBgfyYMKmTSmj4KKz1Zw1bjrFgUUifxvcmeziGTA&h=2wcyFOarsQVQIIGcQ9my8AV831vRpMmZLJMSLuSLHaQ mise-correlation-id: - - cefb3504-8c3d-4809-89c1-c41f01929b79 + - 98a9c964-3e20-45e2-809a-4734f8b90abe pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054138Z-166cf497cd48w6x2zuxa69f51n00000007w000000000escc + - 20241120T111755Z-1846dc7bb4d57qlwhC1YVR5mdc00000001s000000000180d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1551,7 +1551,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1568D57D10354D7193F2080459818FCF Ref B: CO6AA3150220025 Ref C: 2024-10-16T05:41:37Z' + - 'Ref A: 1C31B4570EE142E1937666E8D4EC86E0 Ref B: CO6AA3150219025 Ref C: 2024-11-20T11:17:55Z' status: code: 202 message: Accepted @@ -1569,23 +1569,23 @@ interactions: ParameterSetName: - --name --resource-group --identity-type User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/14c6f36c-b4cd-41e6-b4e6-60e4278c4bd8*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646540987499223&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=Pi5V--x-s9cZuCRezoShIYKm1QYTI3FfgNJq5WASmw3-KDZLbM_kqSx5Q3DwyADgNzZFyD99WD9hOXORiAQXz4vYtzY5WAdlD8lvqNRH9ShccPuVLl2Sv45yHymaWLLES3mXAio6buz4f1I7Seq4ozs2prhOv8t7MM1n9zgnfFv6KeOSdaEbnfdC3lytdmnrftpZpVbCVrd_do35DL_5LW-dDXR1XZvpMF5CLF4GkqRI3ACDPFV-OTSBIVz3B1bXh5A_aqhfg0DCyuhAwfELNKI91d6ZE4rNpARIcRztMspDpz910cH7VNoRvC2mYwUvWQ-hulG4x8xwz8jVXSjXnA&h=0utz6em2BXvXDJtgeVAMib-3q-KNZ-8SUU9CiuW0aus + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/2e102b63-57d2-484f-822d-74424a4c98e6*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676982761601284&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=ofhX89Tr5eWkLR1E6yJHrQfTaRo2_W6VqidwY4bQkut0oxPWbOYDIwCqC6KibB8UCA-bGtmwJXaGskOIN7nZzWhqgpcYlXMRPPuSR5KcoTm0-4SrlCo8vmKg48lPP5reOFgf3PgoEKBDDnHhVKkiJtkO2ELVVnJUrQpJ9iksiTTGxX6kwoypjVaBiFqHkJIEI6OMi4uFTlmWhLipmkoMdMwzhbrqIinKdh7rDUT9pkneDGVAU9K9AZhLugj72-Rp3V-KcEnpJNdUbVsbROj3OihUHByuadbsybfh1go2QYV9yAZBgfyYMKmTSmj4KKz1Zw1bjrFgUUifxvcmeziGTA&h=2wcyFOarsQVQIIGcQ9my8AV831vRpMmZLJMSLuSLHaQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/14c6f36c-b4cd-41e6-b4e6-60e4278c4bd8*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","name":"14c6f36c-b4cd-41e6-b4e6-60e4278c4bd8*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Accepted","startTime":"2024-10-16T05:41:38.5429213Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/2e102b63-57d2-484f-822d-74424a4c98e6*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","name":"2e102b63-57d2-484f-822d-74424a4c98e6*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Accepted","startTime":"2024-11-20T11:17:55.84666Z"}' headers: cache-control: - no-cache content-length: - - '586' + - '584' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:38 GMT + - Wed, 20 Nov 2024 11:17:55 GMT etag: - - '"50006d47-0000-0800-0000-670f52120000"' + - '"9c158dc7-0000-0800-0000-673dc5630000"' expires: - '-1' pragma: @@ -1599,7 +1599,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AE898DCD3D774AFDB10E0264DDE2BEE5 Ref B: CO6AA3150220037 Ref C: 2024-10-16T05:41:38Z' + - 'Ref A: 826F301906F74CFBAC0004EA16C0EC2D Ref B: CO6AA3150219025 Ref C: 2024-11-20T11:17:56Z' status: code: 200 message: OK @@ -1617,23 +1617,23 @@ interactions: ParameterSetName: - --name --resource-group --identity-type User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/14c6f36c-b4cd-41e6-b4e6-60e4278c4bd8*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646540987499223&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=Pi5V--x-s9cZuCRezoShIYKm1QYTI3FfgNJq5WASmw3-KDZLbM_kqSx5Q3DwyADgNzZFyD99WD9hOXORiAQXz4vYtzY5WAdlD8lvqNRH9ShccPuVLl2Sv45yHymaWLLES3mXAio6buz4f1I7Seq4ozs2prhOv8t7MM1n9zgnfFv6KeOSdaEbnfdC3lytdmnrftpZpVbCVrd_do35DL_5LW-dDXR1XZvpMF5CLF4GkqRI3ACDPFV-OTSBIVz3B1bXh5A_aqhfg0DCyuhAwfELNKI91d6ZE4rNpARIcRztMspDpz910cH7VNoRvC2mYwUvWQ-hulG4x8xwz8jVXSjXnA&h=0utz6em2BXvXDJtgeVAMib-3q-KNZ-8SUU9CiuW0aus + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/2e102b63-57d2-484f-822d-74424a4c98e6*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676982761601284&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=ofhX89Tr5eWkLR1E6yJHrQfTaRo2_W6VqidwY4bQkut0oxPWbOYDIwCqC6KibB8UCA-bGtmwJXaGskOIN7nZzWhqgpcYlXMRPPuSR5KcoTm0-4SrlCo8vmKg48lPP5reOFgf3PgoEKBDDnHhVKkiJtkO2ELVVnJUrQpJ9iksiTTGxX6kwoypjVaBiFqHkJIEI6OMi4uFTlmWhLipmkoMdMwzhbrqIinKdh7rDUT9pkneDGVAU9K9AZhLugj72-Rp3V-KcEnpJNdUbVsbROj3OihUHByuadbsybfh1go2QYV9yAZBgfyYMKmTSmj4KKz1Zw1bjrFgUUifxvcmeziGTA&h=2wcyFOarsQVQIIGcQ9my8AV831vRpMmZLJMSLuSLHaQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/14c6f36c-b4cd-41e6-b4e6-60e4278c4bd8*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","name":"14c6f36c-b4cd-41e6-b4e6-60e4278c4bd8*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Succeeded","startTime":"2024-10-16T05:41:38.5429213Z","endTime":"2024-10-16T05:41:50.0170734Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/2e102b63-57d2-484f-822d-74424a4c98e6*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","name":"2e102b63-57d2-484f-822d-74424a4c98e6*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Succeeded","startTime":"2024-11-20T11:17:55.84666Z","endTime":"2024-11-20T11:18:06.9123561Z","properties":null}' headers: cache-control: - no-cache content-length: - - '646' + - '644' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:08 GMT + - Wed, 20 Nov 2024 11:18:25 GMT etag: - - '"50004349-0000-0800-0000-670f521e0000"' + - '"9c1527cb-0000-0800-0000-673dc56e0000"' expires: - '-1' pragma: @@ -1647,7 +1647,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9C05F032F6EE4A698ADFD4B843802FBA Ref B: CO6AA3150220031 Ref C: 2024-10-16T05:42:09Z' + - 'Ref A: C3E1182B831B4E519270D3BA101F8362 Ref B: CO6AA3150219025 Ref C: 2024-11-20T11:18:26Z' status: code: 200 message: OK @@ -1665,24 +1665,24 @@ interactions: ParameterSetName: - --name --resource-group --identity-type User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:25.5765292Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:41:38.484295Z"},"identity":{"principalId":"f8305ffe-573d-4ade-a3ec-9bb81a7fac04","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","clientId":"4095a352-29c5-4466-875a-dc5fe63e2dba"}}},"properties":{"dataPlaneURI":"14916564-8f28-42ea-96bb-0b676930af02.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/08f6f8796fe9458898e68e64862d73b3","identity":{"type":"UserAssigned","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1"}},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:50.3786218Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:55.7695093Z"},"identity":{"principalId":"9d52a6a6-009e-4aeb-bcde-667506d56895","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","clientId":"b1c0bfba-712f-4578-8987-884c9f9e4f23"}}},"properties":{"dataPlaneURI":"78f5dc79-b170-49bc-97e9-7428cb19ec94.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/7fc0e0717830433591dcfc77fae2c383","identity":{"type":"UserAssigned","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitestid1"}},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1430' + - '1431' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:08 GMT + - Wed, 20 Nov 2024 11:18:25 GMT etag: - - '"c501747b-0000-0200-0000-670f521e0000"' + - '"97036c00-0000-0200-0000-673dc56e0000"' expires: - '-1' pragma: @@ -1698,7 +1698,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0C2A1019615D4F638D6D1C1DD8EBA508 Ref B: CO6AA3150219009 Ref C: 2024-10-16T05:42:09Z' + - 'Ref A: 86021F61FF644CEB9D22DA98A3381C51 Ref B: CO6AA3150219025 Ref C: 2024-11-20T11:18:26Z' status: code: 200 message: OK @@ -1716,12 +1716,12 @@ interactions: ParameterSetName: - --name --resource-group --object-id --key-permissions User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2023-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:24.186Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","permissions":{"keys":["unwrapKey","get","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"enablePurgeProtection":true,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:04.025Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:47.946Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"enablePurgeProtection":true,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -1730,7 +1730,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:09 GMT + - Wed, 20 Nov 2024 11:18:26 GMT expires: - '-1' pragma: @@ -1744,11 +1744,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.1341.0 + - 1.5.1361.0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 65148659095E4155B1FB92F88F01EA1D Ref B: CO6AA3150219029 Ref C: 2024-10-16T05:42:09Z' + - 'Ref A: 3CCE9C3134694BBFA5EF9DE48EC17416 Ref B: CO6AA3150218047 Ref C: 2024-11-20T11:18:27Z' status: code: 200 message: OK @@ -1758,13 +1758,13 @@ interactions: "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "6d27b751-c7f6-4776-9024-ada93a12bab0", "permissions": {"keys": ["all"], "secrets": ["all"], "certificates": ["all"], "storage": ["all"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": - "7aedcd17-344a-41c3-a30d-0b62b78213dc", "permissions": {"keys": ["unwrapKey", - "get", "wrapKey"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": - "f8305ffe-573d-4ade-a3ec-9bb81a7fac04", "permissions": {"keys": ["unwrapKey", - "get", "wrapKey"]}}], "vaultUri": "https://clitest000002.vault.azure.net/", - "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": - 7, "enableRbacAuthorization": false, "enablePurgeProtection": true, "provisioningState": - "Succeeded", "publicNetworkAccess": "Enabled"}}' + "e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b", "permissions": {"keys": ["get", "unwrapKey", + "wrapKey"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": + "9d52a6a6-009e-4aeb-bcde-667506d56895", "permissions": {"keys": ["get", "unwrapKey", + "wrapKey"]}}], "vaultUri": "https://clitest000002.vault.azure.net/", "enabledForDeployment": + false, "enableSoftDelete": true, "softDeleteRetentionInDays": 7, "enableRbacAuthorization": + false, "enablePurgeProtection": true, "provisioningState": "Succeeded", "publicNetworkAccess": + "Enabled"}}' headers: Accept: - application/json @@ -1781,12 +1781,12 @@ interactions: ParameterSetName: - --name --resource-group --object-id --key-permissions User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2023-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:10.135Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","permissions":{"keys":["unwrapKey","get","wrapKey"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"f8305ffe-573d-4ade-a3ec-9bb81a7fac04","permissions":{"keys":["unwrapKey","get","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"enablePurgeProtection":true,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:04.025Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:27.432Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6d27b751-c7f6-4776-9024-ada93a12bab0","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","permissions":{"keys":["get","unwrapKey","wrapKey"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"9d52a6a6-009e-4aeb-bcde-667506d56895","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"enableRbacAuthorization":false,"enablePurgeProtection":true,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -1795,7 +1795,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:10 GMT + - Wed, 20 Nov 2024 11:18:27 GMT expires: - '-1' pragma: @@ -1809,13 +1809,13 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.1341.0 + - 1.5.1361.0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D1665409EE8D44B78088018D14B81BBF Ref B: CO6AA3150217027 Ref C: 2024-10-16T05:42:10Z' + - 'Ref A: 8B2DA17C2CEB46F08FF9AD76D86911D1 Ref B: CO6AA3150218047 Ref C: 2024-11-20T11:18:27Z' status: code: 200 message: OK @@ -1838,7 +1838,7 @@ interactions: ParameterSetName: - --name --resource-group --encryption-identity User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004?api-version=2022-12-01 response: @@ -1848,7 +1848,7 @@ interactions: api-supported-versions: - 2022-12-01, 2023-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/627f419e-19c2-44bf-a6ce-c55c38bebb9d*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541331292591&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=tGV3aEeTiOMWMJ6m8fhODJ9xjYFREcGWBt4bLv7TTKupI4jOHwkB9OWFmI75JCODbCS2hjhGJo53-XpieoywFnKyCpFRTEhrAl_UppfyKk8bQJi_iRv8-c1e31mezanjOOGPhH_yL2GOSBGAG8p1K0siZcNWI93O51_e1U1_7Xm3MQ95DjfL7Xz2KXADSAnHjl_UVIerz3BkRIARhgtyQw63EBvlUwLXI52VO1XDq-EBjOqqKCrvl_rw86vuQNNHwCIMGYYdn8EaJ45jkSMdx8BR9mZ1yWJE2nTck_4E4Ps6BNd0oYUlBhliQhOkycljvCW67gK1iKpMrZL4nzfmwQ&h=b9sOv5Eurmogib9bdHSOvf9MSRuh7chA70CYQ93BPMI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/f8265911-2198-4301-b675-5d9875294a94*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983090003513&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=rU7UtdcvUhZLNWRuqBOZtRai3q6VilSsa1_TBovBNam7KI3wUkxJ0-Mx74mlM_KY7DeFAOR-qfHN1qnqO-JwnlG9jSw-itBXf2RJWSl893Y1EoX23sRZsuGBFIZi1LLKTOjodWi_L5NJ-IEafx16OfHjw8jZOWpFDz6vvriJt2Fseq7AN9-ibvzTTQoBKqBJ_J1n65MbB5zAYrOnNIgTGu7PGX3laN9sTEd40X3La2zwVu3WEma7AkNYacz10uWlVPevy1ZyxKf6IE366RQyuZrrK4mFWaLDoYUaVvKNiFU-EeBOYPbdCPDA0g5VYpuhzzZrnVNlA711VKhgeB_CNA&h=arNFafIaO-nue3Eb2qV1TQ92fsldw8zHgdz1zmvB3tk cache-control: - no-cache content-length: @@ -1856,21 +1856,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:12 GMT + - Wed, 20 Nov 2024 11:18:28 GMT etag: - - '"3300a95f-0000-0800-0000-670f52350000"' + - '"5d0207cb-0000-0800-0000-673dc5850000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/627f419e-19c2-44bf-a6ce-c55c38bebb9d*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541331448847&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=QRA9fD1156SFz-B-tb21ZYfGXphXNos2Xu6eT3EuUjtvOwtLi31V6YajcndE_SCiLbdOZ4ytxtY2jhLz0_3taWGkbDuiDVkUvUOu5fz1lSpnXL3HkuN5H3-zVJ0rlV5Py53Vq2KTq6cmHTu8E8kEqW9gkdrK1aczZk42FesE9c3ayi902_ceanxufb4AcEYmH2HSqSloxYb625aBBUL4ESJSO8tupPs8v17nbwtFQk2_3jlhFGRvN--pm0AhP7Xh9Kn8pLCmoHLOtjpFAF-b8jZMvUTIYDk7AjYDaFo8ew15l9CaCjfGTV5fWQU7C_slQOiDFWobEk57Uhwc_8ZZpw&h=aaPqkLkj48PdLTY16TdICKr8gE2ITbMK6gvyqNtRvC0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/f8265911-2198-4301-b675-5d9875294a94*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983090159808&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=sWaHdshix0C0E1NktmdxViu6j7YhDap-QyzvL5CWJJj2ZCieYDIqI7NBNqynMaI3JL0cgL1oZEu_ga479nigqbwJ59EjDdYWYS439Olm2SuS_oHm83Hs3QMwA2Uc3U-oj3sMDuimvSVESdbL56h74exreo7u-tkDQfJXJJCcm99oS2JTcq00BkL5aS90qGlim8pFh7ggawcp6GJOZLM3voVTRKDr2nGBfbhPpKlYXxbwC8RbAPM8sBoYfn67wVGhTs6P1jGUrJLfK18DQ5GuVVauK7B9jbmGB5mnPLdJwfPGXAq_6oxr-G4fiRLvM0nYRCvcrYyyZVDTnSRdpg3boQ&h=wUBjyKwIPZ-9Qlm0qtCyY5Z6vzSWZ53RNvAgpB5Q6UI mise-correlation-id: - - 178c6fdd-0a5d-4575-a48d-0b9278dece0b + - 3fba950f-7b6b-4ea4-95e9-00458487e3b8 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054210Z-165bfd566cfvnfldckvfavskxn00000007d00000000079h6 + - 20241120T111828Z-17b7777dc45pfqdbhC1CO1st9s0000000w1g00000000swec x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1882,7 +1882,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D777CE652C50431CA3B0DC224B09BB97 Ref B: CO6AA3150217035 Ref C: 2024-10-16T05:42:10Z' + - 'Ref A: 5B887A4C1D7E4523A9A839A3E4AB2DD9 Ref B: CO6AA3150217027 Ref C: 2024-11-20T11:18:27Z' status: code: 202 message: Accepted @@ -1900,23 +1900,23 @@ interactions: ParameterSetName: - --name --resource-group --encryption-identity User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/627f419e-19c2-44bf-a6ce-c55c38bebb9d*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541331292591&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=tGV3aEeTiOMWMJ6m8fhODJ9xjYFREcGWBt4bLv7TTKupI4jOHwkB9OWFmI75JCODbCS2hjhGJo53-XpieoywFnKyCpFRTEhrAl_UppfyKk8bQJi_iRv8-c1e31mezanjOOGPhH_yL2GOSBGAG8p1K0siZcNWI93O51_e1U1_7Xm3MQ95DjfL7Xz2KXADSAnHjl_UVIerz3BkRIARhgtyQw63EBvlUwLXI52VO1XDq-EBjOqqKCrvl_rw86vuQNNHwCIMGYYdn8EaJ45jkSMdx8BR9mZ1yWJE2nTck_4E4Ps6BNd0oYUlBhliQhOkycljvCW67gK1iKpMrZL4nzfmwQ&h=b9sOv5Eurmogib9bdHSOvf9MSRuh7chA70CYQ93BPMI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/f8265911-2198-4301-b675-5d9875294a94*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983090003513&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=rU7UtdcvUhZLNWRuqBOZtRai3q6VilSsa1_TBovBNam7KI3wUkxJ0-Mx74mlM_KY7DeFAOR-qfHN1qnqO-JwnlG9jSw-itBXf2RJWSl893Y1EoX23sRZsuGBFIZi1LLKTOjodWi_L5NJ-IEafx16OfHjw8jZOWpFDz6vvriJt2Fseq7AN9-ibvzTTQoBKqBJ_J1n65MbB5zAYrOnNIgTGu7PGX3laN9sTEd40X3La2zwVu3WEma7AkNYacz10uWlVPevy1ZyxKf6IE366RQyuZrrK4mFWaLDoYUaVvKNiFU-EeBOYPbdCPDA0g5VYpuhzzZrnVNlA711VKhgeB_CNA&h=arNFafIaO-nue3Eb2qV1TQ92fsldw8zHgdz1zmvB3tk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/627f419e-19c2-44bf-a6ce-c55c38bebb9d*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","name":"627f419e-19c2-44bf-a6ce-c55c38bebb9d*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Accepted","startTime":"2024-10-16T05:42:10.7113537Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/f8265911-2198-4301-b675-5d9875294a94*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","name":"f8265911-2198-4301-b675-5d9875294a94*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Accepted","startTime":"2024-11-20T11:18:28.098364Z"}' headers: cache-control: - no-cache content-length: - - '586' + - '585' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:12 GMT + - Wed, 20 Nov 2024 11:18:28 GMT etag: - - '"50007b4c-0000-0800-0000-670f52320000"' + - '"9c1507d2-0000-0800-0000-673dc5840000"' expires: - '-1' pragma: @@ -1930,7 +1930,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 44F9D1BF7DAD47E69DFBE98BFDE6CAD6 Ref B: CO6AA3150219017 Ref C: 2024-10-16T05:42:13Z' + - 'Ref A: 5485091092AA4A17B1F46615958D7F2D Ref B: CO6AA3150217027 Ref C: 2024-11-20T11:18:29Z' status: code: 200 message: OK @@ -1948,23 +1948,23 @@ interactions: ParameterSetName: - --name --resource-group --encryption-identity User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/627f419e-19c2-44bf-a6ce-c55c38bebb9d*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541331292591&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=tGV3aEeTiOMWMJ6m8fhODJ9xjYFREcGWBt4bLv7TTKupI4jOHwkB9OWFmI75JCODbCS2hjhGJo53-XpieoywFnKyCpFRTEhrAl_UppfyKk8bQJi_iRv8-c1e31mezanjOOGPhH_yL2GOSBGAG8p1K0siZcNWI93O51_e1U1_7Xm3MQ95DjfL7Xz2KXADSAnHjl_UVIerz3BkRIARhgtyQw63EBvlUwLXI52VO1XDq-EBjOqqKCrvl_rw86vuQNNHwCIMGYYdn8EaJ45jkSMdx8BR9mZ1yWJE2nTck_4E4Ps6BNd0oYUlBhliQhOkycljvCW67gK1iKpMrZL4nzfmwQ&h=b9sOv5Eurmogib9bdHSOvf9MSRuh7chA70CYQ93BPMI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/f8265911-2198-4301-b675-5d9875294a94*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983090003513&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=rU7UtdcvUhZLNWRuqBOZtRai3q6VilSsa1_TBovBNam7KI3wUkxJ0-Mx74mlM_KY7DeFAOR-qfHN1qnqO-JwnlG9jSw-itBXf2RJWSl893Y1EoX23sRZsuGBFIZi1LLKTOjodWi_L5NJ-IEafx16OfHjw8jZOWpFDz6vvriJt2Fseq7AN9-ibvzTTQoBKqBJ_J1n65MbB5zAYrOnNIgTGu7PGX3laN9sTEd40X3La2zwVu3WEma7AkNYacz10uWlVPevy1ZyxKf6IE366RQyuZrrK4mFWaLDoYUaVvKNiFU-EeBOYPbdCPDA0g5VYpuhzzZrnVNlA711VKhgeB_CNA&h=arNFafIaO-nue3Eb2qV1TQ92fsldw8zHgdz1zmvB3tk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/627f419e-19c2-44bf-a6ce-c55c38bebb9d*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","name":"627f419e-19c2-44bf-a6ce-c55c38bebb9d*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Succeeded","startTime":"2024-10-16T05:42:10.7113537Z","endTime":"2024-10-16T05:42:27.5999147Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/f8265911-2198-4301-b675-5d9875294a94*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","name":"f8265911-2198-4301-b675-5d9875294a94*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Succeeded","startTime":"2024-11-20T11:18:28.098364Z","endTime":"2024-11-20T11:18:45.1751407Z","properties":null}' headers: cache-control: - no-cache content-length: - - '646' + - '645' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:43 GMT + - Wed, 20 Nov 2024 11:18:58 GMT etag: - - '"5000ad4e-0000-0800-0000-670f52430000"' + - '"9c153cd7-0000-0800-0000-673dc5950000"' expires: - '-1' pragma: @@ -1978,7 +1978,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 32C945AE23F843B48786589A819B69B1 Ref B: CO6AA3150220037 Ref C: 2024-10-16T05:42:43Z' + - 'Ref A: 64B065C08C2A457789D5DE4FB41951B5 Ref B: CO6AA3150217027 Ref C: 2024-11-20T11:18:59Z' status: code: 200 message: OK @@ -1996,13 +1996,13 @@ interactions: ParameterSetName: - --name --resource-group --encryption-identity User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:25.5765292Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:10.6604804Z"},"identity":{"principalId":"f8305ffe-573d-4ade-a3ec-9bb81a7fac04","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","clientId":"4095a352-29c5-4466-875a-dc5fe63e2dba"}}},"properties":{"dataPlaneURI":"14916564-8f28-42ea-96bb-0b676930af02.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/08f6f8796fe9458898e68e64862d73b3","identity":{"type":"SystemAssigned"}},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:50.3786218Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:28.0159545Z"},"identity":{"principalId":"9d52a6a6-009e-4aeb-bcde-667506d56895","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","clientId":"b1c0bfba-712f-4578-8987-884c9f9e4f23"}}},"properties":{"dataPlaneURI":"78f5dc79-b170-49bc-97e9-7428cb19ec94.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/7fc0e0717830433591dcfc77fae2c383","identity":{"type":"SystemAssigned"}},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2011,9 +2011,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:43 GMT + - Wed, 20 Nov 2024 11:18:58 GMT etag: - - '"c501697d-0000-0200-0000-670f52430000"' + - '"9703bc00-0000-0200-0000-673dc5950000"' expires: - '-1' pragma: @@ -2029,7 +2029,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4F7247BB6BC7408981022993C6D5E15C Ref B: CO6AA3150219029 Ref C: 2024-10-16T05:42:43Z' + - 'Ref A: F19083C8462F42FBA0D66114C401DD2E Ref B: CO6AA3150217027 Ref C: 2024-11-20T11:18:59Z' status: code: 200 message: OK @@ -2047,13 +2047,13 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:25.5765292Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:10.6604804Z"},"identity":{"principalId":"f8305ffe-573d-4ade-a3ec-9bb81a7fac04","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","clientId":"4095a352-29c5-4466-875a-dc5fe63e2dba"}}},"properties":{"dataPlaneURI":"14916564-8f28-42ea-96bb-0b676930af02.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/08f6f8796fe9458898e68e64862d73b3","identity":{"type":"SystemAssigned"}},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:50.3786218Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:28.0159545Z"},"identity":{"principalId":"9d52a6a6-009e-4aeb-bcde-667506d56895","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","clientId":"b1c0bfba-712f-4578-8987-884c9f9e4f23"}}},"properties":{"dataPlaneURI":"78f5dc79-b170-49bc-97e9-7428cb19ec94.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/7fc0e0717830433591dcfc77fae2c383","identity":{"type":"SystemAssigned"}},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2062,9 +2062,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:44 GMT + - Wed, 20 Nov 2024 11:18:59 GMT etag: - - '"c501697d-0000-0200-0000-670f52430000"' + - '"9703bc00-0000-0200-0000-673dc5950000"' expires: - '-1' pragma: @@ -2080,7 +2080,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8DBA47561A7B444D8AE6067389A3303B Ref B: CO6AA3150220019 Ref C: 2024-10-16T05:42:44Z' + - 'Ref A: BFA94EADCF494F5A9091C68332F63377 Ref B: CO6AA3150219031 Ref C: 2024-11-20T11:19:00Z' status: code: 200 message: OK @@ -2098,23 +2098,23 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","tags":{"test":"test"},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:39:17.3087825Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:59.3471747Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"81b14425-6f28-40c8-8907-f7875c957050.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","tags":{"test":"test"},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:40.9697238Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:24.395109Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"3bacfe41-dc85-4f61-82c1-8843b0c7657a.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '690' + - '689' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:44 GMT + - Wed, 20 Nov 2024 11:18:59 GMT etag: - - '"c5017179-0000-0200-0000-670f51f70000"' + - '"9603c4ff-0000-0200-0000-673dc54f0000"' expires: - '-1' pragma: @@ -2130,7 +2130,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 54EF003628E949D5B9956D20F6BC1E10 Ref B: CO6AA3150220011 Ref C: 2024-10-16T05:42:44Z' + - 'Ref A: 100F237783FA43768B1BE3587D514FFD Ref B: CO6AA3150217031 Ref C: 2024-11-20T11:19:00Z' status: code: 200 message: OK @@ -2148,22 +2148,22 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests?api-version=2022-12-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","tags":{"test":"test"},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:39:17.3087825Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:59.3471747Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"81b14425-6f28-40c8-8907-f7875c957050.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:25.5765292Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:10.6604804Z"},"identity":{"principalId":"f8305ffe-573d-4ade-a3ec-9bb81a7fac04","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"7aedcd17-344a-41c3-a30d-0b62b78213dc","clientId":"4095a352-29c5-4466-875a-dc5fe63e2dba"}}},"properties":{"dataPlaneURI":"14916564-8f28-42ea-96bb-0b676930af02.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/08f6f8796fe9458898e68e64862d73b3","identity":{"type":"SystemAssigned"}},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","name":"load-test000003","type":"microsoft.loadtestservice/loadtests","location":"westus2","tags":{"test":"test"},"systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:40.9697238Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:24.395109Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"3bacfe41-dc85-4f61-82c1-8843b0c7657a.westus2.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","name":"load-test000004","type":"microsoft.loadtestservice/loadtests","location":"westus2","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:50.3786218Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:28.0159545Z"},"identity":{"principalId":"9d52a6a6-009e-4aeb-bcde-667506d56895","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_load_testing000001/providers/microsoft.managedidentity/userassignedidentities/clitestid1":{"principalId":"e0791ab5-9087-4a5b-a3e7-8f67f33c1e5b","clientId":"b1c0bfba-712f-4578-8987-884c9f9e4f23"}}},"properties":{"dataPlaneURI":"78f5dc79-b170-49bc-97e9-7428cb19ec94.westus2.cnt-prod.loadtesting.azure.com","encryption":{"keyUrl":"https://clitest000002.vault.azure.net/keys/testkey1/7fc0e0717830433591dcfc77fae2c383","identity":{"type":"SystemAssigned"}},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '1950' + - '1949' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:44 GMT + - Wed, 20 Nov 2024 11:18:59 GMT expires: - '-1' pragma: @@ -2179,7 +2179,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FC9989F80B0D490BA7EC357C2C8495E0 Ref B: CO6AA3150219019 Ref C: 2024-10-16T05:42:45Z' + - 'Ref A: B56B18F6C37B4D728806290103A9ED0E Ref B: CO6AA3150219017 Ref C: 2024-11-20T11:19:00Z' status: code: 200 message: OK @@ -2199,7 +2199,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003?api-version=2022-12-01 response: @@ -2209,7 +2209,7 @@ interactions: api-supported-versions: - 2022-12-01, 2023-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646541660054955&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=8iBj_835273R7gYBIYFGMVjdEPHGEhM_vZmdvYo-zbzx-zTHc1VWl-j9KOnmhhmqpYwlagDKxtuDsI3sdp7lJqV-ZeY-wWVxsclXgNQT8DnENEXxdz_f7bN0x6ZEIUh-lOgJtF_34N6UrteDyxUS_0kMf5l332TghcLHB32sh-eEqEIRWRzsAZ_IyBIelCQb0hIjb6Zqsc0NiOGIQ7pX5Y7mkem33aUYaK4D570BQ09AUhWow_sXe0kqdpuPQFLOsOrW2-NENKjeBVvpiwVh60ZI-VpRVNDrg4Yuw9fFm1P9PYeAaf9cTLPVjULPNOkKQeNPVi4Ipax4SQ6Y7rpetQ&h=flrBqKqfjKWF4MHRp0CLNGiVdOkMLYkLU1HAPzwBljA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676983420661891&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=cv9yyGOQqP2Hu79ywiXUuZES2DT_EQH8hjwFDOa_-POwjQRi1QJxWjA1wdstQkPDNm0z9o_MeGsRfAaWIKUgV85eeGO3ChlQCgDYRpqBN1hABD0CQMVqv-nQnhd9LHH5_XGC7obv6GOFkDw_YSjo838zy5ilg0rGuNunpcCkMiFHj3KNP1XUOvTp-yPnbRm8ggmBzUpdBBG2yZq7NffgRv9rgvtEAPOovr1ljDXPI1mgtvtoC8RS-bM3vt9vTDXjxDlMZgavAgy1dFGkTeMny7vnidEFlyCUBeS5f8poS98CILyaES_Y508M5Uzvt8Vx_kJCNr0ec1o9f5TDHuk4Ag&h=j5n8Ok8-vk_ZoOveVgz6_B9yqXi2kQgPQJbOiIS0GsA cache-control: - no-cache content-length: @@ -2217,21 +2217,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:45 GMT + - Wed, 20 Nov 2024 11:19:01 GMT etag: - - '"33002f63-0000-0800-0000-670f52550000"' + - '"5d0267cb-0000-0800-0000-673dc5a60000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646541660211168&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=ss8C9KdWaHI4DH-i3xvhtaE4Jat-aeS4IF6YSl7oXaMxt8Vn4iXUwkTTsmJ-m2Qv5M-OID3bcLTm0rSFvFkIbgLkLJOHahzfiAxCU3M8FApOiwD1JXdIyLz-Nv72IZWXB4mYEtRMTMiDpBxF9Q6bveibyx24QVXHbJ2R5hOtTyZDpTDdkDCwMls1orLRXojvvFHE3nnEkJf6scRcBJPPF98cYFPg7jIjCUpFIdMpI4kSstHRc6aLHltAJ1LiPMUnDqYSrk96cpDIZ9bZcPgaOAA7oHz6dB44HUqwHvxWPY337CnF0G-_xjBk6I6fPxVx_oSBZ7vh4FJJ9p-3KaldfQ&h=1p2Ff7nf6BoJeBn2kD78wv1cEe3vBLzJOeUuVLCugcM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676983420818111&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=RqEBxmgRhh7wis35-obga89_yqTI2JC-z1bGu7ieXqj9LNGCFzolx2DYPtGwQuh8jYfWz2ITA7CF0HlAILU9eHnUimJdHnIYFWFnE-RslggsAYvyWsIgx9o1e64UOaOh-Lji3seChtN28JCKlkEwqK_DRbKJcvzNYV_UZZ_5UohbBj0XLwflNER61PHXFsfTTd-UU7SvxpaI0-tg8ktX4pv_m-WM-0jaefLT9OLiqaV9x8MPZYBl43E5Eo773L4bryMaubBeq3AXQAir1K-pJ7dmQ_juHIwZlm7D1PHg6Bj6CovfxcNba8iC-nnf0mKA7kjGoRwUBvylnmJND3YYcQ&h=uO2Bn2G0rbzsvKuP50Zs0UOwIENv_qcT1Fb_Q94KVys mise-correlation-id: - - a00b805d-dc58-4d62-a608-7f7e306a01ef + - 6128da74-2c42-43bd-aa3a-078e8fa309a1 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054245Z-165bfd566cfvnfldckvfavskxn00000007d0000000007b2x + - 20241120T111901Z-17b7777dc45r6wskhC1CO1w1ks0000000fhg00000000b9g3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2243,7 +2243,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 6EE03904A7B542BA871C4AE523649738 Ref B: CO6AA3150218049 Ref C: 2024-10-16T05:42:45Z' + - 'Ref A: B9DD0D331A1843EA88CDDE1138042CD7 Ref B: CO6AA3150219009 Ref C: 2024-11-20T11:19:01Z' status: code: 202 message: Accepted @@ -2261,15 +2261,15 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646541660054955&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=8iBj_835273R7gYBIYFGMVjdEPHGEhM_vZmdvYo-zbzx-zTHc1VWl-j9KOnmhhmqpYwlagDKxtuDsI3sdp7lJqV-ZeY-wWVxsclXgNQT8DnENEXxdz_f7bN0x6ZEIUh-lOgJtF_34N6UrteDyxUS_0kMf5l332TghcLHB32sh-eEqEIRWRzsAZ_IyBIelCQb0hIjb6Zqsc0NiOGIQ7pX5Y7mkem33aUYaK4D570BQ09AUhWow_sXe0kqdpuPQFLOsOrW2-NENKjeBVvpiwVh60ZI-VpRVNDrg4Yuw9fFm1P9PYeAaf9cTLPVjULPNOkKQeNPVi4Ipax4SQ6Y7rpetQ&h=flrBqKqfjKWF4MHRp0CLNGiVdOkMLYkLU1HAPzwBljA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676983420661891&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=cv9yyGOQqP2Hu79ywiXUuZES2DT_EQH8hjwFDOa_-POwjQRi1QJxWjA1wdstQkPDNm0z9o_MeGsRfAaWIKUgV85eeGO3ChlQCgDYRpqBN1hABD0CQMVqv-nQnhd9LHH5_XGC7obv6GOFkDw_YSjo838zy5ilg0rGuNunpcCkMiFHj3KNP1XUOvTp-yPnbRm8ggmBzUpdBBG2yZq7NffgRv9rgvtEAPOovr1ljDXPI1mgtvtoC8RS-bM3vt9vTDXjxDlMZgavAgy1dFGkTeMny7vnidEFlyCUBeS5f8poS98CILyaES_Y508M5Uzvt8Vx_kJCNr0ec1o9f5TDHuk4Ag&h=j5n8Ok8-vk_ZoOveVgz6_B9yqXi2kQgPQJbOiIS0GsA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","name":"c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Deleting","startTime":"2024-10-16T05:42:45.9658345Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","name":"6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Deleting","startTime":"2024-11-20T11:19:01.4238855Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/westus2/operationStatuses/c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646541661850398&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=f-kA2thX52eBm7NHwg3tkf4ykXtmW8O3IZtjJqHBCwi8wzLxbaW8DIGKKpOO_a6fq80JMRM0BIaOXV5mgu_c4aIbZMVQ2U-ix1e6aLkIkounzxRd4mYMlJxuXDWrW8Yy7K-J4hL27q5iOHpykP6_6xmYbxQ2ZLAgj485EoHTceXB2wwl0rwWeLzFuMDk6ArlZ40UDDnW2cQNALDxWyis9i7jy5HCpnWwadNuFZhdigrMrBfBWay_Ud2gfB4lCzZ6CRzrOllFZ8_qxRQBXNqdsABbDCQGEJL2y6GBzcVXTGxsedYDMq6DRziO9DzWRgq8EQO8ZnSdkw4O6gM3BqG1ug&h=C0WL2maRj8GxAUgOJE6P-gNlj0ER8KeOMRecMdDUQis + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/westus2/operationStatuses/6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676983421797971&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=PtqvHBFpHDNqu9i-cPK6APAVdArmwy3hWXjQjkdvqlXqa41YB3mvLeRrc0EoYY-GCZnuy_om_7eqpX86EcjNGxZUKMNEKvmhjPjzrOfkkZWeTdTM5qEx4A3OM-9Zhw19HrkoIjBxFD75Ww4hSsXbgyvVrgpqKahUukzsDwhboc0oqgo2o1Tj4srFpxUDfaNbGNLwSwVFoMmXJNB9CUEF54UrQ-vtidn3cRPl5CTgrHQMaBzWpAzkV64dhF4OGxAwGZ4x9zdvwxDF2diuMPuysYj6LiUHIqoalS4XYgNEpYDDPzpJdxKOSNVEPZRM8TZi1Sbo18yaDrLuOa9-l2GjFA&h=rTjRaZ4FLnnyP7Lz8uHTR8GHVEcn5KNQNjJWqmOTiJA cache-control: - no-cache content-length: @@ -2277,13 +2277,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:45 GMT + - Wed, 20 Nov 2024 11:19:01 GMT etag: - - '"50005f51-0000-0800-0000-670f52550000"' + - '"9c15cedb-0000-0800-0000-673dc5a50000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/westus2/operationStatuses/c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646541661850398&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=f-kA2thX52eBm7NHwg3tkf4ykXtmW8O3IZtjJqHBCwi8wzLxbaW8DIGKKpOO_a6fq80JMRM0BIaOXV5mgu_c4aIbZMVQ2U-ix1e6aLkIkounzxRd4mYMlJxuXDWrW8Yy7K-J4hL27q5iOHpykP6_6xmYbxQ2ZLAgj485EoHTceXB2wwl0rwWeLzFuMDk6ArlZ40UDDnW2cQNALDxWyis9i7jy5HCpnWwadNuFZhdigrMrBfBWay_Ud2gfB4lCzZ6CRzrOllFZ8_qxRQBXNqdsABbDCQGEJL2y6GBzcVXTGxsedYDMq6DRziO9DzWRgq8EQO8ZnSdkw4O6gM3BqG1ug&h=C0WL2maRj8GxAUgOJE6P-gNlj0ER8KeOMRecMdDUQis + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/westus2/operationStatuses/6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676983421797971&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=PtqvHBFpHDNqu9i-cPK6APAVdArmwy3hWXjQjkdvqlXqa41YB3mvLeRrc0EoYY-GCZnuy_om_7eqpX86EcjNGxZUKMNEKvmhjPjzrOfkkZWeTdTM5qEx4A3OM-9Zhw19HrkoIjBxFD75Ww4hSsXbgyvVrgpqKahUukzsDwhboc0oqgo2o1Tj4srFpxUDfaNbGNLwSwVFoMmXJNB9CUEF54UrQ-vtidn3cRPl5CTgrHQMaBzWpAzkV64dhF4OGxAwGZ4x9zdvwxDF2diuMPuysYj6LiUHIqoalS4XYgNEpYDDPzpJdxKOSNVEPZRM8TZi1Sbo18yaDrLuOa9-l2GjFA&h=rTjRaZ4FLnnyP7Lz8uHTR8GHVEcn5KNQNjJWqmOTiJA pragma: - no-cache strict-transport-security: @@ -2295,7 +2295,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2D1B564908124005812CE4D0837C6C21 Ref B: CO6AA3150220031 Ref C: 2024-10-16T05:42:46Z' + - 'Ref A: 86355ACFDFFF490B8B15FF286DC45B4D Ref B: CO6AA3150219009 Ref C: 2024-11-20T11:19:02Z' status: code: 202 message: Accepted @@ -2313,12 +2313,12 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646541660054955&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=8iBj_835273R7gYBIYFGMVjdEPHGEhM_vZmdvYo-zbzx-zTHc1VWl-j9KOnmhhmqpYwlagDKxtuDsI3sdp7lJqV-ZeY-wWVxsclXgNQT8DnENEXxdz_f7bN0x6ZEIUh-lOgJtF_34N6UrteDyxUS_0kMf5l332TghcLHB32sh-eEqEIRWRzsAZ_IyBIelCQb0hIjb6Zqsc0NiOGIQ7pX5Y7mkem33aUYaK4D570BQ09AUhWow_sXe0kqdpuPQFLOsOrW2-NENKjeBVvpiwVh60ZI-VpRVNDrg4Yuw9fFm1P9PYeAaf9cTLPVjULPNOkKQeNPVi4Ipax4SQ6Y7rpetQ&h=flrBqKqfjKWF4MHRp0CLNGiVdOkMLYkLU1HAPzwBljA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676983420661891&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=cv9yyGOQqP2Hu79ywiXUuZES2DT_EQH8hjwFDOa_-POwjQRi1QJxWjA1wdstQkPDNm0z9o_MeGsRfAaWIKUgV85eeGO3ChlQCgDYRpqBN1hABD0CQMVqv-nQnhd9LHH5_XGC7obv6GOFkDw_YSjo838zy5ilg0rGuNunpcCkMiFHj3KNP1XUOvTp-yPnbRm8ggmBzUpdBBG2yZq7NffgRv9rgvtEAPOovr1ljDXPI1mgtvtoC8RS-bM3vt9vTDXjxDlMZgavAgy1dFGkTeMny7vnidEFlyCUBeS5f8poS98CILyaES_Y508M5Uzvt8Vx_kJCNr0ec1o9f5TDHuk4Ag&h=j5n8Ok8-vk_ZoOveVgz6_B9yqXi2kQgPQJbOiIS0GsA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","name":"c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Succeeded","startTime":"2024-10-16T05:42:45.9658345Z","endTime":"2024-10-16T05:42:46.2940686Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","name":"6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Succeeded","startTime":"2024-11-20T11:19:01.4238855Z","endTime":"2024-11-20T11:19:02.4591182Z","properties":null}' headers: cache-control: - no-cache @@ -2327,9 +2327,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:15 GMT + - Wed, 20 Nov 2024 11:19:31 GMT etag: - - '"50007251-0000-0800-0000-670f52560000"' + - '"9c1541dc-0000-0800-0000-673dc5a60000"' expires: - '-1' pragma: @@ -2343,7 +2343,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 82C563085B01439781E4AF1E5C2DC3E5 Ref B: CO6AA3150219009 Ref C: 2024-10-16T05:43:16Z' + - 'Ref A: 180227D70CB54CFF8E465135DA95245F Ref B: CO6AA3150219009 Ref C: 2024-11-20T11:19:32Z' status: code: 200 message: OK @@ -2361,12 +2361,12 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888?api-version=2022-12-01&t=638646541660211168&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=ss8C9KdWaHI4DH-i3xvhtaE4Jat-aeS4IF6YSl7oXaMxt8Vn4iXUwkTTsmJ-m2Qv5M-OID3bcLTm0rSFvFkIbgLkLJOHahzfiAxCU3M8FApOiwD1JXdIyLz-Nv72IZWXB4mYEtRMTMiDpBxF9Q6bveibyx24QVXHbJ2R5hOtTyZDpTDdkDCwMls1orLRXojvvFHE3nnEkJf6scRcBJPPF98cYFPg7jIjCUpFIdMpI4kSstHRc6aLHltAJ1LiPMUnDqYSrk96cpDIZ9bZcPgaOAA7oHz6dB44HUqwHvxWPY337CnF0G-_xjBk6I6fPxVx_oSBZ7vh4FJJ9p-3KaldfQ&h=1p2Ff7nf6BoJeBn2kD78wv1cEe3vBLzJOeUuVLCugcM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3?api-version=2022-12-01&t=638676983420818111&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=RqEBxmgRhh7wis35-obga89_yqTI2JC-z1bGu7ieXqj9LNGCFzolx2DYPtGwQuh8jYfWz2ITA7CF0HlAILU9eHnUimJdHnIYFWFnE-RslggsAYvyWsIgx9o1e64UOaOh-Lji3seChtN28JCKlkEwqK_DRbKJcvzNYV_UZZ_5UohbBj0XLwflNER61PHXFsfTTd-UU7SvxpaI0-tg8ktX4pv_m-WM-0jaefLT9OLiqaV9x8MPZYBl43E5Eo773L4bryMaubBeq3AXQAir1K-pJ7dmQ_juHIwZlm7D1PHg6Bj6CovfxcNba8iC-nnf0mKA7kjGoRwUBvylnmJND3YYcQ&h=uO2Bn2G0rbzsvKuP50Zs0UOwIENv_qcT1Fb_Q94KVys response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","name":"c03d136f-22b5-442b-9123-9b6075457cc4*F349DF2720AD41B6912EF9D9EB8BD4164221D4C4D169D8787D23B55A6A56D888","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Succeeded","startTime":"2024-10-16T05:42:45.9658345Z","endTime":"2024-10-16T05:42:46.2940686Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","name":"6569e94d-1909-48db-b22f-e9002931bbb2*96C2311C4F356EF6F42B53AE4C6DBA6AE972AA2987B9F57BB0F3FD517AB3D9A3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000003","status":"Succeeded","startTime":"2024-11-20T11:19:01.4238855Z","endTime":"2024-11-20T11:19:02.4591182Z","properties":null}' headers: cache-control: - no-cache @@ -2375,9 +2375,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:16 GMT + - Wed, 20 Nov 2024 11:19:31 GMT etag: - - '"50007251-0000-0800-0000-670f52560000"' + - '"9c1541dc-0000-0800-0000-673dc5a60000"' expires: - '-1' pragma: @@ -2391,7 +2391,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9F55497411CB4EED8A0C1C500A6FEDEC Ref B: CO6AA3150219033 Ref C: 2024-10-16T05:43:16Z' + - 'Ref A: 8DDF48E4EED94E7ABD7980C1B8CB5B57 Ref B: CO6AA3150219009 Ref C: 2024-11-20T11:19:32Z' status: code: 200 message: OK @@ -2411,7 +2411,7 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004?api-version=2022-12-01 response: @@ -2421,7 +2421,7 @@ interactions: api-supported-versions: - 2022-12-01, 2023-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541972217438&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=R_-auuuWvSoRU32yNKsoNWF7rrULXTAJEmQgU-_K1tSqgVdTnLwNMvgOXkA23H9sGhUeIllDT1H76rbLGOfDjTK2krtyBebzGI5-OKFHcyTYQdD0jZbv9YPNCM7m8DU3dwuq9zPDc63iBXvl0eyl6InnYKcEP0-ufGl8KcAzNJYsQdcznK2A_49NPxzSULm2aNa6iQmKsBTArAZMlrW9KvgnZaiKN5YQzXvFVYzqOChYdTHWU43KMIGaGJGsBXUqer_sb9d9NqSsYpPcUG-Crh6IQzNJsozywi2zX3Z_wNucQmDDWhQw64R0WjbX5GvCoT_9KzAdyc-xczmkB6X7oQ&h=FW0qwGt2qBavw90d28G4TOvygZ-TLkMaLHt9inEX3uo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983728901600&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=3igeIYKNcTwHsTxXd3Kptn3MlP3EAHBd21EsgfcsU41M0J32sKCBjuJtvds23PslxIWLNjEOf3uBePB9pLG9cUb9wbCBmnIxvLIGpAGf3HUpOWFPjFTFRrvWpxsfWnTvPqNjNbfL-SZKaGGxC_ITMziW0dqUglnUVUw9K7kR2q8hi5K8RYEcd8VR3jwvEjG3VyRKKHvVFARBViO9eLeBlM45Mck-AhQpLWToYn7ZuLQHQfkjO_Up2GGw6MG4kaOEtM-k2wfWVlXgC4_UKRvVKrBGU8I_nPKP_o-wumbI1SNCdYplc4DC06J7t8DSk5apaLMSLqn0M4OLCX3LtX_SuA&h=OlN1lG2DIq8EAMY4sEAHslp65V-n7KfW7hF9xbqQlBE cache-control: - no-cache content-length: @@ -2429,21 +2429,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:16 GMT + - Wed, 20 Nov 2024 11:19:32 GMT etag: - - '"33007367-0000-0800-0000-670f52750000"' + - '"5d02e4cb-0000-0800-0000-673dc5c40000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541972217438&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=R_-auuuWvSoRU32yNKsoNWF7rrULXTAJEmQgU-_K1tSqgVdTnLwNMvgOXkA23H9sGhUeIllDT1H76rbLGOfDjTK2krtyBebzGI5-OKFHcyTYQdD0jZbv9YPNCM7m8DU3dwuq9zPDc63iBXvl0eyl6InnYKcEP0-ufGl8KcAzNJYsQdcznK2A_49NPxzSULm2aNa6iQmKsBTArAZMlrW9KvgnZaiKN5YQzXvFVYzqOChYdTHWU43KMIGaGJGsBXUqer_sb9d9NqSsYpPcUG-Crh6IQzNJsozywi2zX3Z_wNucQmDDWhQw64R0WjbX5GvCoT_9KzAdyc-xczmkB6X7oQ&h=FW0qwGt2qBavw90d28G4TOvygZ-TLkMaLHt9inEX3uo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983728901600&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=3igeIYKNcTwHsTxXd3Kptn3MlP3EAHBd21EsgfcsU41M0J32sKCBjuJtvds23PslxIWLNjEOf3uBePB9pLG9cUb9wbCBmnIxvLIGpAGf3HUpOWFPjFTFRrvWpxsfWnTvPqNjNbfL-SZKaGGxC_ITMziW0dqUglnUVUw9K7kR2q8hi5K8RYEcd8VR3jwvEjG3VyRKKHvVFARBViO9eLeBlM45Mck-AhQpLWToYn7ZuLQHQfkjO_Up2GGw6MG4kaOEtM-k2wfWVlXgC4_UKRvVKrBGU8I_nPKP_o-wumbI1SNCdYplc4DC06J7t8DSk5apaLMSLqn0M4OLCX3LtX_SuA&h=OlN1lG2DIq8EAMY4sEAHslp65V-n7KfW7hF9xbqQlBE mise-correlation-id: - - 44c06679-da26-42a8-aac5-559a387cb3fd + - ef10bf51-03b3-462c-8ac4-644d6ad44e4e pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054317Z-18489d46dcc4mwx2ddastu82g800000007v0000000003vsf + - 20241120T111932Z-17b7777dc45rqdl4hC1CO1ksan0000000cug00000000rspx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2455,7 +2455,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: F872E43D2B624E41A65B97E36491289A Ref B: CO6AA3150219025 Ref C: 2024-10-16T05:43:16Z' + - 'Ref A: 835D013E5FD545F8951EA8C58852C9E0 Ref B: CO6AA3150218031 Ref C: 2024-11-20T11:19:32Z' status: code: 202 message: Accepted @@ -2473,29 +2473,29 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541972217438&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=R_-auuuWvSoRU32yNKsoNWF7rrULXTAJEmQgU-_K1tSqgVdTnLwNMvgOXkA23H9sGhUeIllDT1H76rbLGOfDjTK2krtyBebzGI5-OKFHcyTYQdD0jZbv9YPNCM7m8DU3dwuq9zPDc63iBXvl0eyl6InnYKcEP0-ufGl8KcAzNJYsQdcznK2A_49NPxzSULm2aNa6iQmKsBTArAZMlrW9KvgnZaiKN5YQzXvFVYzqOChYdTHWU43KMIGaGJGsBXUqer_sb9d9NqSsYpPcUG-Crh6IQzNJsozywi2zX3Z_wNucQmDDWhQw64R0WjbX5GvCoT_9KzAdyc-xczmkB6X7oQ&h=FW0qwGt2qBavw90d28G4TOvygZ-TLkMaLHt9inEX3uo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983728901600&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=3igeIYKNcTwHsTxXd3Kptn3MlP3EAHBd21EsgfcsU41M0J32sKCBjuJtvds23PslxIWLNjEOf3uBePB9pLG9cUb9wbCBmnIxvLIGpAGf3HUpOWFPjFTFRrvWpxsfWnTvPqNjNbfL-SZKaGGxC_ITMziW0dqUglnUVUw9K7kR2q8hi5K8RYEcd8VR3jwvEjG3VyRKKHvVFARBViO9eLeBlM45Mck-AhQpLWToYn7ZuLQHQfkjO_Up2GGw6MG4kaOEtM-k2wfWVlXgC4_UKRvVKrBGU8I_nPKP_o-wumbI1SNCdYplc4DC06J7t8DSk5apaLMSLqn0M4OLCX3LtX_SuA&h=OlN1lG2DIq8EAMY4sEAHslp65V-n7KfW7hF9xbqQlBE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","name":"b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Deleting","startTime":"2024-10-16T05:43:17.1517167Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","name":"09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Deleting","startTime":"2024-11-20T11:19:32.799849Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/westus2/operationStatuses/b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541973976025&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=Pk6PUDdfVEvLU0lHRUpHAZ5VHbbeogjNr9v34zP7PZHPDqnmmCV06oyv06HtdYQmtwqW8uh8Ia77CKWkw09rBwHJPTWyuhx4FUvYXMIRZRfdaeDS5mpDh1UtpdQljjrh9o6t-srigKjmvWxxJZ5BG-YbKKFGg3YJd2wGhnRVgfvANQ-o_ygmlZxZRRiWPRA9606YN73_54rD1U8sLb0T-Yfi8Q7mY_II0U6l5djjSGvUyoBkj5niRTRzJQzFwukeov1z06CDUL2rR3UlwxCidMt-hBLhqi-6INfuHbx9MzJEYaq8pXXHEsbSGjKD2op8_cQ_cnQIKeP6r6_y1vTfQg&h=ap-h_0y80ZOszFxseoXSABRQ8bmVG4u-65YdqlMXBL0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/westus2/operationStatuses/09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983729654103&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=ZI05YuWePZA95OVM0F0TohnmI3rVDMyQkacxpynyJI-ze_wOfFcgyBpxr9uB6e7mHNyZ2ygjkjoj2K848VBw2FiFveuEqGbc2WvR7sL7vH75Ch0PH0ZsppDyu0WH2jZn_TqRWQ4z7cROaLnbkr9UgrDh-AXDmkijxj1R6ajHhJH017JEDYyLxXoSsrwX3G5PwtCXkUhRds7xX_dbiknd4L4yRZ_V5vBMp_fg24bFTGFJhvySioBIk5rghqLQWPJlvCz4FNYXIm3irrMBua8an9kmM5hCqI7xEU30xeiw6bEQaIZxQObBFZSXR0BXLV2g4kJ3rSkMUh2pgS8r0j-v-A&h=9d9hgLbmzyBcs83O5dShBOiVjggtW79fDls0JReXJKs cache-control: - no-cache content-length: - - '586' + - '585' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:16 GMT + - Wed, 20 Nov 2024 11:19:32 GMT etag: - - '"50003656-0000-0800-0000-670f52750000"' + - '"9c1565e6-0000-0800-0000-673dc5c40000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/westus2/operationStatuses/b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541973976025&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=Pk6PUDdfVEvLU0lHRUpHAZ5VHbbeogjNr9v34zP7PZHPDqnmmCV06oyv06HtdYQmtwqW8uh8Ia77CKWkw09rBwHJPTWyuhx4FUvYXMIRZRfdaeDS5mpDh1UtpdQljjrh9o6t-srigKjmvWxxJZ5BG-YbKKFGg3YJd2wGhnRVgfvANQ-o_ygmlZxZRRiWPRA9606YN73_54rD1U8sLb0T-Yfi8Q7mY_II0U6l5djjSGvUyoBkj5niRTRzJQzFwukeov1z06CDUL2rR3UlwxCidMt-hBLhqi-6INfuHbx9MzJEYaq8pXXHEsbSGjKD2op8_cQ_cnQIKeP6r6_y1vTfQg&h=ap-h_0y80ZOszFxseoXSABRQ8bmVG4u-65YdqlMXBL0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/westus2/operationStatuses/09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983729810981&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=S9mM0o-9V8SRDz7jq8DPhhElq4fuFeioiWYESg-CykCnzs5g1Ra-ntbhfaeZevn-FCwSsz-1fLCYJjLJJpJTB4W3P7FbsuvgR3LuHilYNtCl20sYS31uhHrL6cGCisawGnVwEOcTZHQzC4bZaRVAmlQIlZYwMf1h_FxhxYEzpBupWT2_aQ6mLRtCGoEHMOS4sstBwTiiOR8iukFLIOAM0k160iieqjnSMpPOdoq6stqIkfoG6n0stkra_vHg5e7lV71PQrzNkCAytLmVZoXZYUb-m7UWxznmNd2L23kQc4iIYbFp-abgciC1PQiLA6Mx1ArxnCvcpYVjxgSb2qlbZA&h=2I66rnH3KJCDBUxx3w9wp3Xxx5bUqH2qqhK07HOO8mE pragma: - no-cache strict-transport-security: @@ -2507,7 +2507,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9B206D586F5F42C6A6142733350D9C71 Ref B: CO6AA3150218039 Ref C: 2024-10-16T05:43:17Z' + - 'Ref A: 6869B9B665B94F55A9C736B612DE8069 Ref B: CO6AA3150218031 Ref C: 2024-11-20T11:19:32Z' status: code: 202 message: Accepted @@ -2525,23 +2525,23 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541972217438&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=R_-auuuWvSoRU32yNKsoNWF7rrULXTAJEmQgU-_K1tSqgVdTnLwNMvgOXkA23H9sGhUeIllDT1H76rbLGOfDjTK2krtyBebzGI5-OKFHcyTYQdD0jZbv9YPNCM7m8DU3dwuq9zPDc63iBXvl0eyl6InnYKcEP0-ufGl8KcAzNJYsQdcznK2A_49NPxzSULm2aNa6iQmKsBTArAZMlrW9KvgnZaiKN5YQzXvFVYzqOChYdTHWU43KMIGaGJGsBXUqer_sb9d9NqSsYpPcUG-Crh6IQzNJsozywi2zX3Z_wNucQmDDWhQw64R0WjbX5GvCoT_9KzAdyc-xczmkB6X7oQ&h=FW0qwGt2qBavw90d28G4TOvygZ-TLkMaLHt9inEX3uo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983728901600&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=3igeIYKNcTwHsTxXd3Kptn3MlP3EAHBd21EsgfcsU41M0J32sKCBjuJtvds23PslxIWLNjEOf3uBePB9pLG9cUb9wbCBmnIxvLIGpAGf3HUpOWFPjFTFRrvWpxsfWnTvPqNjNbfL-SZKaGGxC_ITMziW0dqUglnUVUw9K7kR2q8hi5K8RYEcd8VR3jwvEjG3VyRKKHvVFARBViO9eLeBlM45Mck-AhQpLWToYn7ZuLQHQfkjO_Up2GGw6MG4kaOEtM-k2wfWVlXgC4_UKRvVKrBGU8I_nPKP_o-wumbI1SNCdYplc4DC06J7t8DSk5apaLMSLqn0M4OLCX3LtX_SuA&h=OlN1lG2DIq8EAMY4sEAHslp65V-n7KfW7hF9xbqQlBE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","name":"b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Succeeded","startTime":"2024-10-16T05:43:17.1517167Z","endTime":"2024-10-16T05:43:18.4158583Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","name":"09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Succeeded","startTime":"2024-11-20T11:19:32.799849Z","endTime":"2024-11-20T11:19:33.1658465Z","properties":null}' headers: cache-control: - no-cache content-length: - - '646' + - '645' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:46 GMT + - Wed, 20 Nov 2024 11:20:02 GMT etag: - - '"50006056-0000-0800-0000-670f52760000"' + - '"9c1585e6-0000-0800-0000-673dc5c50000"' expires: - '-1' pragma: @@ -2555,7 +2555,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2703E5C83F874C58BDC29F57A2F8302D Ref B: CO6AA3150219031 Ref C: 2024-10-16T05:43:47Z' + - 'Ref A: E36F8B445AC94FA78B15B46F23DCD601 Ref B: CO6AA3150218031 Ref C: 2024-11-20T11:20:03Z' status: code: 200 message: OK @@ -2573,23 +2573,23 @@ interactions: ParameterSetName: - --name --resource-group --yes User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD?api-version=2022-12-01&t=638646541972217438&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=R_-auuuWvSoRU32yNKsoNWF7rrULXTAJEmQgU-_K1tSqgVdTnLwNMvgOXkA23H9sGhUeIllDT1H76rbLGOfDjTK2krtyBebzGI5-OKFHcyTYQdD0jZbv9YPNCM7m8DU3dwuq9zPDc63iBXvl0eyl6InnYKcEP0-ufGl8KcAzNJYsQdcznK2A_49NPxzSULm2aNa6iQmKsBTArAZMlrW9KvgnZaiKN5YQzXvFVYzqOChYdTHWU43KMIGaGJGsBXUqer_sb9d9NqSsYpPcUG-Crh6IQzNJsozywi2zX3Z_wNucQmDDWhQw64R0WjbX5GvCoT_9KzAdyc-xczmkB6X7oQ&h=FW0qwGt2qBavw90d28G4TOvygZ-TLkMaLHt9inEX3uo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561?api-version=2022-12-01&t=638676983728901600&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=3igeIYKNcTwHsTxXd3Kptn3MlP3EAHBd21EsgfcsU41M0J32sKCBjuJtvds23PslxIWLNjEOf3uBePB9pLG9cUb9wbCBmnIxvLIGpAGf3HUpOWFPjFTFRrvWpxsfWnTvPqNjNbfL-SZKaGGxC_ITMziW0dqUglnUVUw9K7kR2q8hi5K8RYEcd8VR3jwvEjG3VyRKKHvVFARBViO9eLeBlM45Mck-AhQpLWToYn7ZuLQHQfkjO_Up2GGw6MG4kaOEtM-k2wfWVlXgC4_UKRvVKrBGU8I_nPKP_o-wumbI1SNCdYplc4DC06J7t8DSk5apaLMSLqn0M4OLCX3LtX_SuA&h=OlN1lG2DIq8EAMY4sEAHslp65V-n7KfW7hF9xbqQlBE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","name":"b7d03927-c39e-4b48-964b-2f7b24359a85*F433FFDD613DAE72DD522AE4DF2BDF471B94989E40AD20327965E51CDF54AABD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Succeeded","startTime":"2024-10-16T05:43:17.1517167Z","endTime":"2024-10-16T05:43:18.4158583Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.LoadTestService/locations/WESTUS2/operationStatuses/09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","name":"09632ae9-c48e-4629-a8e2-12c0c875403d*86F833F9B249E52C9D7707791F758C892BD26E004F8905A4C1803193883B6561","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_load_testing000001/providers/Microsoft.LoadTestService/loadTests/load-test000004","status":"Succeeded","startTime":"2024-11-20T11:19:32.799849Z","endTime":"2024-11-20T11:19:33.1658465Z","properties":null}' headers: cache-control: - no-cache content-length: - - '646' + - '645' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:46 GMT + - Wed, 20 Nov 2024 11:20:02 GMT etag: - - '"50006056-0000-0800-0000-670f52760000"' + - '"9c1585e6-0000-0800-0000-673dc5c50000"' expires: - '-1' pragma: @@ -2603,7 +2603,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 56378E2D17704C2D92288069E20C8D39 Ref B: CO6AA3150220027 Ref C: 2024-10-16T05:43:47Z' + - 'Ref A: CC8F9488DED541D792FC67ECB4841995 Ref B: CO6AA3150218031 Ref C: 2024-11-20T11:20:03Z' status: code: 200 message: OK diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_app_component.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_app_component.yaml index eb5054b9ebb..928c105644c 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_app_component.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_app_component.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003?api-version=2023-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-11-07T05:49:06.9587726Z","key2":"2024-11-07T05:49:06.9587726Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:49:07.0837694Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:49:07.0837694Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-07T05:49:06.8181507Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-11-20T11:20:47.3385818Z","key2":"2024-11-20T11:20:47.3385818Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-20T11:20:47.4167058Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-20T11:20:47.4167058Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-20T11:20:47.1823319Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json date: - - Thu, 07 Nov 2024 05:49:28 GMT + - Wed, 20 Nov 2024 11:21:06 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: ED3A4662D7224DF98F1727F515105E0F Ref B: MAA201060513037 Ref C: 2024-11-07T05:49:28Z' + - 'Ref A: EBC37A9FE18345E7AF72CEBA093D934E Ref B: CO6AA3150220019 Ref C: 2024-11-20T11:21:07Z' status: code: 200 message: OK @@ -55,23 +55,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:13.2686754Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:13.2686754Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:29 GMT + - Wed, 20 Nov 2024 11:21:07 GMT etag: - - '"13012699-0000-0200-0000-672c54c30000"' + - '"97037501-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -87,7 +87,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9FF47BD57635483AA0D90FE561FBA3E8 Ref B: MAA201060516039 Ref C: 2024-11-07T05:49:29Z' + - 'Ref A: A790DAA5EDDB4969BA2841EEEA5651EE Ref B: CO6AA3150219023 Ref C: 2024-11-20T11:21:07Z' status: code: 200 message: OK @@ -101,30 +101,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier app-component-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:49:31 GMT + - Wed, 20 Nov 2024 11:21:08 GMT mise-correlation-id: - - 3a828b14-e7b9-4fe9-9589-1365fdeb550e + - 3504e3f3-2297-4d52-a9c8-7d2778185996 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T054930Z-16998b5679fpf5b5hC1MAAqxag000000073000000000b9x1 + - 20241120T112108Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009w03 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -139,12 +140,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"c3e71f91-15a0-43fe-9076-72139307b321": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"d6e6a93d-f3af-4a29-bb1b-1dca031d7966": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "0e47e833-d363-4335-b9a0-ec461c665131": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "6bf2182c-ea7f-4cb0-b97a-9fd5837f077b": + "78"}, "bb57a332-fbb6-423f-8a7a-9fabff26eab0": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "19727991-9317-4601-acae-424c21e0163c": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -153,36 +155,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c3e71f91-15a0-43fe-9076-72139307b321":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0e47e833-d363-4335-b9a0-ec461c665131":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6bf2182c-ea7f-4cb0-b97a-9fd5837f077b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:31.987Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:49:31.987Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d6e6a93d-f3af-4a29-bb1b-1dca031d7966":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb57a332-fbb6-423f-8a7a-9fabff26eab0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"19727991-9317-4601-acae-424c21e0163c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:21:08.648Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:08.648Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1053' + - '1155' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:32 GMT + - Wed, 20 Nov 2024 11:21:08 GMT location: - - https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-03-01-preview + - https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 3c5eced3-4d01-44b5-91e0-2980e2b0a1d9 + - d33bc97d-2e18-469e-b941-3da827887caa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054931Z-16998b5679fpf5b5hC1MAAqxag000000073000000000b9xn + - 20241120T112108Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009w0d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -200,9 +203,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -210,7 +213,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -218,13 +222,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:32 GMT + - Wed, 20 Nov 2024 11:21:08 GMT mise-correlation-id: - - 0937819a-df54-49ba-9d0a-6c2a29cee2c8 + - 6f9c0505-13ef-48f5-8034-c6c48302fd5c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054932Z-16998b5679fpf5b5hC1MAAqxag000000073000000000b9y2 + - 20241120T112108Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009w0n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -249,33 +253,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/0b88b7be-ace2-4b22-97ec-e48e693eebf4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A32Z&ske=2024-11-07T12%3A49%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A32Z&sr=b&sp=r&sig=tbMjiWr0NV3I8eHrmkunwZIp%2FZmPsR2IKtpCdM6PMwo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T05:59:32.9176307Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b3b14c95-c216-43da-8b30-1cb90422a41b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A10Z&sr=b&sp=r&sig=5TfgOcMj07aGxhUUfmTg8gqaaP0rrD3WlJN7Mg2J7TM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:31:10.4483272Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:33 GMT + - Wed, 20 Nov 2024 11:21:10 GMT location: - - https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 96b32715-a512-43fc-badd-1284e556f257 + - bbc591b9-5617-4898-bb51-735112768aa9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054932Z-16998b5679fpf5b5hC1MAAqxag000000073000000000b9y9 + - 20241120T112108Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009w0s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -293,31 +298,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/0b88b7be-ace2-4b22-97ec-e48e693eebf4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A33Z&ske=2024-11-07T12%3A49%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A34Z&sr=b&sp=r&sig=6VGDGcQwaoBGMUzCLz%2FVFGys65yo6sRL0BOofDRYOMU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T05:59:34.6949811Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b3b14c95-c216-43da-8b30-1cb90422a41b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A10Z&sr=b&sp=r&sig=5TfgOcMj07aGxhUUfmTg8gqaaP0rrD3WlJN7Mg2J7TM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:31:10.5729051Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:34 GMT + - Wed, 20 Nov 2024 11:21:10 GMT mise-correlation-id: - - 23c853e3-d96c-4c93-95a7-7ae0f17b47cd + - 1fa6f714-c26f-4eda-91e7-eba6d805b6cc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054933Z-16998b5679fpf5b5hC1MAAqxag000000073000000000b9z0 + - 20241120T112110Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009w32 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -346,17 +352,18 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A35Z&ske=2024-11-07T21%3A49%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A35Z&sr=b&sp=r&sig=otZvdp%2F0IYcmbHLS0eU5H4%2BR1U6xO6SN4SmfORWIEAg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:35.2983022Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b07bef21-06fd-4659-91a0-dc51d36b7f28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A11Z&sr=b&sp=r&sig=n817YAOEREbV%2BzVIoF18YNhG7x0wyZO2z5xudsq2B%2B8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:31:11.8626495Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -364,15 +371,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:35 GMT + - Wed, 20 Nov 2024 11:21:11 GMT location: - - https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - f8dfa34c-f1b2-418c-b48d-fb76d5958cdd + - 7bdf8d19-fbfe-4b55-b94d-119fbac0de98 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054934Z-16998b5679fpf5b5hC1MAAqxag000000073000000000ba1d + - 20241120T112110Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009w3a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -390,31 +397,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A33Z&ske=2024-11-07T12%3A49%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A35Z&sr=b&sp=r&sig=vDEMWK7S1yjtEJ5%2FyjBhHmcJf6GgVFZA4FWQmuVqC5k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:35.6624472Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b07bef21-06fd-4659-91a0-dc51d36b7f28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A11Z&ske=2024-11-20T18%3A21%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A12Z&sr=b&sp=r&sig=eNKOFL42kwXNL00I5Wy62mwCZNptWr5Gh0PYc7PcGaE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:31:12.6090089Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:35 GMT + - Wed, 20 Nov 2024 11:21:12 GMT mise-correlation-id: - - c92cc05f-d203-4738-baa0-c39cd76e315f + - 6708fe86-4463-45b7-ac19-ce81c54ace20 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054935Z-16998b5679fpf5b5hC1MAAqxag000000073000000000ba28 + - 20241120T112111Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009w4p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -432,31 +440,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A35Z&ske=2024-11-07T21%3A49%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A40Z&sr=b&sp=r&sig=T%2F87s%2BwhCsL7RAMOlwZ7WTyqWXfceziYIgHeNA4J2eA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:40.9385289Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b07bef21-06fd-4659-91a0-dc51d36b7f28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A17Z&ske=2024-11-20T18%3A21%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A18Z&sr=b&sp=r&sig=FPKIyjmGhKIjyI05IgDl%2FoAg1qqArgLJ0nxeKoR4cDo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:31:18.4733831Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:41 GMT + - Wed, 20 Nov 2024 11:21:18 GMT mise-correlation-id: - - 4660fff0-1de9-406d-abf0-19bf5a343c37 + - 5efd8d04-0aad-4b12-baae-59f1cbb8c507 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054940Z-16998b5679fpf5b5hC1MAAqxag000000073000000000ba9e + - 20241120T112117Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009wcc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -474,31 +483,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A46Z&sr=b&sp=r&sig=domOgVEw%2FWKzGzyjrlHW4u31i37cu5z71JQyRslZPr8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:46.2525052Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b07bef21-06fd-4659-91a0-dc51d36b7f28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A23Z&sr=b&sp=r&sig=%2FLHa%2FUo0vxxtC96ahVduj%2F%2BuAedqJ7vLUurx%2FLVT6Fo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:31:23.5712661Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '578' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:46 GMT + - Wed, 20 Nov 2024 11:21:23 GMT mise-correlation-id: - - d7a48e2d-bac9-41b0-b01e-3ea3fdd11034 + - 5ea0aace-a615-4900-9e81-45fb8f484c6e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054946Z-16998b5679fpf5b5hC1MAAqxag000000073000000000baek + - 20241120T112123Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009wms x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -516,31 +526,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A32Z&ske=2024-11-07T12%3A49%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A51Z&sr=b&sp=r&sig=7aBN%2FuAgVb73KBHOgn6%2Bv1yiK%2B0YcVv2Mxhkk1GeCys%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:51.5313199Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b07bef21-06fd-4659-91a0-dc51d36b7f28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A28Z&ske=2024-11-20T18%3A21%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A28Z&sr=b&sp=r&sig=q%2FubzYCni08psXPYtXrS7LKmSaQYZ93T6qDHkg94b3E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:31:28.716657Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '569' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:51 GMT + - Wed, 20 Nov 2024 11:21:28 GMT mise-correlation-id: - - b65881c5-b599-4e30-acf7-4ccc81e4072d + - 3ca97ef9-bec8-493d-ad22-692950df57b1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054951Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bakf + - 20241120T112128Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009wt9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -558,17 +569,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A56Z&sr=b&sp=r&sig=wd7swcuJGk155nfKe9%2FOln3SspRkW5oOysAVdgM8sxU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:56.8209365Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b07bef21-06fd-4659-91a0-dc51d36b7f28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A11Z&ske=2024-11-20T18%3A21%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A33Z&sr=b&sp=r&sig=njwXyg5rD6CTl4F1K8%2BwEglpFNBqYIlkbt5j6ltlRbg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:31:33.8549915Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -576,13 +588,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:56 GMT + - Wed, 20 Nov 2024 11:21:33 GMT mise-correlation-id: - - b035bc0e-7639-48a1-850f-5bace2f9d38c + - d5a63657-943f-4ce0-8280-6feb8cddcfe0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054956Z-16998b5679fpf5b5hC1MAAqxag000000073000000000baqm + - 20241120T112133Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009wzg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -600,31 +612,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A35Z&ske=2024-11-07T21%3A49%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A02Z&sr=b&sp=r&sig=230ZsVexqz9rgfUk2o1WTevvwYB4NzX%2F461GKVBiiJk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:00:02.1189468Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b07bef21-06fd-4659-91a0-dc51d36b7f28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A28Z&ske=2024-11-20T18%3A21%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A38Z&sr=b&sp=r&sig=hvvBa2WA0CiiEFrotyMLQAjZI2ILniLQTTmsD%2Book%2FQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:31:38.9658302Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:02 GMT + - Wed, 20 Nov 2024 11:21:38 GMT mise-correlation-id: - - 06295527-e19a-4738-b011-444521e9c0b3 + - 3a5d2144-9698-42fc-b2da-39c08e404b56 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055001Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bav8 + - 20241120T112138Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009x6m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -734,33 +747,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A02Z&ske=2024-11-07T21%3A50%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A02Z&sr=b&sp=r&sig=H4MaPyM2iuPYaV8pgkCIe6uzj9jgbzDFDplS7lIVvF0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:02.6667005Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/1c584a74-ff38-4674-bf1a-3f50b4f57493?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A39Z&sr=b&sp=r&sig=0b%2BmtiYhjEryJg9GxkStzS6W%2F65FDcOrFf5q1NDRsfU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:39.2081172Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '560' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:02 GMT + - Wed, 20 Nov 2024 11:21:39 GMT location: - - https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 9a19236e-9399-41ac-baa8-9ca2b5150d5d + - 675641df-c523-4262-9366-15fa32053b0a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055002Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bavy + - 20241120T112139Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009x6t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -778,31 +792,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A58Z&ske=2024-11-07T12%3A49%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A02Z&sr=b&sp=r&sig=6vYp9mGAgon48IfyYAxZz4LB9PP8bERU27S%2BnFqOsCE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:02.958006Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/1c584a74-ff38-4674-bf1a-3f50b4f57493?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A39Z&sr=b&sp=r&sig=0b%2BmtiYhjEryJg9GxkStzS6W%2F65FDcOrFf5q1NDRsfU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:39.6293048Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' + - '560' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:03 GMT + - Wed, 20 Nov 2024 11:21:39 GMT mise-correlation-id: - - deca9fd1-d1dd-47b6-805d-227617bd0416 + - 336e8487-001b-4b38-9aa6-208efb7ee958 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055002Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bawh + - 20241120T112139Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009x72 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -820,31 +835,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A02Z&ske=2024-11-07T21%3A50%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A08Z&sr=b&sp=r&sig=27YSyxC8oASzIrB3m0K0F8RJLzuHNHQBB2LbCluPRWo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:08.2360688Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/1c584a74-ff38-4674-bf1a-3f50b4f57493?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A11Z&ske=2024-11-20T18%3A21%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A44Z&sr=b&sp=r&sig=1Te%2F04PrBoc5qMS%2BP0MJAeR852jn1C2KXJ23vM2s4vA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:44.728855Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '559' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:08 GMT + - Wed, 20 Nov 2024 11:21:44 GMT mise-correlation-id: - - 4f0565b1-49aa-4ac6-a78b-e7fa5eb3ab98 + - 4e9d5202-eee4-4135-9216-d3c7160851d4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055008Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bb14 + - 20241120T112144Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009xfm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -862,31 +878,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A02Z&ske=2024-11-07T21%3A50%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A13Z&sr=b&sp=r&sig=3ZdRei3XUjvOJ6Eau%2FRisR0ZzJeYQ4Mn3E%2FkqsWcmE8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:13.5133454Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/1c584a74-ff38-4674-bf1a-3f50b4f57493?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A49Z&sr=b&sp=r&sig=CdQTgjk0j6gWo0ah%2BMEfW8ZSt8AiqIZDPDG2uDDqnMg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:49.8345966Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:13 GMT + - Wed, 20 Nov 2024 11:21:49 GMT mise-correlation-id: - - 51d3d5e1-23cd-4d5d-b070-30b4396983dc + - 04a34a71-0da5-455b-bac2-fde997c63ebf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055013Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bb6x + - 20241120T112149Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009xrs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -904,17 +921,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A58Z&ske=2024-11-07T12%3A49%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A18Z&sr=b&sp=r&sig=uhccHpSqUEtiYLiKY7mRPcD8wiYuRTrtxsJOG7cc614%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:18.7925798Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/1c584a74-ff38-4674-bf1a-3f50b4f57493?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A17Z&ske=2024-11-20T18%3A21%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A54Z&sr=b&sp=r&sig=h5x4N16JDuUMS2zPIpDMzxyFzqdsjrZow3WS58veCGQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:54.9407324Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -922,13 +940,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:18 GMT + - Wed, 20 Nov 2024 11:21:54 GMT mise-correlation-id: - - 99b33ded-4454-4c37-a2d3-b9f22275340e + - 84f1af56-f32b-44b2-bc41-fd94ec569022 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055018Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bbc4 + - 20241120T112154Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009y1g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -946,31 +964,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A24Z&ske=2024-11-07T12%3A50%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A24Z&sr=b&sp=r&sig=NnXrq8q%2BZhluThccDe2UsL24y%2BR7vc2GXcpgTw%2BQia8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:24.109113Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/1c584a74-ff38-4674-bf1a-3f50b4f57493?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A32%3A00Z&sr=b&sp=r&sig=0M8MwItaCGiRp6WMET0AF%2B7SfC2Sgekj3MIvaN66G9M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:32:00.0475433Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:24 GMT + - Wed, 20 Nov 2024 11:22:00 GMT mise-correlation-id: - - 3c5eb6da-aad0-4b27-87cd-3b978cf56b61 + - 67816460-8fe7-4a97-a6db-77f6b27b769e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055023Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bbgc + - 20241120T112159Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009y9k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -988,31 +1007,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A29Z&sr=b&sp=r&sig=Udx%2FxIuYrWSsjfirThUnE23GzEsS%2BG1Iuq9sMExg%2FkI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:29.416803Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/1c584a74-ff38-4674-bf1a-3f50b4f57493?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A32%3A05Z&sr=b&sp=r&sig=0Abk4fl3SuH4byYkW8dcpLQ2cnSnPubeyIpprMIiEq8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:32:05.1510939Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '561' + - '556' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:29 GMT + - Wed, 20 Nov 2024 11:22:05 GMT mise-correlation-id: - - 660d0366-adb2-42dd-b625-636c9234a766 + - 81dbf94c-79e2-4f2f-9829-aa2068346427 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055029Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bbnm + - 20241120T112205Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009yhd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1030,31 +1050,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A34Z&sr=b&sp=r&sig=i9YB19hD%2BLuA11TCKsO4N7%2BiYh2XiDHUz1CwqpFIdu0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:34.6876251Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/1c584a74-ff38-4674-bf1a-3f50b4f57493?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A17Z&ske=2024-11-20T18%3A21%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A32%3A10Z&sr=b&sp=r&sig=hapbB1mb84t0aFAYmiQ8YOL83OLVlU2NWNTytPh68vA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:32:10.2561962Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '554' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:34 GMT + - Wed, 20 Nov 2024 11:22:10 GMT mise-correlation-id: - - a8f1768f-d5e7-4aa8-918d-436efe09054c + - c0c64cf4-7ad5-4f92-973f-e5af9d79fa01 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055034Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bbsm + - 20241120T112210Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009ysz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1072,32 +1093,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c3e71f91-15a0-43fe-9076-72139307b321":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0e47e833-d363-4335-b9a0-ec461c665131":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6bf2182c-ea7f-4cb0-b97a-9fd5837f077b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A34Z&sr=b&sp=r&sig=noqeXtmWzDtHX%2B4Yuu%2BOUeRcEn17R3jegjbM1M9eMlQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:34.9768961Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/0b88b7be-ace2-4b22-97ec-e48e693eebf4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A34Z&sr=b&sp=r&sig=lGUTFOTzSe5h5Sm4V7o7HRAzYQ0Q2hx0RHtTifldDd4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:50:34.9773771Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A34Z&sr=b&sp=r&sig=xHcBs4J6%2FjJhTzJhxJ4hgHNhLOL96USxpXDLikHIEJY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:50:34.9774837Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:31.987Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:34.011Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d6e6a93d-f3af-4a29-bb1b-1dca031d7966":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb57a332-fbb6-423f-8a7a-9fabff26eab0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"19727991-9317-4601-acae-424c21e0163c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/1c584a74-ff38-4674-bf1a-3f50b4f57493?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A10Z&sr=b&sp=r&sig=Tn4vKxlxMhbQwI%2FHGZIUKZ9sENV4hc6aJ0zoYCurDis%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:10.3461236Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b3b14c95-c216-43da-8b30-1cb90422a41b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A10Z&sr=b&sp=r&sig=1Gu03KSPX%2FGaWtUJFCXjyRQ24or7Xj1YxbAqws5AFNQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:10.3465233Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b07bef21-06fd-4659-91a0-dc51d36b7f28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A10Z&sr=b&sp=r&sig=loe8egAmXiKshi40ysYzfYPfNFYa52qz%2FCMvBNjkxtc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:10.3466918Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:21:08.648Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:05.64Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2773' + - '2874' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:35 GMT + - Wed, 20 Nov 2024 11:22:10 GMT mise-correlation-id: - - 676c20fe-e8b9-4d0d-89d7-c5e045ecaead + - 3b71ece3-ab2e-4502-9c1e-3989a2ac059c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055034Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bbsz + - 20241120T112210Z-17b7777dc45t6dp8hC1CO1w1x40000000w70000000009yt1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1115,23 +1137,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:13.2686754Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:13.2686754Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:36 GMT + - Wed, 20 Nov 2024 11:22:09 GMT etag: - - '"13012699-0000-0200-0000-672c54c30000"' + - '"97037501-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -1147,7 +1169,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F6D734BDC6B34D2AAA98884A9EEEA072 Ref B: MAA201060514019 Ref C: 2024-11-07T05:50:35Z' + - 'Ref A: 4BEFF02516D546B8AF7522B402F6160F Ref B: CO6AA3150220025 Ref C: 2024-11-20T11:22:10Z' status: code: 200 message: OK @@ -1161,32 +1183,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"c3e71f91-15a0-43fe-9076-72139307b321":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0e47e833-d363-4335-b9a0-ec461c665131":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6bf2182c-ea7f-4cb0-b97a-9fd5837f077b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A24Z&ske=2024-11-07T12%3A50%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A37Z&sr=b&sp=r&sig=sffvNqJV4c5sFv1umXReDMw%2FMs801Fm40A2Lhhs%2FyJY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:37.503996Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/0b88b7be-ace2-4b22-97ec-e48e693eebf4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A24Z&ske=2024-11-07T12%3A50%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A37Z&sr=b&sp=r&sig=gBulViBkLRQ0V%2BA%2BYISub0xlbeJoTlIfv8z7QCByVbk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:50:37.5042368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A24Z&ske=2024-11-07T12%3A50%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A37Z&sr=b&sp=r&sig=LD9fxBXCDmKwiEiixhfwdML1PVWnE6LYWQUY3U5Jv1s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:50:37.5043024Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:31.987Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:34.011Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"d6e6a93d-f3af-4a29-bb1b-1dca031d7966":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb57a332-fbb6-423f-8a7a-9fabff26eab0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"19727991-9317-4601-acae-424c21e0163c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/1c584a74-ff38-4674-bf1a-3f50b4f57493?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A11Z&sr=b&sp=r&sig=cjAL701x3x%2B%2Bx%2FLApnoxUrpotECyZMVzGLm8EJbris8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:11.173075Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b3b14c95-c216-43da-8b30-1cb90422a41b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A11Z&sr=b&sp=r&sig=vnk%2B7u582hAhYHAFV5QbXkD%2FLLguTFMoheRxteekE%2BE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:11.1735274Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://m2puxnpd72x18m7k07uk5yd2.z47.blob.storage.azure.net/1b6f17ac-6e3c-41c5-a3b8-7ac6c2677570/b07bef21-06fd-4659-91a0-dc51d36b7f28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-20T18%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A11Z&sr=b&sp=r&sig=J7jj2gpUzvIkmTZ%2FYjHJ19%2FOa91jzPAbgTb%2F0gM6NDM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:11.1737111Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:21:08.648Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:05.64Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2786' + - '2897' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:37 GMT + - Wed, 20 Nov 2024 11:22:11 GMT mise-correlation-id: - - 7e571fa8-8955-49ae-aa04-4cbab82026f4 + - a4f17437-f9a3-4c56-9928-9f5cbeda1878 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055036Z-184f6b5dbd8phhqphC1MAAs410000000077g000000000u3b + - 20241120T112210Z-r16f5dbf676x7kfghC1YVRdw9g00000003qg0000000005d3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1204,23 +1227,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:13.2686754Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:13.2686754Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:38 GMT + - Wed, 20 Nov 2024 11:22:11 GMT etag: - - '"13012699-0000-0200-0000-672c54c30000"' + - '"97037501-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -1236,14 +1259,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0374D6F303B84EF7B4D73CE7DBF9F847 Ref B: MAA201060515035 Ref C: 2024-11-07T05:50:38Z' + - 'Ref A: 3EF1775613C7460494B2908E4F8966FB Ref B: CO6AA3150218029 Ref C: 2024-11-20T11:22:11Z' status: code: 200 message: OK - request: - body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-akds3az7bbtdhm5gk/providers/Microsoft.Storage/storageAccounts/clitestloadzkois5k4g": - {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-akds3az7bbtdhm5gk/providers/Microsoft.Storage/storageAccounts/clitestloadzkois5k4g", - "resourceName": "clitestloadzkois5k4g", "resourceType": "Microsoft.Storage/storageAccounts", + body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-vn2fgau5xlrz4i54f/providers/Microsoft.Storage/storageAccounts/clitestloadk2pe5wrp5": + {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-vn2fgau5xlrz4i54f/providers/Microsoft.Storage/storageAccounts/clitestloadk2pe5wrp5", + "resourceName": "clitestloadk2pe5wrp5", "resourceType": "Microsoft.Storage/storageAccounts", "kind": "Storage"}}}' headers: Accept: @@ -1255,33 +1278,34 @@ interactions: Content-Length: - '513' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"app-component-test-case","createdDateTime":"2024-11-07T05:50:40.304Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:40.304Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"app-component-test-case","createdDateTime":"2024-11-20T11:22:12.16Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:12.16Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '735' + - '739' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:40 GMT + - Wed, 20 Nov 2024 11:22:12 GMT location: - - https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-03-01-preview + - https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-03-01-preview mise-correlation-id: - - 8d18292c-5fc2-49ef-89e7-9f4a46d9de75 + - 1fa60558-f3fb-425e-aa1d-651cc4ef4628 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055039Z-16998b5679fcjr6chC1MAAz5ks00000003k0000000008mtp + - 20241120T112211Z-1846dc7bb4d76mcbhC1YVR7hvs00000003m0000000003apn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1299,23 +1323,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:13.2686754Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:13.2686754Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:41 GMT + - Wed, 20 Nov 2024 11:22:11 GMT etag: - - '"13012699-0000-0200-0000-672c54c30000"' + - '"97037501-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -1331,7 +1355,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DB35F8B05A1441919A363B8C2F582B64 Ref B: MAA201060514045 Ref C: 2024-11-07T05:50:41Z' + - 'Ref A: E4ADD7A3F1244678B6792B1306CF9F5F Ref B: CO6AA3150219023 Ref C: 2024-11-20T11:22:12Z' status: code: 200 message: OK @@ -1345,31 +1369,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"app-component-test-case","createdDateTime":"2024-11-07T05:50:40.304Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:40.304Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"app-component-test-case","createdDateTime":"2024-11-20T11:22:12.16Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:12.16Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '735' + - '739' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:43 GMT + - Wed, 20 Nov 2024 11:22:12 GMT mise-correlation-id: - - c65f54dd-fa89-4a23-af9f-89ebbfb47648 + - fccc7916-1b03-497c-9d59-36bbd603b721 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055042Z-184f6b5dbd8k92hshC1MAAh0wn000000071g000000006dp0 + - 20241120T112212Z-r16f5dbf676d94mhhC1YVRs0f000000000s0000000005km7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1387,23 +1412,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:13.2686754Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:13.2686754Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:44 GMT + - Wed, 20 Nov 2024 11:22:13 GMT etag: - - '"13012699-0000-0200-0000-672c54c30000"' + - '"97037501-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -1419,12 +1444,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9EAC489CABE1447AAAEEFC10D6805CEC Ref B: MAA201060515023 Ref C: 2024-11-07T05:50:43Z' + - 'Ref A: 6F94D1B73D324FC09C11772F079321BA Ref B: CO6AA3150218025 Ref C: 2024-11-20T11:22:13Z' status: code: 200 message: OK - request: - body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-akds3az7bbtdhm5gk/providers/Microsoft.Storage/storageAccounts/clitestloadzkois5k4g": + body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-vn2fgau5xlrz4i54f/providers/Microsoft.Storage/storageAccounts/clitestloadk2pe5wrp5": null}}' headers: Accept: @@ -1436,33 +1461,34 @@ interactions: Content-Length: - '225' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2024-11-07T05:50:40.304Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:45.956Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2024-11-20T11:22:12.16Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:13.951Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '222' + - '227' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:46 GMT + - Wed, 20 Nov 2024 11:22:13 GMT mise-correlation-id: - - 3ae15625-8d30-451e-96d7-879f64263863 + - c71ba373-f894-4ce2-8723-c8849428dbae strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055045Z-16998b5679fvd5pwhC1MAA3s8n00000007100000000085fg + - 20241120T112213Z-1846dc7bb4d8qxgghC1YVRh4x000000000y00000000019nh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1480,23 +1506,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:13.2686754Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:13.2686754Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:46 GMT + - Wed, 20 Nov 2024 11:22:13 GMT etag: - - '"13012699-0000-0200-0000-672c54c30000"' + - '"97037501-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -1512,7 +1538,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8CC3682A9E354833878BC989ABA35138 Ref B: MAA201060514023 Ref C: 2024-11-07T05:50:46Z' + - 'Ref A: 5920CB8B5B6143F5BCA322EFE3EF5AD2 Ref B: CO6AA3150220021 Ref C: 2024-11-20T11:22:14Z' status: code: 200 message: OK @@ -1526,31 +1552,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview + uri: https://f3c4c58b-55cc-47de-b96c-c22db739d66f.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2024-11-07T05:50:40.304Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:45.956Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2024-11-20T11:22:12.16Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:13.951Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '222' + - '227' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:48 GMT + - Wed, 20 Nov 2024 11:22:14 GMT mise-correlation-id: - - 127497fd-8e53-4066-818d-51a70e4cdd9b + - 0c4b7e7a-a062-43a8-aa45-f72b03b37893 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055048Z-16998b5679fcjr6chC1MAAz5ks00000003p0000000003b5y + - 20241120T112214Z-r16f5dbf676kzgwchC1YVRkhh800000003sg000000002kak x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_autostop.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_autostop.yaml new file mode 100644 index 00000000000..30ff72c12a2 --- /dev/null +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_autostop.yaml @@ -0,0 +1,7557 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:36:56 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 784C74F8FBF848CC94C3D25E24C268CC Ref B: CO6AA3150220031 Ref C: 2024-11-22T09:36:55Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with + given identifier create-test-case","target":null,"details":null}}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-type: + - application/json + date: + - Fri, 22 Nov 2024 09:36:56 GMT + mise-correlation-id: + - 09883816-42e2-429f-95f7-7acdeb309d8d + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-azure-ref: + - 20241122T093656Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004fg9 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-error-code: + - TestNotFound + status: + code: 404 + message: Not Found +- request: + body: '{"displayName": "Sample_test_display_name", "description": "Sample_test_description", + "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, + "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": + {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": + {"passFailMetrics": {"74c53f9b-d297-40db-9b95-fff6d2c06674": {"aggregate": "avg", + "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "e9f70eba-fdfd-4fea-adb8-815c210af742": + {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": + "50"}, "ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e": {"aggregate": "avg", "clientMetric": + "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, + "autoStopCriteria": {"autoStopDisabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '841' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:36:56.642Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '1127' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:36:56 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-03-01-preview + mise-correlation-id: + - b1d7aa27-eb6b-48a4-a4b8-86b36ece7963 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093656Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004fgf + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[]}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:36:56 GMT + mise-correlation-id: + - d9d637f6-de4b-4a8a-989c-bd01b7567d3c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093656Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004fgt + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + YSxiLGMsZA0KMSwyLDMsNA0K + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '18' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A46%3A57Z&sr=b&sp=r&sig=6FVAPLsibZN%2FuG6YLhoNFw4R8zkxl%2FXxiKzBnaOH73I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:46:57.1015846Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:36:57 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview + mise-correlation-id: + - 0c12bed8-9f37-4bb0-af24-dd23d0d733f2 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093656Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004fgz + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A46%3A57Z&sr=b&sp=r&sig=6FVAPLsibZN%2FuG6YLhoNFw4R8zkxl%2FXxiKzBnaOH73I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:46:57.2281167Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:36:57 GMT + mise-correlation-id: + - 8a5a39ea-4eca-4c5d-8308-63512a8f2396 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093657Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004fh9 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + UEsDBBQACAAIAANbLVkAAAAAAAAAABIAAAATACAAYWRkaXRpb25hbC1kYXRhLmNzdlVUDQAHf9Pj + ZneG/2a5hP9mdXgLAAEEAAAAAAQAAAAAS9RJ0knWSeHlMtQx0jHWMeHlAgBQSwcI/dwPKxQAAAAS + AAAAUEsBAhQDFAAIAAgAA1stWf3cDysUAAAAEgAAABMAIAAAAAAAAAAAALaBAAAAAGFkZGl0aW9u + YWwtZGF0YS5jc3ZVVA0AB3/T42Z3hv9muYT/ZnV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAGEA + AAB1AAAAAAA= + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '236' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A46%3A58Z&sr=b&sp=r&sig=5hlf3ZWU02HUG%2BPAISQJMP0FFX%2FqsHwfBAciLt04O64%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:46:58.4239119Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '572' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:36:58 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + mise-correlation-id: + - 4b2eab69-c2f0-42da-bb48-8d6dcd42317d + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093657Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004fhe + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A46%3A58Z&sr=b&sp=r&sig=R4ttGRQGkhgYYynlC4q%2BwyOxsTkR%2B5SSP60%2FdzDrkqo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:46:58.5620053Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:36:58 GMT + mise-correlation-id: + - 25e86ad1-d842-48fa-b032-fd9dcb9f41c1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093658Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004fm4 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A03Z&sr=b&sp=r&sig=kHVDLlcF%2BQ4BxPOQRojvKFSiOJqiymJ7GnL7gOGrN0c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:03.6553241Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:03 GMT + mise-correlation-id: + - 92b77c52-0ef2-449f-89a4-ad43c8f30d49 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093703Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004ft6 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A08Z&sr=b&sp=r&sig=3tGABoTeN8fk3bmP2cuTVsP366yyjLF5YLSEWDrkvoY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:08.7484244Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:08 GMT + mise-correlation-id: + - 2725ae7f-22d8-4ba0-bbed-63d28ff64e30 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093708Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004fyx + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A13Z&ske=2024-11-22T16%3A37%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A14Z&sr=b&sp=r&sig=5NkTKjPRhEGM8DQhsnEtL7qcqNQECV4S71G7cxrsSJ8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:14.4696907Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:14 GMT + mise-correlation-id: + - f9c69e88-38c0-4ea1-85c0-1de67a0ebd1f + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093713Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004g4x + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A19Z&sr=b&sp=r&sig=3fUJWq%2BbrSdI9SP88Az%2F21NLVAyYBGoduOMiuLPfqEs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:19.5624111Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:19 GMT + mise-correlation-id: + - 81bf2c6a-3eef-483a-881e-756e6ea566a5 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093719Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004gc5 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxqbWV0ZXJUZXN0UGxhbiB2 + ZXJzaW9uPSIxLjIiIHByb3BlcnRpZXM9IjUuMCIgam1ldGVyPSI1LjUiPg0KICA8aGFzaFRyZWU+ + DQogICAgPFRlc3RQbGFuIGd1aWNsYXNzPSJUZXN0UGxhbkd1aSIgdGVzdGNsYXNzPSJUZXN0UGxh + biIgdGVzdG5hbWU9IkF6dXJlIExvYWQgVGVzdGluZyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICA8 + c3RyaW5nUHJvcCBuYW1lPSJUZXN0UGxhbi5jb21tZW50cyI+PC9zdHJpbmdQcm9wPg0KICAgICAg + PGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLmZ1bmN0aW9uYWxfbW9kZSI+ZmFsc2U8L2Jvb2xQcm9w + Pg0KICAgICAgPGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLnRlYXJEb3duX29uX3NodXRkb3duIj50 + cnVlPC9ib29sUHJvcD4NCiAgICAgIDxib29sUHJvcCBuYW1lPSJUZXN0UGxhbi5zZXJpYWxpemVf + dGhyZWFkZ3JvdXBzIj5mYWxzZTwvYm9vbFByb3A+DQogICAgICA8ZWxlbWVudFByb3AgbmFtZT0i + VGVzdFBsYW4udXNlcl9kZWZpbmVkX3ZhcmlhYmxlcyIgZWxlbWVudFR5cGU9IkFyZ3VtZW50cyIg + Z3VpY2xhc3M9IkFyZ3VtZW50c1BhbmVsIiB0ZXN0Y2xhc3M9IkFyZ3VtZW50cyIgdGVzdG5hbWU9 + IlVzZXIgRGVmaW5lZCBWYXJpYWJsZXMiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICA8Y29sbGVj + dGlvblByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgPC9lbGVtZW50UHJv + cD4NCiAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IlRlc3RQbGFuLnVzZXJfZGVmaW5lX2NsYXNzcGF0 + aCI+PC9zdHJpbmdQcm9wPg0KICAgIDwvVGVzdFBsYW4+DQogICAgPGhhc2hUcmVlPg0KICAgICAg + PEFyZ3VtZW50cyBndWljbGFzcz0iQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRz + IiB0ZXN0bmFtZT0iVXNlciBEZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAg + ICAgIDxjb2xsZWN0aW9uUHJvcCBuYW1lPSJBcmd1bWVudHMuYXJndW1lbnRzIj4NCiAgICAgICAg + ICA8ZWxlbWVudFByb3AgbmFtZT0iZHVyYXRpb25faW5fc2VjIiBlbGVtZW50VHlwZT0iQXJndW1l + bnQiPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubmFtZSI+ZHVyYXRp + b25faW5fc2VjPC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJn + dW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5nZXRlbnYoJnF1b3Q7ZHVyYXRpb25faW5f + c2VjJnF1b3Q7KSA/OiAmcXVvdDsxMCZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAg + IDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAg + ICAgICAgIDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9InJwcyIg + ZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFy + Z3VtZW50Lm5hbWUiPnJwczwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3JwcyZx + dW90OykgPzogJnF1b3Q7MSZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJp + bmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAgICAgICAg + IDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9ImRvbWFpbiIgZWxl + bWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3Vt + ZW50Lm5hbWUiPmRvbWFpbjwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O2RvbWFp + biZxdW90OykgPzogJnF1b3Q7ZXhhbXBsZS5jb20mcXVvdDsgKX08L3N0cmluZ1Byb3A+DQogICAg + ICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5tZXRhZGF0YSI+PTwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICA8L2VsZW1lbnRQcm9wPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1l + PSJwcm90b2NvbCIgZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQ + cm9wIG5hbWU9IkFyZ3VtZW50Lm5hbWUiPnByb3RvY29sPC9zdHJpbmdQcm9wPg0KICAgICAgICAg + ICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5n + ZXRlbnYoJnF1b3Q7cHJvdG9jb2wmcXVvdDspID86ICZxdW90O2h0dHBzJnF1b3Q7ICl9PC9zdHJp + bmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubWV0YWRhdGEi + Pj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAgICAgICA8ZWxl + bWVudFByb3AgbmFtZT0idXJsX3BhdGgiIGVsZW1lbnRUeXBlPSJBcmd1bWVudCI+DQogICAgICAg + ICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5uYW1lIj51cmxfcGF0aDwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jv + b3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3VybF9wYXRoJnF1b3Q7KSA/OiAmcXVvdDsvJnF1b3Q7 + ICl9PC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQu + bWV0YWRhdGEiPj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAg + ICAgPC9jb2xsZWN0aW9uUHJvcD4NCiAgICAgIDwvQXJndW1lbnRzPg0KICAgICAgPGhhc2hUcmVl + Lz4NCiAgICAgIDxPcGVuTW9kZWxUaHJlYWRHcm91cCBndWljbGFzcz0iT3Blbk1vZGVsVGhyZWFk + R3JvdXBHdWkiIHRlc3RjbGFzcz0iT3Blbk1vZGVsVGhyZWFkR3JvdXAiIHRlc3RuYW1lPSJPcGVu + IE1vZGVsIFRocmVhZCBHcm91cCIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgIDxlbGVtZW50UHJv + cCBuYW1lPSJUaHJlYWRHcm91cC5tYWluX2NvbnRyb2xsZXIiIGVsZW1lbnRUeXBlPSJPcGVuTW9k + ZWxUaHJlYWRHcm91cENvbnRyb2xsZXIiLz4NCiAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iVGhy + ZWFkR3JvdXAub25fc2FtcGxlX2Vycm9yIj5jb250aW51ZTwvc3RyaW5nUHJvcD4NCiAgICAgICAg + PHN0cmluZ1Byb3AgbmFtZT0iT3Blbk1vZGVsVGhyZWFkR3JvdXAuc2NoZWR1bGUiPnJhdGUoJHty + cHN9L3NlYykgcmFuZG9tX2Fycml2YWxzKCR7ZHVyYXRpb25faW5fc2VjfSBzZWMpPC9zdHJpbmdQ + cm9wPg0KICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJPcGVuTW9kZWxUaHJlYWRHcm91cC5yYW5k + b21fc2VlZCI+PC9zdHJpbmdQcm9wPg0KICAgICAgPC9PcGVuTW9kZWxUaHJlYWRHcm91cD4NCiAg + ICAgIDxoYXNoVHJlZT4NCiAgICAgICAgPEhUVFBTYW1wbGVyUHJveHkgZ3VpY2xhc3M9Ikh0dHBU + ZXN0U2FtcGxlR3VpIiB0ZXN0Y2xhc3M9IkhUVFBTYW1wbGVyUHJveHkiIHRlc3RuYW1lPSJIVFRQ + IFJlcXVlc3QiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1lPSJI + VFRQc2FtcGxlci5Bcmd1bWVudHMiIGVsZW1lbnRUeXBlPSJBcmd1bWVudHMiIGd1aWNsYXNzPSJI + VFRQQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRzIiB0ZXN0bmFtZT0iVXNlciBE + ZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgICAgICA8Y29sbGVjdGlv + blByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgICAgIDwvZWxlbWVudFBy + b3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBsZXIuZG9tYWluIj4ke2Rv + bWFpbn08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBs + ZXIucG9ydCI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBT + YW1wbGVyLnByb3RvY29sIj4ke3Byb3RvY29sfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3Ry + aW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5jb250ZW50RW5jb2RpbmciPjwvc3RyaW5nUHJvcD4N + CiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5wYXRoIj4ke3VybF9wYXRo + fTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5t + ZXRob2QiPkdFVDwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8Ym9vbFByb3AgbmFtZT0iSFRUUFNh + bXBsZXIuZm9sbG93X3JlZGlyZWN0cyI+dHJ1ZTwvYm9vbFByb3A+DQogICAgICAgICAgPGJvb2xQ + cm9wIG5hbWU9IkhUVFBTYW1wbGVyLmF1dG9fcmVkaXJlY3RzIj5mYWxzZTwvYm9vbFByb3A+DQog + ICAgICAgICAgPGJvb2xQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnVzZV9rZWVwYWxpdmUiPnRydWU8 + L2Jvb2xQcm9wPg0KICAgICAgICAgIDxib29sUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5ET19NVUxU + SVBBUlRfUE9TVCI+ZmFsc2U8L2Jvb2xQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9 + IkhUVFBTYW1wbGVyLmVtYmVkZGVkX3VybF9yZSI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxz + dHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLmNvbm5lY3RfdGltZW91dCI+PC9zdHJpbmdQcm9w + Pg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnJlc3BvbnNlX3RpbWVv + dXQiPjwvc3RyaW5nUHJvcD4NCiAgICAgICAgPC9IVFRQU2FtcGxlclByb3h5Pg0KICAgICAgICA8 + aGFzaFRyZWUvPg0KICAgICAgPC9oYXNoVHJlZT4NCiAgICA8L2hhc2hUcmVlPg0KICA8L2hhc2hU + cmVlPg0KPC9qbWV0ZXJUZXN0UGxhbj4NCg== + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '4870' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A20Z&sr=b&sp=r&sig=W%2BoEj5uHOSNS4xkCoMMmd9Wmz8J9nG%2BaSbDqHfffUhQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:20.4030765Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:20 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + mise-correlation-id: + - 4e8e3370-f571-4ad8-89a4-c0678fae19e9 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093719Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004gcb + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A20Z&sr=b&sp=r&sig=C8JKK7qdYupoclPvX5vwotTRws%2BSTOmjsX3WmhZBXQo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:20.4927164Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:20 GMT + mise-correlation-id: + - 2bdf3c8c-3ceb-4933-8de3-4c8c36bf0035 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093720Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004gdf + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A13Z&ske=2024-11-22T16%3A37%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A25Z&sr=b&sp=r&sig=q0MRr9VS9y%2B9MwypufOXV9dLwimKTIEpZnpn8zFI718%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:25.5933619Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:25 GMT + mise-correlation-id: + - d9c1cd55-dd63-40fa-a6f5-3c05fb225222 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093725Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004gnd + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A30Z&sr=b&sp=r&sig=GFR3vqZoMXYbAftD%2BgRS1yL6lx84EFU%2FjgqD0hsdPTo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:30.6845665Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:30 GMT + mise-correlation-id: + - 84b1e780-23ad-47fa-8459-d6f608c4f45f + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093730Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004gv7 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A35Z&sr=b&sp=r&sig=ZOywJB%2Fwp%2BmIdFCiQzU9JaAW5dp47nI8wveIJgv2nf8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:35.8215858Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:35 GMT + mise-correlation-id: + - 50832cb6-f671-4b09-9f41-503e3dc73fe8 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093735Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004h2g + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A40Z&sr=b&sp=r&sig=rmlHKNrqyhFuchABYRCdf5Yu4TXCzDKFpejpYnXBxVQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:40.9221895Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:40 GMT + mise-correlation-id: + - b65e7bc8-3bb3-43d8-943b-d462c0a1e3f6 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093740Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004h7t + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A46Z&sr=b&sp=r&sig=jP%2BpLxbMUKrHIakQZ8zy4HCMwf6BcktWx2X7pWMUC84%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:46.0197053Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:46 GMT + mise-correlation-id: + - 9a98e877-5445-4d1e-9fea-e0e3fa3420fa + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093745Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004hc0 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A46Z&sr=b&sp=r&sig=wk%2BnrD0n7kSXQQBE7LLk%2BQjDrpb5%2FNnmg%2B9QDXLhXzA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:46.108699Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A46Z&sr=b&sp=r&sig=%2FOQ%2BQe1031qqby%2Fp5FzyIEF3Ro5CQv0oBEg2g3ZNe24%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:46.1092311Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A46Z&sr=b&sp=r&sig=vjZ8msJ2tKKhl9imy1Zr9PcCGVspjpQfDUT2Kvp04WA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:46.1094427Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:42.987Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2854' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:46 GMT + mise-correlation-id: + - e3fc697f-43e1-421b-89e1-f03e9df2381a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093746Z-17b7777dc45gwdnlhC1CO1xfmc0000000z70000000004hc4 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:46 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1E5163D720DB44BDAF5C7AAC128C40F0 Ref B: CO6AA3150218023 Ref C: 2024-11-22T09:37:46Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A47Z&sr=b&sp=r&sig=3Vawky7ltEEUuRajPr5KmWnalUHLj1wlTyfaPYhTU70%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:47.0533173Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A47Z&sr=b&sp=r&sig=L3fLSQMUuYL4mRFVKqk3a%2BxaDO8N50WGyLGqX9UxoEY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:47.0538553Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A47Z&sr=b&sp=r&sig=m8ma8tahmSRHtpwM5UkXr0P1duAjiDtWpLPzgY2nL%2Bk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:47.0540026Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:42.987Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2845' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:47 GMT + mise-correlation-id: + - ae351099-b7c1-45b3-9bbf-50e5193c5a42 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093746Z-1846dc7bb4dd6jgnhC1YVR36h8000000057g0000000017qf + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"displayName": "Sample_test_display_name", "description": "Sample_test_description", + "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {"rps": + "1"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": + false, "quickStartTest": false}, "autoStopCriteria": {"autoStopDisabled": false, + "errorRate": 77.5, "errorRateTimeWindowInSeconds": 90}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '390' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A47Z&sr=b&sp=r&sig=CYk8kDRwOm2KbcqMHlq2vlf6M%2FsrCrNB4F2HfGcHAd0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:47.2603223Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A47Z&sr=b&sp=r&sig=%2BaY0rBrs8WLEBCX8YvobIimybQ7Kk738dkyux86WNVk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:47.2612026Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A47Z&sr=b&sp=r&sig=Lmpl5sQutmpkRhh59CwjF0EoEZMKt4RE68IVllTr1cU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:47.2621681Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:47.251Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2846' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:47 GMT + mise-correlation-id: + - e20350e4-4abb-47f4-87de-a6c91bcaa606 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093747Z-1846dc7bb4dd6jgnhC1YVR36h8000000057g0000000017qk + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A47Z&sr=b&sp=r&sig=x1OrrrFkruhQAiZ%2BuyPCL7ertiKxDL3Dl%2FZ%2F7NHECJo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:47.3652559Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A47Z&sr=b&sp=r&sig=%2FOtDqM5%2F7KraWrKhZlVnCsnds5%2BoHGvDuwIM483VcoI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:47:47.3653569Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A47Z&sr=b&sp=r&sig=8C59y1yFMWcHqymkjrq0ZHoBTJxhYhqzQajmpq5xP54%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:47.3654559Z","validationStatus":"VALIDATION_SUCCESS"}]}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '1717' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:47 GMT + mise-correlation-id: + - 64f331de-c024-408f-8a19-079ba25cfa3d + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093747Z-1846dc7bb4dd6jgnhC1YVR36h8000000057g0000000017qq + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A47Z&sr=b&sp=r&sig=jPx0tS7o2Lx5HMXWAoOd%2BzifdWD%2F3bBXbPvKYa%2Fa1Js%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:47.4688509Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A47Z&sr=b&sp=r&sig=SS6dEZ2boIqVErVaI4bm75SBVNIaXiqPFx26S0Yv3xA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:47.4691131Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A47Z&sr=b&sp=r&sig=fP8an5L1a5BnDtSPsUsBh1%2FYNOccraUdHAfx8pFWRWk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:47.4692034Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:47.251Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2850' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:47 GMT + mise-correlation-id: + - 3c5a5322-870e-45d9-8b6f-0db017636103 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093747Z-1846dc7bb4dd6jgnhC1YVR36h8000000057g0000000017qt + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:47 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1D8617975884400E9CF731D33A03E911 Ref B: CO6AA3150219027 Ref C: 2024-11-22T09:37:47Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A48Z&sr=b&sp=r&sig=0yEzF4ABgYW7k88M4sYnPIl6qjutb2kcs%2FIgyEf%2F4kM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:48.2889539Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A48Z&sr=b&sp=r&sig=e5KeCUZ05eMI2dHIiCL0mpiewruMtdXsYEIEF1lR5Lk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:48.2895159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A48Z&sr=b&sp=r&sig=itq6EoPx2m7EqAZXzSBtrnpTU0LSXhQcB1mN14OVNsI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:48.28978Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:47.251Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2844' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:48 GMT + mise-correlation-id: + - 1415a9d4-2189-4fc4-a2db-f666312e1b25 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093748Z-r16f5dbf6762b2c6hC1YVR6b2s00000002q000000000511v + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"displayName": "Sample_test_display_name", "description": "Sample_test_description", + "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {"rps": + "1"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": + false, "quickStartTest": false}, "autoStopCriteria": {"autoStopDisabled": false, + "errorRate": 75.0, "errorRateTimeWindowInSeconds": 90}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '390' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A48Z&sr=b&sp=r&sig=N1QuKOJ6vGvsYs1O33VklvRr0nPzcQ%2BX7VElOUsOTq8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:48.5282179Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A48Z&sr=b&sp=r&sig=iR45VBfuvkC%2B9Ebayk%2BaFcR6nwuxf3gnQKkHkRHp9hs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:48.5286762Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A48Z&sr=b&sp=r&sig=Bw0%2BtYPEF5qs0RVtioDwUsNup1DUlTVSTYilfnJR3So%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:48.5288553Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:48.519Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2850' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:48 GMT + mise-correlation-id: + - 9230bf2a-56ba-4d2d-928c-8f97c5b01aa2 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093748Z-r16f5dbf6762b2c6hC1YVR6b2s00000002q0000000005122 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A48Z&sr=b&sp=r&sig=pwKC%2BiawDMkMmes5bRMgjJnlIez4G4mMb9ZpsTECy1s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:48.6454538Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A48Z&sr=b&sp=r&sig=%2B%2FvUB4r1URgFXFXpKGlZgortK9ygyXcSnCBk%2B%2FE1Sog%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:47:48.6455912Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A48Z&sr=b&sp=r&sig=Ls3gcga9aWS%2F%2F9RRVz6LC%2BfNCY1ipj8nscnevO1wO10%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:48.64572Z","validationStatus":"VALIDATION_SUCCESS"}]}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '1719' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:48 GMT + mise-correlation-id: + - e2957439-0d4b-46ea-bf1d-b2c31149efdc + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093748Z-r16f5dbf6762b2c6hC1YVR6b2s00000002q0000000005128 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A48Z&sr=b&sp=r&sig=d2ugXK%2BfzFMi6U3AB67G8vZo5pacZTYqhSwpuvlnVzs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:48.7455037Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A48Z&sr=b&sp=r&sig=mwHv3E7YdEKC0gG9dDJDvFsNMdM%2FlHRFTICR%2B4odaDw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:48.7458894Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A48Z&sr=b&sp=r&sig=zRBwiFZqqOWW9nhlrPMqVJaLApJzP91aXAH%2B8P3WaRQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:48.7459998Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:48.519Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2850' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:48 GMT + mise-correlation-id: + - 359cda0c-118b-4e4d-a2b2-7ca3ec8d0670 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093748Z-r16f5dbf6762b2c6hC1YVR6b2s00000002q000000000512c + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:49 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: CB943CC5BAB241D19DF1E4D3350046D2 Ref B: CO6AA3150219027 Ref C: 2024-11-22T09:37:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A49Z&sr=b&sp=r&sig=nCTMCqVoy4A2XKwOH1EgMJvDH8LcEBZYr1JEqGb1qfY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:49.5381888Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A49Z&sr=b&sp=r&sig=nxM1zkuy0qGGvTi%2BKWNedlbT3vOJC40k2bTO5K2jjjE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:49.5387502Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A49Z&sr=b&sp=r&sig=V1%2FFn8RbgO3zU2c1qIIF4xHn8%2Fr%2F2ntgB5gq6o3lW7w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:49.5390365Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:48.519Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2850' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:49 GMT + mise-correlation-id: + - a318ce2f-656c-4b6b-88b2-6c224934841a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093749Z-1846dc7bb4d5shr6hC1YVRkvb000000003p000000000304v + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"displayName": "Sample_test_display_name", "description": "Sample_test_description", + "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {"rps": + "1"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": + false, "quickStartTest": false}, "autoStopCriteria": {"autoStopDisabled": true, + "errorRate": 75.0, "errorRateTimeWindowInSeconds": 90}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '389' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A49Z&sr=b&sp=r&sig=31z6eT0iuWRBfmmEa7%2BRWCRSC49VFBRNotXLP6Ft0bU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:49.7907382Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A49Z&sr=b&sp=r&sig=fvG75urBO69m0%2BMQINb2Us%2BU7wtK1elI8872%2B0WCrqs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:49.791386Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A49Z&sr=b&sp=r&sig=J3PH0PXjNtamx0mmetDuFPJlqYCF2bNmx8JxbbFfxsQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:49.7916205Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:49.78Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2847' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:49 GMT + mise-correlation-id: + - 2e1a5899-7895-417b-aece-b510907388a2 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093749Z-1846dc7bb4d5shr6hC1YVRkvb000000003p000000000304z + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A49Z&sr=b&sp=r&sig=M9mHJTjdN4aIHaqlUxb1YZ%2BqZI85k%2FxURbaX3gRrNhc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:49.9055414Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A49Z&sr=b&sp=r&sig=bgH4KnlbYu4l0z%2FeMFEZjZ4yfUhXOM5de01AHIBMJKo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:47:49.9056138Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A49Z&sr=b&sp=r&sig=NobKtDbqLmo6qCW4Di%2BJLqT8f%2F0MZxmrwqvEVFIqO6M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:49.9056771Z","validationStatus":"VALIDATION_SUCCESS"}]}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '1715' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:49 GMT + mise-correlation-id: + - e77c566b-bb8c-47e6-85ce-8956fbc39980 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093749Z-1846dc7bb4d5shr6hC1YVRkvb000000003p000000000305b + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A50Z&sr=b&sp=r&sig=3ei6R0p3uPsT7tVvXuSXeHYV%2F9dV58XfRyyVaiquaZo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:50.0057004Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A50Z&sr=b&sp=r&sig=SJGYUOH3C9w%2BFHsltc1AiRuHS5XQqSEuSAzIuHtS%2FnU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:50.0060531Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A50Z&sr=b&sp=r&sig=wi1pRNmZXwKK25xUYLax6vesVVM27i1LmBGbhC4JNnw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:50.0061882Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:49.78Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2846' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:50 GMT + mise-correlation-id: + - 3decbd25-dc1c-4bc1-bdde-43827f2c0432 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093749Z-1846dc7bb4d5shr6hC1YVRkvb000000003p000000000305q + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:50 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0521AA19A06B4015BADFB5E1B8D15AC9 Ref B: CO6AA3150219023 Ref C: 2024-11-22T09:37:50Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"74c53f9b-d297-40db-9b95-fff6d2c06674":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9f70eba-fdfd-4fea-adb8-815c210af742":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A50Z&sr=b&sp=r&sig=m4reOt3TgwkxxXrxeJFPv%2BWq7vFIoUViOma5XGyjT3Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:50.9444782Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A50Z&sr=b&sp=r&sig=bgJGK9F3c7nquu6Y0ILHO53SXUmuh2t7RVYtZbl%2FIu4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:50.944947Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A50Z&sr=b&sp=r&sig=DDQllPmQxUkC5LedHtL84W9MNZ5t9Rk5fZQfQNoidYU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:50.9451743Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:49.78Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2843' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:50 GMT + mise-correlation-id: + - 5671bf49-6991-4eb1-bffe-bb2134276795 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093750Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g00000000144y + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"displayName": "CLI-Test-Autostop-Criteria", "description": "Test created + from az load test command", "keyvaultReferenceIdentityType": "SystemAssigned", + "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, + "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": {"74c53f9b-d297-40db-9b95-fff6d2c06674": + null, "e9f70eba-fdfd-4fea-adb8-815c210af742": null, "ee06c2ee-f550-4ff8-9a14-0e29b7b13b9e": + null, "9826836b-c423-4692-a27c-82d5a7244d1d": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "6dab185a-fcce-4c48-820f-51c4a1285d95": + {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": + "50"}, "a38ae66c-c9e5-4082-84d5-7922969a3669": {"aggregate": "avg", "clientMetric": + "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, + "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 85, "errorRateTimeWindowInSeconds": + 120}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1050' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"a38ae66c-c9e5-4082-84d5-7922969a3669":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"6dab185a-fcce-4c48-820f-51c4a1285d95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9826836b-c423-4692-a27c-82d5a7244d1d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":85.0,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A51Z&sr=b&sp=r&sig=Zoc6VAcek%2F6iq%2BZf3uJUQdJcRSB8beustHfIoM4oCSE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:37:51.1364662Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A51Z&sr=b&sp=r&sig=%2BslMpwGCX1CEsU0ExPmT0ralOecv1eIYcHnhZtXRRoQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:37:51.1367716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A37%3A51Z&sr=b&sp=r&sig=7b8x0ptU4QycJ484Y1atJG1bzxmLRMy8Xuqcb%2FjFWtk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:37:51.1368892Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:37:51.125Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2867' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:51 GMT + mise-correlation-id: + - d2d1d432-c469-4e4f-a900-93ac2530d394 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093750Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g000000001459 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c6929a67-3043-4161-bead-dfa672199924?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A51Z&sr=b&sp=r&sig=F3deQFPEdJwLgcwvX4aSe4BRFt2qm%2BV7L5d8RZjTZcM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:47:51.2557047Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f752abe4-6616-4d39-bd60-4cd78eb5729f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A51Z&sr=b&sp=r&sig=Ab51bweN1OPMn%2BuUaY3hekWQaD0as3ebcEoFrZLN%2FBE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:47:51.255794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/10a61e73-8ef9-449c-8630-e36f41253b4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A51Z&sr=b&sp=r&sig=SdkkfLT1voNcwTOLyy8mpPnGxaL9c43qts1OEwKXBA8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:51.2558796Z","validationStatus":"VALIDATION_SUCCESS"}]}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '1710' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:51 GMT + mise-correlation-id: + - dabc1b83-d23c-41a0-8bd8-2873920a31f6 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093751Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g00000000145g + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: DELETE + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + date: + - Fri, 22 Nov 2024 09:37:51 GMT + mise-correlation-id: + - c9b63fa2-3850-4e1d-a0f7-f0332f6958e0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093751Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g00000000145r + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + YSxiLGMsZA0KMSwyLDMsNA0K + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '18' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/0ccbd859-de6c-4414-8fe4-7913f63649dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A52Z&sr=b&sp=r&sig=TBTKh7LMBtfAjtSCQVhYoxkMcXblZGR6z1zcP%2FucGO4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:47:52.5637255Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '573' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:52 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview + mise-correlation-id: + - e94969a1-bfc5-488a-af52-99546fff8151 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093751Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g000000001461 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/0ccbd859-de6c-4414-8fe4-7913f63649dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A52Z&sr=b&sp=r&sig=hTOFF0k48K0xSxu9dFxXXiGfdjFh6YW1a3NSuZgePeU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:47:52.6655261Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '571' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:52 GMT + mise-correlation-id: + - 61970476-6e1d-49b5-be43-89b64e137975 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093752Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g00000000147p + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + UEsDBBQACAAIAANbLVkAAAAAAAAAABIAAAATACAAYWRkaXRpb25hbC1kYXRhLmNzdlVUDQAHf9Pj + ZneG/2a5hP9mdXgLAAEEAAAAAAQAAAAAS9RJ0knWSeHlMtQx0jHWMeHlAgBQSwcI/dwPKxQAAAAS + AAAAUEsBAhQDFAAIAAgAA1stWf3cDysUAAAAEgAAABMAIAAAAAAAAAAAALaBAAAAAGFkZGl0aW9u + YWwtZGF0YS5jc3ZVVA0AB3/T42Z3hv9muYT/ZnV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAGEA + AAB1AAAAAAA= + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '236' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A53Z&sr=b&sp=r&sig=7nf3SqUD0GBLhfkZZrCZXFfhWnXfQg7aOfZ0LczMAEw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:53.123875Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '567' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:53 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + mise-correlation-id: + - 3882f676-822a-41fd-be0d-b0121fd598ea + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093752Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g00000000147y + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A53Z&sr=b&sp=r&sig=WrgArcyH8PwDofPlgXccVoSD7uS%2F3EFxfg7l2jTBvb4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:53.2270583Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:53 GMT + mise-correlation-id: + - 85f715bc-feb1-42c8-adc7-ce4864b9da4b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093753Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g00000000148b + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A47%3A58Z&sr=b&sp=r&sig=FqLnNCNbGsjlXHLPlJSAhnhSse%2F5EMhysTvalZGdln4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:47:58.3385015Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:37:58 GMT + mise-correlation-id: + - ccc399f1-fe0d-4e5c-ae96-c26642969675 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093758Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000014dh + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A03Z&sr=b&sp=r&sig=MPjaUU2MDAO4CZHvskTuUuPbm9wRCHvw4LvApjEJnWA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:48:03.4421123Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:03 GMT + mise-correlation-id: + - 9bab61c1-9d1e-4f7b-90a4-de1b19f2ce37 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093803Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000014hy + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A08Z&sr=b&sp=r&sig=0eGa9HUbHjstC6bpoOKtcbXUezZD%2F2WP3CDPLCd3JkA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:48:08.5470997Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:08 GMT + mise-correlation-id: + - 5e9ecafb-466a-4ba9-b641-8a6874488f1e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093808Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000014sc + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A13Z&sr=b&sp=r&sig=Q6%2B3FirKpopUpi%2Bk7fI0qIUPqQN33h%2FcIXtz0cwLaxU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:48:13.6619728Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:13 GMT + mise-correlation-id: + - d759d537-800c-4c42-9670-31b5dbd282f2 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093813Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000014ya + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A18Z&sr=b&sp=r&sig=nfkMFybjELKE%2FCJKd5yv3ofHwAlPD3vlzQQGXKqEUfA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:48:18.7659752Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:18 GMT + mise-correlation-id: + - 35da9671-ed5e-4513-a3c1-a80f8ef66b69 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093818Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g00000000154w + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxqbWV0ZXJUZXN0UGxhbiB2 + ZXJzaW9uPSIxLjIiIHByb3BlcnRpZXM9IjUuMCIgam1ldGVyPSI1LjUiPg0KICA8aGFzaFRyZWU+ + DQogICAgPFRlc3RQbGFuIGd1aWNsYXNzPSJUZXN0UGxhbkd1aSIgdGVzdGNsYXNzPSJUZXN0UGxh + biIgdGVzdG5hbWU9IkF6dXJlIExvYWQgVGVzdGluZyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICA8 + c3RyaW5nUHJvcCBuYW1lPSJUZXN0UGxhbi5jb21tZW50cyI+PC9zdHJpbmdQcm9wPg0KICAgICAg + PGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLmZ1bmN0aW9uYWxfbW9kZSI+ZmFsc2U8L2Jvb2xQcm9w + Pg0KICAgICAgPGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLnRlYXJEb3duX29uX3NodXRkb3duIj50 + cnVlPC9ib29sUHJvcD4NCiAgICAgIDxib29sUHJvcCBuYW1lPSJUZXN0UGxhbi5zZXJpYWxpemVf + dGhyZWFkZ3JvdXBzIj5mYWxzZTwvYm9vbFByb3A+DQogICAgICA8ZWxlbWVudFByb3AgbmFtZT0i + VGVzdFBsYW4udXNlcl9kZWZpbmVkX3ZhcmlhYmxlcyIgZWxlbWVudFR5cGU9IkFyZ3VtZW50cyIg + Z3VpY2xhc3M9IkFyZ3VtZW50c1BhbmVsIiB0ZXN0Y2xhc3M9IkFyZ3VtZW50cyIgdGVzdG5hbWU9 + IlVzZXIgRGVmaW5lZCBWYXJpYWJsZXMiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICA8Y29sbGVj + dGlvblByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgPC9lbGVtZW50UHJv + cD4NCiAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IlRlc3RQbGFuLnVzZXJfZGVmaW5lX2NsYXNzcGF0 + aCI+PC9zdHJpbmdQcm9wPg0KICAgIDwvVGVzdFBsYW4+DQogICAgPGhhc2hUcmVlPg0KICAgICAg + PEFyZ3VtZW50cyBndWljbGFzcz0iQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRz + IiB0ZXN0bmFtZT0iVXNlciBEZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAg + ICAgIDxjb2xsZWN0aW9uUHJvcCBuYW1lPSJBcmd1bWVudHMuYXJndW1lbnRzIj4NCiAgICAgICAg + ICA8ZWxlbWVudFByb3AgbmFtZT0iZHVyYXRpb25faW5fc2VjIiBlbGVtZW50VHlwZT0iQXJndW1l + bnQiPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubmFtZSI+ZHVyYXRp + b25faW5fc2VjPC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJn + dW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5nZXRlbnYoJnF1b3Q7ZHVyYXRpb25faW5f + c2VjJnF1b3Q7KSA/OiAmcXVvdDsxMCZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAg + IDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAg + ICAgICAgIDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9InJwcyIg + ZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFy + Z3VtZW50Lm5hbWUiPnJwczwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3JwcyZx + dW90OykgPzogJnF1b3Q7MSZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJp + bmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAgICAgICAg + IDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9ImRvbWFpbiIgZWxl + bWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3Vt + ZW50Lm5hbWUiPmRvbWFpbjwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O2RvbWFp + biZxdW90OykgPzogJnF1b3Q7ZXhhbXBsZS5jb20mcXVvdDsgKX08L3N0cmluZ1Byb3A+DQogICAg + ICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5tZXRhZGF0YSI+PTwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICA8L2VsZW1lbnRQcm9wPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1l + PSJwcm90b2NvbCIgZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQ + cm9wIG5hbWU9IkFyZ3VtZW50Lm5hbWUiPnByb3RvY29sPC9zdHJpbmdQcm9wPg0KICAgICAgICAg + ICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5n + ZXRlbnYoJnF1b3Q7cHJvdG9jb2wmcXVvdDspID86ICZxdW90O2h0dHBzJnF1b3Q7ICl9PC9zdHJp + bmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubWV0YWRhdGEi + Pj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAgICAgICA8ZWxl + bWVudFByb3AgbmFtZT0idXJsX3BhdGgiIGVsZW1lbnRUeXBlPSJBcmd1bWVudCI+DQogICAgICAg + ICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5uYW1lIj51cmxfcGF0aDwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jv + b3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3VybF9wYXRoJnF1b3Q7KSA/OiAmcXVvdDsvJnF1b3Q7 + ICl9PC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQu + bWV0YWRhdGEiPj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAg + ICAgPC9jb2xsZWN0aW9uUHJvcD4NCiAgICAgIDwvQXJndW1lbnRzPg0KICAgICAgPGhhc2hUcmVl + Lz4NCiAgICAgIDxPcGVuTW9kZWxUaHJlYWRHcm91cCBndWljbGFzcz0iT3Blbk1vZGVsVGhyZWFk + R3JvdXBHdWkiIHRlc3RjbGFzcz0iT3Blbk1vZGVsVGhyZWFkR3JvdXAiIHRlc3RuYW1lPSJPcGVu + IE1vZGVsIFRocmVhZCBHcm91cCIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgIDxlbGVtZW50UHJv + cCBuYW1lPSJUaHJlYWRHcm91cC5tYWluX2NvbnRyb2xsZXIiIGVsZW1lbnRUeXBlPSJPcGVuTW9k + ZWxUaHJlYWRHcm91cENvbnRyb2xsZXIiLz4NCiAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iVGhy + ZWFkR3JvdXAub25fc2FtcGxlX2Vycm9yIj5jb250aW51ZTwvc3RyaW5nUHJvcD4NCiAgICAgICAg + PHN0cmluZ1Byb3AgbmFtZT0iT3Blbk1vZGVsVGhyZWFkR3JvdXAuc2NoZWR1bGUiPnJhdGUoJHty + cHN9L3NlYykgcmFuZG9tX2Fycml2YWxzKCR7ZHVyYXRpb25faW5fc2VjfSBzZWMpPC9zdHJpbmdQ + cm9wPg0KICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJPcGVuTW9kZWxUaHJlYWRHcm91cC5yYW5k + b21fc2VlZCI+PC9zdHJpbmdQcm9wPg0KICAgICAgPC9PcGVuTW9kZWxUaHJlYWRHcm91cD4NCiAg + ICAgIDxoYXNoVHJlZT4NCiAgICAgICAgPEhUVFBTYW1wbGVyUHJveHkgZ3VpY2xhc3M9Ikh0dHBU + ZXN0U2FtcGxlR3VpIiB0ZXN0Y2xhc3M9IkhUVFBTYW1wbGVyUHJveHkiIHRlc3RuYW1lPSJIVFRQ + IFJlcXVlc3QiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1lPSJI + VFRQc2FtcGxlci5Bcmd1bWVudHMiIGVsZW1lbnRUeXBlPSJBcmd1bWVudHMiIGd1aWNsYXNzPSJI + VFRQQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRzIiB0ZXN0bmFtZT0iVXNlciBE + ZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgICAgICA8Y29sbGVjdGlv + blByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgICAgIDwvZWxlbWVudFBy + b3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBsZXIuZG9tYWluIj4ke2Rv + bWFpbn08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBs + ZXIucG9ydCI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBT + YW1wbGVyLnByb3RvY29sIj4ke3Byb3RvY29sfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3Ry + aW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5jb250ZW50RW5jb2RpbmciPjwvc3RyaW5nUHJvcD4N + CiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5wYXRoIj4ke3VybF9wYXRo + fTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5t + ZXRob2QiPkdFVDwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8Ym9vbFByb3AgbmFtZT0iSFRUUFNh + bXBsZXIuZm9sbG93X3JlZGlyZWN0cyI+dHJ1ZTwvYm9vbFByb3A+DQogICAgICAgICAgPGJvb2xQ + cm9wIG5hbWU9IkhUVFBTYW1wbGVyLmF1dG9fcmVkaXJlY3RzIj5mYWxzZTwvYm9vbFByb3A+DQog + ICAgICAgICAgPGJvb2xQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnVzZV9rZWVwYWxpdmUiPnRydWU8 + L2Jvb2xQcm9wPg0KICAgICAgICAgIDxib29sUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5ET19NVUxU + SVBBUlRfUE9TVCI+ZmFsc2U8L2Jvb2xQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9 + IkhUVFBTYW1wbGVyLmVtYmVkZGVkX3VybF9yZSI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxz + dHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLmNvbm5lY3RfdGltZW91dCI+PC9zdHJpbmdQcm9w + Pg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnJlc3BvbnNlX3RpbWVv + dXQiPjwvc3RyaW5nUHJvcD4NCiAgICAgICAgPC9IVFRQU2FtcGxlclByb3h5Pg0KICAgICAgICA8 + aGFzaFRyZWUvPg0KICAgICAgPC9oYXNoVHJlZT4NCiAgICA8L2hhc2hUcmVlPg0KICA8L2hhc2hU + cmVlPg0KPC9qbWV0ZXJUZXN0UGxhbj4NCg== + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '4870' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A19Z&sr=b&sp=r&sig=EiM7EVYADZtx4mE%2Fa0ZNtqMSKFCepmIkLfiDV7keb2c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:48:19.9956398Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:19 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + mise-correlation-id: + - 19bbfb6b-3221-4e79-9256-6ac318683bff + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093818Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g000000001550 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A20Z&sr=b&sp=r&sig=imj5yM9XZL%2Fr3QMlwL2iKCnNRylnXOQzFMUqec1MpEk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:48:20.0992533Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:20 GMT + mise-correlation-id: + - 1e1776ff-0d16-4cdf-9801-62556d7c917a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093820Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g000000001568 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A25Z&sr=b&sp=r&sig=LewNsJIa%2BYkjtIJfsvnxp5JMYqyeyh%2BqNYnbksq1tVI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:48:25.216037Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '559' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:25 GMT + mise-correlation-id: + - 6c9415f2-b108-4b78-8118-260344e93663 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093825Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000015bs + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A30Z&sr=b&sp=r&sig=UgQSGZOvlDY5yzNCT94H%2BoPjgjIZ1dz6mwFNLoCocQk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:48:30.3270608Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:30 GMT + mise-correlation-id: + - a942a1d1-a30f-46f1-92ea-0ff7500cbe0a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093830Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000015hz + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A35Z&sr=b&sp=r&sig=GfNJyNdTk9Qul4CTGbia9U39b%2Fr1ogv8G1813Yr%2BLeU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:48:35.4439626Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:35 GMT + mise-correlation-id: + - a4aa6718-90a6-4e6c-8725-f5b57ef16f73 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093835Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000015re + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A40Z&sr=b&sp=r&sig=hOrI1OWS9I0UJ%2BX8FCjc%2FcCcguXKEbTpH%2FPvor7nj8A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:48:40.5474675Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:40 GMT + mise-correlation-id: + - da7709d4-93df-4d8e-8181-a8a30aabcf1b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093840Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000015xv + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A45Z&sr=b&sp=r&sig=KdxYzveoZj1J2Au%2F3a6aMprcPIxKZkHaA8QalkjgnkA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:48:45.6526053Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:45 GMT + mise-correlation-id: + - 10a8a9c7-7458-4f2b-853d-7f3d65ec7060 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093845Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g00000000163h + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A50Z&sr=b&sp=r&sig=%2FC%2FEdr4M12saCTO1u7hVjDFvJ%2F%2FaYXl%2BucqxtcsIeqc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:48:50.7572609Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '566' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:50 GMT + mise-correlation-id: + - 641d3ee6-149e-4b7d-b94d-d876a8325db7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093850Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000016b8 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A55Z&sr=b&sp=r&sig=EbtjnoaCgbxJ4OuKn%2B1bIX8%2BiIluEGP5NupzGkvasbQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:48:55.8646065Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:55 GMT + mise-correlation-id: + - 4d866b6f-d9e9-4385-9bd4-9d3a7273ca88 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093855Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000016kh + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"a38ae66c-c9e5-4082-84d5-7922969a3669":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"6dab185a-fcce-4c48-820f-51c4a1285d95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9826836b-c423-4692-a27c-82d5a7244d1d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":85.0,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A38%3A55Z&sr=b&sp=r&sig=KgbCTxTPBk6Ifl8j6gG8tE2iq%2BVt3WLkws3JAbt9g30%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:38:55.9644594Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A38%3A55Z&sr=b&sp=r&sig=nwda7GrbkAHrncPoAfYl%2BNZbolHPAXFOqfhegDbJCvA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:38:55.9649506Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/0ccbd859-de6c-4414-8fe4-7913f63649dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A38%3A55Z&sr=b&sp=r&sig=73sQK%2BlXIpRkmDGKgNVxXuVuO7LqAB5bFjQkGv4uNng%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:38:55.9651674Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:38:51.557Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2865' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:55 GMT + mise-correlation-id: + - cd389727-2eec-4ceb-929d-8fe45f9b8f48 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093855Z-1846dc7bb4dszzvhhC1YVRq2b0000000053g0000000016kq + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:56 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0DF10C03108A43838DEED2032D919F0A Ref B: CO6AA3150220035 Ref C: 2024-11-22T09:38:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"a38ae66c-c9e5-4082-84d5-7922969a3669":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"6dab185a-fcce-4c48-820f-51c4a1285d95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9826836b-c423-4692-a27c-82d5a7244d1d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":85.0,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A38%3A56Z&sr=b&sp=r&sig=p4e2GvJjygYLzYSeJfuRdtqmSByXfo%2B1HXDg1%2B6%2Fe28%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:38:56.8066525Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A38%3A56Z&sr=b&sp=r&sig=95r9AwU0Q%2B4R%2BZbyD2VK4HnvNiQ101T9fuC4HJZhetY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:38:56.8070584Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/0ccbd859-de6c-4414-8fe4-7913f63649dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A38%3A56Z&sr=b&sp=r&sig=jn8Q1UC29RuU1K0zw5HzRrL1%2FLh%2BGKND%2FCJ1gH%2BdJvQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:38:56.8072856Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:38:51.557Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2877' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:56 GMT + mise-correlation-id: + - c6163cb3-b0c4-465b-ae92-9e08029aa469 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093856Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003m3c + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"displayName": "CLI-Test", "description": "Test created from az load test + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, + "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": + true}, "passFailCriteria": {"passFailMetrics": {"a38ae66c-c9e5-4082-84d5-7922969a3669": + null, "6dab185a-fcce-4c48-820f-51c4a1285d95": null, "9826836b-c423-4692-a27c-82d5a7244d1d": + null, "b719745c-16a0-4009-a711-fe906528bab5": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "21520d79-77d2-4ce1-b903-db3bde7ac696": + {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": + "50"}, "41d4e781-df6a-4c4c-a504-da56561dc6fe": {"aggregate": "avg", "clientMetric": + "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, + "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 98.5, "errorRateTimeWindowInSeconds": + 120}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1034' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"41d4e781-df6a-4c4c-a504-da56561dc6fe":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"21520d79-77d2-4ce1-b903-db3bde7ac696":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b719745c-16a0-4009-a711-fe906528bab5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A38%3A57Z&sr=b&sp=r&sig=I11KFAheLWQL8DCsbTwUQRE3tFbOERg%2F2GIqVklMDpw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:38:57.1463893Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A38%3A57Z&sr=b&sp=r&sig=05Y%2Fwv0T%2Fuo643y%2BpMAt7eTKSNmQMLRPtUTa3QXxGaI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:38:57.1468307Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/0ccbd859-de6c-4414-8fe4-7913f63649dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A38%3A57Z&sr=b&sp=r&sig=q8R5noAsYU60ceWtCvv1oeJeN%2FNaYUIR772xl4r91%2Bk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:38:57.1469221Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:38:57.136Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2853' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:57 GMT + mise-correlation-id: + - 03ac84c7-77ec-4ab3-99c2-672b35502cab + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093856Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003m3v + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/19f67ddf-68e6-4002-9364-90330bd2c69c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A57Z&sr=b&sp=r&sig=mfO0paSaLr6uDFYOUcEdPju9vhH8%2FY7BBXK5Y1%2BXLnk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:48:57.2548549Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/f0c6cbc4-65a2-4872-a6ef-1b9b314f754c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A57Z&sr=b&sp=r&sig=6HA3vr3R9mBsr8OkjzyuNcVMrWO7E43lbe7BYJLr2gA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:48:57.255016Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/0ccbd859-de6c-4414-8fe4-7913f63649dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A57Z&sr=b&sp=r&sig=7Iw4Fs1O%2BYczBtRJxOcisYdljwMwtlOjVwZqSTf%2Fy00%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:48:57.2551441Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '1712' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:57 GMT + mise-correlation-id: + - 8e2baa76-800e-45a0-b66c-abd19cadef80 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093857Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003m4s + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: DELETE + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + date: + - Fri, 22 Nov 2024 09:38:57 GMT + mise-correlation-id: + - 510f807a-09cc-4b9e-a403-5c0644b68ca0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093857Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003m4w + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + YSxiLGMsZA0KMSwyLDMsNA0K + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '18' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/64e6c428-7ea9-410a-8389-03c12ce500e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A57Z&sr=b&sp=r&sig=i8LIuU%2FYaBITTCjef%2BJDiAclCf7LbvDWUifJD7GOtLk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:48:57.7147074Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:57 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview + mise-correlation-id: + - f233f2bc-bbbc-4f03-99f6-2250a68366db + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093857Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003m53 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/64e6c428-7ea9-410a-8389-03c12ce500e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A57Z&sr=b&sp=r&sig=xdvVeiWlRR2zXYIQRFjVSjFi7ID0MhC9cZrOnxlD3%2Bw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:48:57.8237463Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '573' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:57 GMT + mise-correlation-id: + - fbd913f8-a2c3-4606-956c-f91e426fbe09 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093857Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003m5q + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + UEsDBBQACAAIAANbLVkAAAAAAAAAABIAAAATACAAYWRkaXRpb25hbC1kYXRhLmNzdlVUDQAHf9Pj + ZneG/2a5hP9mdXgLAAEEAAAAAAQAAAAAS9RJ0knWSeHlMtQx0jHWMeHlAgBQSwcI/dwPKxQAAAAS + AAAAUEsBAhQDFAAIAAgAA1stWf3cDysUAAAAEgAAABMAIAAAAAAAAAAAALaBAAAAAGFkZGl0aW9u + YWwtZGF0YS5jc3ZVVA0AB3/T42Z3hv9muYT/ZnV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAGEA + AAB1AAAAAAA= + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '236' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A59Z&sr=b&sp=r&sig=NXOlJljT%2BPHCpXyNjeGV%2FA8Yz6ayQ5ckFzj%2FfjQZKPc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:48:59.1585199Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:59 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + mise-correlation-id: + - 18e89784-06eb-48e0-85b1-8f4b7b9f4062 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093857Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003m5u + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A48%3A59Z&sr=b&sp=r&sig=NXOlJljT%2BPHCpXyNjeGV%2FA8Yz6ayQ5ckFzj%2FfjQZKPc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:48:59.2592455Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:38:59 GMT + mise-correlation-id: + - 6a9ac8bd-6e8a-4a44-865f-6f5191c29bcc + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093859Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003m83 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A04Z&sr=b&sp=r&sig=sgJlXwJVbhod3v0vtlb8a%2BWMZRF7DVoTpfqydKgmORM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:49:04.3869548Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:04 GMT + mise-correlation-id: + - 9a737546-5626-46d2-a477-4b61e9b5875a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093904Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003mgc + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A09Z&sr=b&sp=r&sig=w5t%2Bp3aqIpbsx9Ycvwnx0xXui2b1OWWLS0l0LNmhFC8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:49:09.4971241Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:09 GMT + mise-correlation-id: + - 4d56db0d-bb07-4d23-ad87-5af76cbb31d3 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093909Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003msk + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A14Z&sr=b&sp=r&sig=hPaIMAwSUj4X9%2FYgSGQ3zg1sr4pS%2BJDPSkE1PFIJRyg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:49:14.6151278Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '572' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:14 GMT + mise-correlation-id: + - 21fb2027-5a66-435d-903e-3ad31c19d5a2 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093914Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003mzu + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A19Z&sr=b&sp=r&sig=5bIwTBAvSOrBcGY9KapB3l8hkBR%2FxPmmZUy9xlpWJR4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:49:19.7330032Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:19 GMT + mise-correlation-id: + - 3c68fa49-995d-493e-98a7-f66936d9dadb + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093919Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003n6u + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A24Z&sr=b&sp=r&sig=XUizloPtxi53%2FLUJiv0Jw8nhhTDpXFzzkBV3ywVSp%2Bg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:49:24.8479709Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:24 GMT + mise-correlation-id: + - a04b9887-1ea8-4b18-8f20-fc492c264f96 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093924Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003ncz + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxqbWV0ZXJUZXN0UGxhbiB2 + ZXJzaW9uPSIxLjIiIHByb3BlcnRpZXM9IjUuMCIgam1ldGVyPSI1LjUiPg0KICA8aGFzaFRyZWU+ + DQogICAgPFRlc3RQbGFuIGd1aWNsYXNzPSJUZXN0UGxhbkd1aSIgdGVzdGNsYXNzPSJUZXN0UGxh + biIgdGVzdG5hbWU9IkF6dXJlIExvYWQgVGVzdGluZyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICA8 + c3RyaW5nUHJvcCBuYW1lPSJUZXN0UGxhbi5jb21tZW50cyI+PC9zdHJpbmdQcm9wPg0KICAgICAg + PGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLmZ1bmN0aW9uYWxfbW9kZSI+ZmFsc2U8L2Jvb2xQcm9w + Pg0KICAgICAgPGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLnRlYXJEb3duX29uX3NodXRkb3duIj50 + cnVlPC9ib29sUHJvcD4NCiAgICAgIDxib29sUHJvcCBuYW1lPSJUZXN0UGxhbi5zZXJpYWxpemVf + dGhyZWFkZ3JvdXBzIj5mYWxzZTwvYm9vbFByb3A+DQogICAgICA8ZWxlbWVudFByb3AgbmFtZT0i + VGVzdFBsYW4udXNlcl9kZWZpbmVkX3ZhcmlhYmxlcyIgZWxlbWVudFR5cGU9IkFyZ3VtZW50cyIg + Z3VpY2xhc3M9IkFyZ3VtZW50c1BhbmVsIiB0ZXN0Y2xhc3M9IkFyZ3VtZW50cyIgdGVzdG5hbWU9 + IlVzZXIgRGVmaW5lZCBWYXJpYWJsZXMiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICA8Y29sbGVj + dGlvblByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgPC9lbGVtZW50UHJv + cD4NCiAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IlRlc3RQbGFuLnVzZXJfZGVmaW5lX2NsYXNzcGF0 + aCI+PC9zdHJpbmdQcm9wPg0KICAgIDwvVGVzdFBsYW4+DQogICAgPGhhc2hUcmVlPg0KICAgICAg + PEFyZ3VtZW50cyBndWljbGFzcz0iQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRz + IiB0ZXN0bmFtZT0iVXNlciBEZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAg + ICAgIDxjb2xsZWN0aW9uUHJvcCBuYW1lPSJBcmd1bWVudHMuYXJndW1lbnRzIj4NCiAgICAgICAg + ICA8ZWxlbWVudFByb3AgbmFtZT0iZHVyYXRpb25faW5fc2VjIiBlbGVtZW50VHlwZT0iQXJndW1l + bnQiPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubmFtZSI+ZHVyYXRp + b25faW5fc2VjPC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJn + dW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5nZXRlbnYoJnF1b3Q7ZHVyYXRpb25faW5f + c2VjJnF1b3Q7KSA/OiAmcXVvdDsxMCZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAg + IDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAg + ICAgICAgIDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9InJwcyIg + ZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFy + Z3VtZW50Lm5hbWUiPnJwczwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3JwcyZx + dW90OykgPzogJnF1b3Q7MSZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJp + bmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAgICAgICAg + IDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9ImRvbWFpbiIgZWxl + bWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3Vt + ZW50Lm5hbWUiPmRvbWFpbjwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O2RvbWFp + biZxdW90OykgPzogJnF1b3Q7ZXhhbXBsZS5jb20mcXVvdDsgKX08L3N0cmluZ1Byb3A+DQogICAg + ICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5tZXRhZGF0YSI+PTwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICA8L2VsZW1lbnRQcm9wPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1l + PSJwcm90b2NvbCIgZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQ + cm9wIG5hbWU9IkFyZ3VtZW50Lm5hbWUiPnByb3RvY29sPC9zdHJpbmdQcm9wPg0KICAgICAgICAg + ICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5n + ZXRlbnYoJnF1b3Q7cHJvdG9jb2wmcXVvdDspID86ICZxdW90O2h0dHBzJnF1b3Q7ICl9PC9zdHJp + bmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubWV0YWRhdGEi + Pj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAgICAgICA8ZWxl + bWVudFByb3AgbmFtZT0idXJsX3BhdGgiIGVsZW1lbnRUeXBlPSJBcmd1bWVudCI+DQogICAgICAg + ICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5uYW1lIj51cmxfcGF0aDwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jv + b3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3VybF9wYXRoJnF1b3Q7KSA/OiAmcXVvdDsvJnF1b3Q7 + ICl9PC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQu + bWV0YWRhdGEiPj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAg + ICAgPC9jb2xsZWN0aW9uUHJvcD4NCiAgICAgIDwvQXJndW1lbnRzPg0KICAgICAgPGhhc2hUcmVl + Lz4NCiAgICAgIDxPcGVuTW9kZWxUaHJlYWRHcm91cCBndWljbGFzcz0iT3Blbk1vZGVsVGhyZWFk + R3JvdXBHdWkiIHRlc3RjbGFzcz0iT3Blbk1vZGVsVGhyZWFkR3JvdXAiIHRlc3RuYW1lPSJPcGVu + IE1vZGVsIFRocmVhZCBHcm91cCIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgIDxlbGVtZW50UHJv + cCBuYW1lPSJUaHJlYWRHcm91cC5tYWluX2NvbnRyb2xsZXIiIGVsZW1lbnRUeXBlPSJPcGVuTW9k + ZWxUaHJlYWRHcm91cENvbnRyb2xsZXIiLz4NCiAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iVGhy + ZWFkR3JvdXAub25fc2FtcGxlX2Vycm9yIj5jb250aW51ZTwvc3RyaW5nUHJvcD4NCiAgICAgICAg + PHN0cmluZ1Byb3AgbmFtZT0iT3Blbk1vZGVsVGhyZWFkR3JvdXAuc2NoZWR1bGUiPnJhdGUoJHty + cHN9L3NlYykgcmFuZG9tX2Fycml2YWxzKCR7ZHVyYXRpb25faW5fc2VjfSBzZWMpPC9zdHJpbmdQ + cm9wPg0KICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJPcGVuTW9kZWxUaHJlYWRHcm91cC5yYW5k + b21fc2VlZCI+PC9zdHJpbmdQcm9wPg0KICAgICAgPC9PcGVuTW9kZWxUaHJlYWRHcm91cD4NCiAg + ICAgIDxoYXNoVHJlZT4NCiAgICAgICAgPEhUVFBTYW1wbGVyUHJveHkgZ3VpY2xhc3M9Ikh0dHBU + ZXN0U2FtcGxlR3VpIiB0ZXN0Y2xhc3M9IkhUVFBTYW1wbGVyUHJveHkiIHRlc3RuYW1lPSJIVFRQ + IFJlcXVlc3QiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1lPSJI + VFRQc2FtcGxlci5Bcmd1bWVudHMiIGVsZW1lbnRUeXBlPSJBcmd1bWVudHMiIGd1aWNsYXNzPSJI + VFRQQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRzIiB0ZXN0bmFtZT0iVXNlciBE + ZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgICAgICA8Y29sbGVjdGlv + blByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgICAgIDwvZWxlbWVudFBy + b3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBsZXIuZG9tYWluIj4ke2Rv + bWFpbn08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBs + ZXIucG9ydCI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBT + YW1wbGVyLnByb3RvY29sIj4ke3Byb3RvY29sfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3Ry + aW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5jb250ZW50RW5jb2RpbmciPjwvc3RyaW5nUHJvcD4N + CiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5wYXRoIj4ke3VybF9wYXRo + fTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5t + ZXRob2QiPkdFVDwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8Ym9vbFByb3AgbmFtZT0iSFRUUFNh + bXBsZXIuZm9sbG93X3JlZGlyZWN0cyI+dHJ1ZTwvYm9vbFByb3A+DQogICAgICAgICAgPGJvb2xQ + cm9wIG5hbWU9IkhUVFBTYW1wbGVyLmF1dG9fcmVkaXJlY3RzIj5mYWxzZTwvYm9vbFByb3A+DQog + ICAgICAgICAgPGJvb2xQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnVzZV9rZWVwYWxpdmUiPnRydWU8 + L2Jvb2xQcm9wPg0KICAgICAgICAgIDxib29sUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5ET19NVUxU + SVBBUlRfUE9TVCI+ZmFsc2U8L2Jvb2xQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9 + IkhUVFBTYW1wbGVyLmVtYmVkZGVkX3VybF9yZSI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxz + dHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLmNvbm5lY3RfdGltZW91dCI+PC9zdHJpbmdQcm9w + Pg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnJlc3BvbnNlX3RpbWVv + dXQiPjwvc3RyaW5nUHJvcD4NCiAgICAgICAgPC9IVFRQU2FtcGxlclByb3h5Pg0KICAgICAgICA8 + aGFzaFRyZWUvPg0KICAgICAgPC9oYXNoVHJlZT4NCiAgICA8L2hhc2hUcmVlPg0KICA8L2hhc2hU + cmVlPg0KPC9qbWV0ZXJUZXN0UGxhbj4NCg== + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '4870' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A25Z&sr=b&sp=r&sig=OYVKMXBoGUw7bgk7oaHAcK0R%2F122t6i7xYQGQidpCxU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:49:25.8802575Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:25 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + mise-correlation-id: + - 50cc9b33-2b0c-45f4-966b-08c3a086df30 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093924Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003nda + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A26Z&sr=b&sp=r&sig=%2Fc2drH%2FFIE3hBxWzQD8k5rMnQfseQeKWeCmPi0%2FF9TE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:49:26.3956611Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:26 GMT + mise-correlation-id: + - b8421b0e-e264-44b4-a46b-2f7990f5f606 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093925Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003neu + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A31Z&sr=b&sp=r&sig=rnB3GKWDiXSPgYGMcIjrX5ZPoh52JQtO1bUdf6Pi6pY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:49:31.5140482Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:31 GMT + mise-correlation-id: + - 8534182b-3724-40a4-8682-739d988bb797 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093931Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003nq4 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A36Z&sr=b&sp=r&sig=Ls7WJNH0geD8ewM84mISNuCf2aNKj12bK%2FCNXHXfCAE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:49:36.6195779Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:36 GMT + mise-correlation-id: + - 3c767f10-f57f-4732-88d4-3ccb2c22858c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093936Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003nyg + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A41Z&sr=b&sp=r&sig=WIpIVKeQfqrYr7jLx%2B5CAdgtayQ4jLchRBnaLi7fyuM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:49:41.7240118Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:41 GMT + mise-correlation-id: + - b3d557d7-5238-4e13-b7bd-42211d63c8c4 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093941Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003p5m + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A46Z&sr=b&sp=r&sig=tClDY2cn78Shei0dIjgf%2FpZ2OGygAB%2FrQ8pIrlauPPQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:49:46.8325526Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:46 GMT + mise-correlation-id: + - 41d74167-5df2-4eb2-9722-27f8c219ba40 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093946Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003paq + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A51Z&sr=b&sp=r&sig=PgI3084OGwZl%2B2BGTyOSxOrQ3Z%2BHXEQ5Jz%2FT2Rr36eM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:49:51.9413348Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:51 GMT + mise-correlation-id: + - 8d6216fd-53c6-4cf0-8e00-ded273eed829 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093951Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003pfk + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A57Z&sr=b&sp=r&sig=MLesIdSmOCBO84VCk3R5sl%2Bzjzm45mpj2Tlct6Esxy8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:49:57.0436458Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:57 GMT + mise-correlation-id: + - d465ae7b-39b3-430b-bf6a-06247a4e219e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093956Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003pp4 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"41d4e781-df6a-4c4c-a504-da56561dc6fe":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"21520d79-77d2-4ce1-b903-db3bde7ac696":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b719745c-16a0-4009-a711-fe906528bab5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A39%3A57Z&sr=b&sp=r&sig=7Ykt7OniUpCUZYRE8fzjTk6W0JAG%2FdR3OfYwXh8xWkw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:39:57.1444505Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A39%3A57Z&sr=b&sp=r&sig=j%2FyYQ5lt36FbDaA8FYMM1XonX0jkhn%2FMr%2Bj5L0q5mMc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:39:57.1450073Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/64e6c428-7ea9-410a-8389-03c12ce500e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A39%3A57Z&sr=b&sp=r&sig=DZcocC%2FYCFgFWSV%2F4bXgz1SgOQCkcK8GyPFm9Gtfa3c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:39:57.1451402Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:39:56.984Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2853' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:57 GMT + mise-correlation-id: + - 393cb103-0970-45af-a865-552092e255e7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093957Z-17b7777dc45cd6gnhC1CO1wzd80000000hv0000000003pp9 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:57 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D7583C41ABA5451D803EB2A7EC236939 Ref B: CO6AA3150219027 Ref C: 2024-11-22T09:39:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"41d4e781-df6a-4c4c-a504-da56561dc6fe":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"21520d79-77d2-4ce1-b903-db3bde7ac696":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b719745c-16a0-4009-a711-fe906528bab5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A39%3A58Z&sr=b&sp=r&sig=qjgkZI1u27rq2nAsetDaHeSS9WlToxHkaz%2F8bK2Wv8k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:39:58.1379474Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A39%3A58Z&sr=b&sp=r&sig=12fJkr7fblUaP1E2N51NwIBeAm3UKPzHWE%2BT7Vfa9VI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:39:58.1387509Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/64e6c428-7ea9-410a-8389-03c12ce500e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A39%3A58Z&sr=b&sp=r&sig=kglXEe4HN5YD%2Ba%2BsL%2FR%2BuRA%2FPHz16BNtNmNrqu94J1g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:39:58.1391179Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:39:56.984Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2855' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:58 GMT + mise-correlation-id: + - b0e488d3-f2b8-486e-842b-fc40ffb885af + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093957Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005n6v + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"displayName": "CLI-Test", "description": "Test created from az load test + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, + "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": + true}, "passFailCriteria": {"passFailMetrics": {"41d4e781-df6a-4c4c-a504-da56561dc6fe": + null, "21520d79-77d2-4ce1-b903-db3bde7ac696": null, "b719745c-16a0-4009-a711-fe906528bab5": + null, "fd55e2e7-5e1e-4c21-b0d8-379d27a01fbc": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "7425f090-95bf-42dc-8195-d97c0022d7ba": + {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": + "50"}, "1eeea5d5-ac95-424f-8763-12bd84ce4bc0": {"aggregate": "avg", "clientMetric": + "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, + "autoStopCriteria": {"autoStopDisabled": false, "errorRateTimeWindowInSeconds": + 250, "errorRate": 98.5}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1034' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"1eeea5d5-ac95-424f-8763-12bd84ce4bc0":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"7425f090-95bf-42dc-8195-d97c0022d7ba":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fd55e2e7-5e1e-4c21-b0d8-379d27a01fbc":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":250},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A39%3A58Z&sr=b&sp=r&sig=olNTJ7YuYeMbgUehQeq%2BAuyFhBbfUR2ckz5r%2F3qPnhE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:39:58.3537509Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A39%3A58Z&sr=b&sp=r&sig=AE10L2m8H9MFvQ%2FFa%2FaykxRu5Sk0JnFUDw2oz341EJs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:39:58.3542127Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/64e6c428-7ea9-410a-8389-03c12ce500e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A39%3A58Z&sr=b&sp=r&sig=ZMN0DszFIO9fxfmGT8NqObe2F7AAMN80fDDy9k%2Bb6Kk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:39:58.3544151Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:39:58.342Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2851' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:58 GMT + mise-correlation-id: + - a94f0429-a26b-4d73-9cc0-c51a5b1f1b59 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093958Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005n7n + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/92b0fa79-9425-46f5-9d5b-6c9f6a87f9f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A58Z&sr=b&sp=r&sig=cHPFiTJFH%2Bgm6NZBFnB2MbtaU7bhNXBzutnasEv1Y5I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:49:58.4954607Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/c7aa235e-5175-4b04-89ce-ec0e25327667?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A58Z&sr=b&sp=r&sig=0YISTXinzWyLAp94BR%2BiwWHZibC4Xs3MnmpfdvSlDyQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:49:58.4955897Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/64e6c428-7ea9-410a-8389-03c12ce500e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A58Z&sr=b&sp=r&sig=5OqEuwx2PyYnbAsWMPzEZuK2ZvPAwwghHlSvtDSMLcc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:49:58.495686Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '1708' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:58 GMT + mise-correlation-id: + - 9a2008b4-2ecc-4980-b09f-29c7943de68c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093958Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005n87 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: DELETE + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + date: + - Fri, 22 Nov 2024 09:39:58 GMT + mise-correlation-id: + - d1cf5395-b416-4a6f-ab7a-61082bfe6f3f + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093958Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005n8d + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + YSxiLGMsZA0KMSwyLDMsNA0K + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '18' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/bdabb109-7bb0-4414-9e91-b0a1f90f7fec?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A58Z&sr=b&sp=r&sig=9pguBTk9%2FgE7xL7EIAI00P1Yq7wESWhMuQzFzNImo9E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:49:58.9161368Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '573' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:58 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview + mise-correlation-id: + - c5d30693-6c88-401e-898b-7eb659b4ade9 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093958Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005n8z + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/bdabb109-7bb0-4414-9e91-b0a1f90f7fec?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A59Z&sr=b&sp=r&sig=VHjV9t%2BBHbZON0r0YcD5QdoN5mAEnpxMHCJkao%2FVCq0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:49:59.0316729Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:59 GMT + mise-correlation-id: + - 78d93968-aada-48b9-9f55-fbbd794ef3dc + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093958Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005n9g + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + UEsDBBQACAAIAANbLVkAAAAAAAAAABIAAAATACAAYWRkaXRpb25hbC1kYXRhLmNzdlVUDQAHf9Pj + ZneG/2a5hP9mdXgLAAEEAAAAAAQAAAAAS9RJ0knWSeHlMtQx0jHWMeHlAgBQSwcI/dwPKxQAAAAS + AAAAUEsBAhQDFAAIAAgAA1stWf3cDysUAAAAEgAAABMAIAAAAAAAAAAAALaBAAAAAGFkZGl0aW9u + YWwtZGF0YS5jc3ZVVA0AB3/T42Z3hv9muYT/ZnV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAGEA + AAB1AAAAAAA= + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '236' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/759ec8b6-3c0f-4217-ac83-827ab12f8c39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A59Z&sr=b&sp=r&sig=2uofLbUPUAa5Y3vfS%2B%2BhdJJ4q8S%2FDk4i%2FSMFk9VBHF0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:49:59.3003409Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '576' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:59 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + mise-correlation-id: + - e1ac08cc-d7fd-4f5c-8a87-971b0c11d841 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093959Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005n9t + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/759ec8b6-3c0f-4217-ac83-827ab12f8c39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A49%3A59Z&sr=b&sp=r&sig=NqQX3ODoylVXXAJP%2FB6eWmOsZD9HJxuv%2Fzyf98I69%2B8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:49:59.4150193Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:39:59 GMT + mise-correlation-id: + - d68bb094-cb3e-4d9c-8780-cacf524cb59e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T093959Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005nam + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/759ec8b6-3c0f-4217-ac83-827ab12f8c39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A04Z&sr=b&sp=r&sig=%2BiY9RCw%2BjefexdJVoHHn35eJXulAFZvyVj795yBtZSE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:50:04.5598999Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '572' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:04 GMT + mise-correlation-id: + - aec06b20-da4c-48b0-bdc5-6cef5eedb618 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094004Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005nrx + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/759ec8b6-3c0f-4217-ac83-827ab12f8c39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A09Z&sr=b&sp=r&sig=RwUyBe8ZIqt1FQPnEXb2LzYxbEbsijANYPeo7UFnyh0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:50:09.70643Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '566' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:09 GMT + mise-correlation-id: + - 17ea04ae-81a8-4193-b9eb-b5ef0a8ab88b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094009Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005p4w + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/759ec8b6-3c0f-4217-ac83-827ab12f8c39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A14Z&sr=b&sp=r&sig=R4lCy32B2f9b5QrMzMCHR5PgOryOfO2C6oeEcjlqa%2B4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:50:14.823412Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:14 GMT + mise-correlation-id: + - e8c0f458-767f-4b63-b18d-588c52049e72 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094014Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005pfz + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/759ec8b6-3c0f-4217-ac83-827ab12f8c39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A19Z&sr=b&sp=r&sig=erBF3vknuKEaLH6y3tjfno8TcONnxw%2FKx3vW8Ci8PLM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:50:19.9495968Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:19 GMT + mise-correlation-id: + - 00840824-7530-40ce-a80f-43d3cd4f15b4 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094019Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005pyv + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxqbWV0ZXJUZXN0UGxhbiB2 + ZXJzaW9uPSIxLjIiIHByb3BlcnRpZXM9IjUuMCIgam1ldGVyPSI1LjUiPg0KICA8aGFzaFRyZWU+ + DQogICAgPFRlc3RQbGFuIGd1aWNsYXNzPSJUZXN0UGxhbkd1aSIgdGVzdGNsYXNzPSJUZXN0UGxh + biIgdGVzdG5hbWU9IkF6dXJlIExvYWQgVGVzdGluZyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICA8 + c3RyaW5nUHJvcCBuYW1lPSJUZXN0UGxhbi5jb21tZW50cyI+PC9zdHJpbmdQcm9wPg0KICAgICAg + PGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLmZ1bmN0aW9uYWxfbW9kZSI+ZmFsc2U8L2Jvb2xQcm9w + Pg0KICAgICAgPGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLnRlYXJEb3duX29uX3NodXRkb3duIj50 + cnVlPC9ib29sUHJvcD4NCiAgICAgIDxib29sUHJvcCBuYW1lPSJUZXN0UGxhbi5zZXJpYWxpemVf + dGhyZWFkZ3JvdXBzIj5mYWxzZTwvYm9vbFByb3A+DQogICAgICA8ZWxlbWVudFByb3AgbmFtZT0i + VGVzdFBsYW4udXNlcl9kZWZpbmVkX3ZhcmlhYmxlcyIgZWxlbWVudFR5cGU9IkFyZ3VtZW50cyIg + Z3VpY2xhc3M9IkFyZ3VtZW50c1BhbmVsIiB0ZXN0Y2xhc3M9IkFyZ3VtZW50cyIgdGVzdG5hbWU9 + IlVzZXIgRGVmaW5lZCBWYXJpYWJsZXMiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICA8Y29sbGVj + dGlvblByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgPC9lbGVtZW50UHJv + cD4NCiAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IlRlc3RQbGFuLnVzZXJfZGVmaW5lX2NsYXNzcGF0 + aCI+PC9zdHJpbmdQcm9wPg0KICAgIDwvVGVzdFBsYW4+DQogICAgPGhhc2hUcmVlPg0KICAgICAg + PEFyZ3VtZW50cyBndWljbGFzcz0iQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRz + IiB0ZXN0bmFtZT0iVXNlciBEZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAg + ICAgIDxjb2xsZWN0aW9uUHJvcCBuYW1lPSJBcmd1bWVudHMuYXJndW1lbnRzIj4NCiAgICAgICAg + ICA8ZWxlbWVudFByb3AgbmFtZT0iZHVyYXRpb25faW5fc2VjIiBlbGVtZW50VHlwZT0iQXJndW1l + bnQiPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubmFtZSI+ZHVyYXRp + b25faW5fc2VjPC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJn + dW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5nZXRlbnYoJnF1b3Q7ZHVyYXRpb25faW5f + c2VjJnF1b3Q7KSA/OiAmcXVvdDsxMCZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAg + IDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAg + ICAgICAgIDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9InJwcyIg + ZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFy + Z3VtZW50Lm5hbWUiPnJwczwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3JwcyZx + dW90OykgPzogJnF1b3Q7MSZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJp + bmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAgICAgICAg + IDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9ImRvbWFpbiIgZWxl + bWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3Vt + ZW50Lm5hbWUiPmRvbWFpbjwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O2RvbWFp + biZxdW90OykgPzogJnF1b3Q7ZXhhbXBsZS5jb20mcXVvdDsgKX08L3N0cmluZ1Byb3A+DQogICAg + ICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5tZXRhZGF0YSI+PTwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICA8L2VsZW1lbnRQcm9wPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1l + PSJwcm90b2NvbCIgZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQ + cm9wIG5hbWU9IkFyZ3VtZW50Lm5hbWUiPnByb3RvY29sPC9zdHJpbmdQcm9wPg0KICAgICAgICAg + ICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5n + ZXRlbnYoJnF1b3Q7cHJvdG9jb2wmcXVvdDspID86ICZxdW90O2h0dHBzJnF1b3Q7ICl9PC9zdHJp + bmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubWV0YWRhdGEi + Pj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAgICAgICA8ZWxl + bWVudFByb3AgbmFtZT0idXJsX3BhdGgiIGVsZW1lbnRUeXBlPSJBcmd1bWVudCI+DQogICAgICAg + ICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5uYW1lIj51cmxfcGF0aDwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jv + b3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3VybF9wYXRoJnF1b3Q7KSA/OiAmcXVvdDsvJnF1b3Q7 + ICl9PC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQu + bWV0YWRhdGEiPj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAg + ICAgPC9jb2xsZWN0aW9uUHJvcD4NCiAgICAgIDwvQXJndW1lbnRzPg0KICAgICAgPGhhc2hUcmVl + Lz4NCiAgICAgIDxPcGVuTW9kZWxUaHJlYWRHcm91cCBndWljbGFzcz0iT3Blbk1vZGVsVGhyZWFk + R3JvdXBHdWkiIHRlc3RjbGFzcz0iT3Blbk1vZGVsVGhyZWFkR3JvdXAiIHRlc3RuYW1lPSJPcGVu + IE1vZGVsIFRocmVhZCBHcm91cCIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgIDxlbGVtZW50UHJv + cCBuYW1lPSJUaHJlYWRHcm91cC5tYWluX2NvbnRyb2xsZXIiIGVsZW1lbnRUeXBlPSJPcGVuTW9k + ZWxUaHJlYWRHcm91cENvbnRyb2xsZXIiLz4NCiAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iVGhy + ZWFkR3JvdXAub25fc2FtcGxlX2Vycm9yIj5jb250aW51ZTwvc3RyaW5nUHJvcD4NCiAgICAgICAg + PHN0cmluZ1Byb3AgbmFtZT0iT3Blbk1vZGVsVGhyZWFkR3JvdXAuc2NoZWR1bGUiPnJhdGUoJHty + cHN9L3NlYykgcmFuZG9tX2Fycml2YWxzKCR7ZHVyYXRpb25faW5fc2VjfSBzZWMpPC9zdHJpbmdQ + cm9wPg0KICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJPcGVuTW9kZWxUaHJlYWRHcm91cC5yYW5k + b21fc2VlZCI+PC9zdHJpbmdQcm9wPg0KICAgICAgPC9PcGVuTW9kZWxUaHJlYWRHcm91cD4NCiAg + ICAgIDxoYXNoVHJlZT4NCiAgICAgICAgPEhUVFBTYW1wbGVyUHJveHkgZ3VpY2xhc3M9Ikh0dHBU + ZXN0U2FtcGxlR3VpIiB0ZXN0Y2xhc3M9IkhUVFBTYW1wbGVyUHJveHkiIHRlc3RuYW1lPSJIVFRQ + IFJlcXVlc3QiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1lPSJI + VFRQc2FtcGxlci5Bcmd1bWVudHMiIGVsZW1lbnRUeXBlPSJBcmd1bWVudHMiIGd1aWNsYXNzPSJI + VFRQQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRzIiB0ZXN0bmFtZT0iVXNlciBE + ZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgICAgICA8Y29sbGVjdGlv + blByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgICAgIDwvZWxlbWVudFBy + b3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBsZXIuZG9tYWluIj4ke2Rv + bWFpbn08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBs + ZXIucG9ydCI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBT + YW1wbGVyLnByb3RvY29sIj4ke3Byb3RvY29sfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3Ry + aW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5jb250ZW50RW5jb2RpbmciPjwvc3RyaW5nUHJvcD4N + CiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5wYXRoIj4ke3VybF9wYXRo + fTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5t + ZXRob2QiPkdFVDwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8Ym9vbFByb3AgbmFtZT0iSFRUUFNh + bXBsZXIuZm9sbG93X3JlZGlyZWN0cyI+dHJ1ZTwvYm9vbFByb3A+DQogICAgICAgICAgPGJvb2xQ + cm9wIG5hbWU9IkhUVFBTYW1wbGVyLmF1dG9fcmVkaXJlY3RzIj5mYWxzZTwvYm9vbFByb3A+DQog + ICAgICAgICAgPGJvb2xQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnVzZV9rZWVwYWxpdmUiPnRydWU8 + L2Jvb2xQcm9wPg0KICAgICAgICAgIDxib29sUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5ET19NVUxU + SVBBUlRfUE9TVCI+ZmFsc2U8L2Jvb2xQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9 + IkhUVFBTYW1wbGVyLmVtYmVkZGVkX3VybF9yZSI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxz + dHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLmNvbm5lY3RfdGltZW91dCI+PC9zdHJpbmdQcm9w + Pg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnJlc3BvbnNlX3RpbWVv + dXQiPjwvc3RyaW5nUHJvcD4NCiAgICAgICAgPC9IVFRQU2FtcGxlclByb3h5Pg0KICAgICAgICA8 + aGFzaFRyZWUvPg0KICAgICAgPC9oYXNoVHJlZT4NCiAgICA8L2hhc2hUcmVlPg0KICA8L2hhc2hU + cmVlPg0KPC9qbWV0ZXJUZXN0UGxhbj4NCg== + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '4870' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A21Z&sr=b&sp=r&sig=aD6ygbRDk1%2BtFg50zCkoZxLUfAHmDGILlbz2iK6CYoU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:50:21.2071437Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:21 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + mise-correlation-id: + - 63b9c519-8174-46d2-9031-fc4fe07ffecd + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094020Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005pz9 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A21Z&sr=b&sp=r&sig=AenvKurdEMc215d9maieGvtW0n3J5Of%2F0JV1Ij0uBiM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:50:21.3359628Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:21 GMT + mise-correlation-id: + - f929c696-b3d7-46b1-908f-88080e908a4f + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094021Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005q2r + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A26Z&sr=b&sp=r&sig=aDL%2FUaVBQSiFApJxJfg5wCbhVxJNVQ9j%2F5%2FyRzPMeAM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:50:26.5013423Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:26 GMT + mise-correlation-id: + - e15506a6-bae9-4f77-b6b0-cb1044a739a1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094026Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005qhd + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A31Z&sr=b&sp=r&sig=mODMsRaKcHgOBgRCN0DFHYUt68MPjdeKeZXmqrbsz60%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:50:31.6245852Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:31 GMT + mise-correlation-id: + - 4e148345-eec1-43dc-82e1-69f8a67f288e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094031Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005qza + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A36Z&sr=b&sp=r&sig=EVi8puP5BVdPagHNKGiUVDo3pCvfrrR%2BV%2BUF%2FNP4FOE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:50:36.902731Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '561' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:36 GMT + mise-correlation-id: + - e1c0f322-c734-4bb9-a614-b98370875dca + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094036Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005rck + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A42Z&sr=b&sp=r&sig=jYW2Zd2DLVmViy%2FYPNLJccBhZiJcHZxO0gPbEIXa5C8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:50:42.042672Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '557' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:42 GMT + mise-correlation-id: + - 273fabd8-0429-41eb-8896-cfd395dc961d + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094041Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005rv2 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A47Z&sr=b&sp=r&sig=oORlJMHltLUW4D%2BrcGhhlVocOyMiecvMSNesM%2BNbjSU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:50:47.1808928Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:47 GMT + mise-correlation-id: + - 6ae86af5-f28c-4329-9432-eb3a706bb583 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094047Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005saf + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A52Z&sr=b&sp=r&sig=T5Wtsl%2BHt%2FfLDwy%2BvAYnB%2B9w952T0UdNdQTQWGzr9%2B4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:50:52.3077631Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '566' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:52 GMT + mise-correlation-id: + - 5e9c9938-28df-41fe-8f96-1b503d1407b0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094052Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005su8 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A57Z&sr=b&sp=r&sig=3sVYNs75Z0OMhGrSu5H8Sa0Cyc25Z2jufr27OQyEIgQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:50:57.4356471Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '554' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:57 GMT + mise-correlation-id: + - 16400428-a99e-4b7d-9593-a575dc39a6fc + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094057Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005t7t + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"1eeea5d5-ac95-424f-8763-12bd84ce4bc0":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"7425f090-95bf-42dc-8195-d97c0022d7ba":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fd55e2e7-5e1e-4c21-b0d8-379d27a01fbc":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":250},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A40%3A57Z&sr=b&sp=r&sig=g9VQPHE7lBizn5VrNh6oe2YQmiBlUJlEhInC3D9c4yA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:40:57.5492891Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/759ec8b6-3c0f-4217-ac83-827ab12f8c39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A40%3A57Z&sr=b&sp=r&sig=qs6DexC1ZNYR%2FF9jg6tK%2BqAhHstsUoa%2FySZgt9FifFo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:40:57.5495193Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/bdabb109-7bb0-4414-9e91-b0a1f90f7fec?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A40%3A57Z&sr=b&sp=r&sig=2VDg6AI7jD4qw50s%2FhHW1YAMn%2FzUhxZK8emFnx12TyQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:40:57.5495847Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:40:53.046Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2851' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:57 GMT + mise-correlation-id: + - 8f1e452a-b6ef-44a5-af7a-b8cac5099b13 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094057Z-1789fbbbd78lrwt9hC1PDX9nu00000000qr0000000005t81 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:57 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5D314CA0EA8647D58DB71A4726058FA6 Ref B: CO6AA3150219031 Ref C: 2024-11-22T09:40:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"1eeea5d5-ac95-424f-8763-12bd84ce4bc0":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"7425f090-95bf-42dc-8195-d97c0022d7ba":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fd55e2e7-5e1e-4c21-b0d8-379d27a01fbc":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":250},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A40%3A58Z&sr=b&sp=r&sig=5dQEzSD2ug%2FMX42yWV7o0jgXpKI0mKiCwwxIi3mLwjA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:40:58.3584848Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/759ec8b6-3c0f-4217-ac83-827ab12f8c39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A40%3A58Z&sr=b&sp=r&sig=%2Fs%2Fs5ttFPO5G2LbTmlNXq2NVVPGxQ7dyWsKsuUTuo40%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:40:58.3678661Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/bdabb109-7bb0-4414-9e91-b0a1f90f7fec?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A40%3A58Z&sr=b&sp=r&sig=NkAFXwnLvvf3ItVYdNzoEKp1%2FXMjujDH7ZJ%2BSxPCL9g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:40:58.3679963Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:40:53.046Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2851' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:58 GMT + mise-correlation-id: + - 386809d2-0961-4499-b13b-c7d7f219eb7c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094058Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000eyzu + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"displayName": "CLI-Test-Autostop-Criteria", "description": "Test created + from az load test command", "keyvaultReferenceIdentityType": "SystemAssigned", + "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, + "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": {"1eeea5d5-ac95-424f-8763-12bd84ce4bc0": + null, "7425f090-95bf-42dc-8195-d97c0022d7ba": null, "fd55e2e7-5e1e-4c21-b0d8-379d27a01fbc": + null, "ef7e7adc-03f5-4b87-a8a1-7f7c6429a2b2": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "c17bb48e-b5e9-4543-b12f-de40c50dbf40": + {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": + "50"}, "524dba4f-e700-4645-b849-70a24329159d": {"aggregate": "avg", "clientMetric": + "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, + "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 77.5, "errorRateTimeWindowInSeconds": + 90}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1051' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"524dba4f-e700-4645-b849-70a24329159d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"c17bb48e-b5e9-4543-b12f-de40c50dbf40":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ef7e7adc-03f5-4b87-a8a1-7f7c6429a2b2":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A40%3A58Z&sr=b&sp=r&sig=AhGAwCCFl7AII%2Bi%2FBZnJnqkpzA2Zd%2BwNF9ISVfk3I%2FQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:40:58.5380551Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/759ec8b6-3c0f-4217-ac83-827ab12f8c39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A40%3A58Z&sr=b&sp=r&sig=6B2gQDWagkR%2Bs0rGzqg%2FKlMrsfwiz%2BBVZ48ZGJm%2FKII%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:40:58.5382683Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/bdabb109-7bb0-4414-9e91-b0a1f90f7fec?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A40%3A58Z&sr=b&sp=r&sig=i8InzemYlfMnLrtO8OC6GlDuGhgkoq40RdJ0g2%2Fs5dk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:40:58.5383546Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:40:58.524Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2876' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:58 GMT + mise-correlation-id: + - 6f4fe4cd-1281-4f2c-af29-aa365b128b3b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094058Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000ez0f + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/96fc624d-62c9-4572-8719-917ec9397ba3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A58Z&sr=b&sp=r&sig=2jcmGVH3VpSpi1JGcO2P7PzyNxb3Y4fnPfawdjGESAM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:50:58.6377599Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/759ec8b6-3c0f-4217-ac83-827ab12f8c39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A58Z&sr=b&sp=r&sig=IQudWQ8iaJae51gDG1LQI2JeJFHkqiru76R72ozVddk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:50:58.6379281Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/bdabb109-7bb0-4414-9e91-b0a1f90f7fec?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A50%3A58Z&sr=b&sp=r&sig=2HG5izv2DsKy%2BRt2o7GlUZhrYqf0wpv16u%2FKAksga%2Fk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:50:58.6380908Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '1711' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:40:58 GMT + mise-correlation-id: + - 44e0d24f-f2db-4bb4-871f-12ed89705738 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094058Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000ez0y + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: DELETE + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + date: + - Fri, 22 Nov 2024 09:40:58 GMT + mise-correlation-id: + - b3f0f950-dec5-4bb4-96b2-ae824c0e7cdb + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094058Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000ez16 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + YSxiLGMsZA0KMSwyLDMsNA0K + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '18' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/d1e3323d-cdb1-4439-ad6c-5badc4b649f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A00Z&sr=b&sp=r&sig=rBQG37Wj7ikyJKxKArwgNCnzWk6dHltGBdiP3WzN2sY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:51:00.0720146Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '571' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:00 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview + mise-correlation-id: + - 0eb2c529-02e0-4a2d-b176-ec4570607181 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094058Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000ez20 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/d1e3323d-cdb1-4439-ad6c-5badc4b649f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A00Z&sr=b&sp=r&sig=rBQG37Wj7ikyJKxKArwgNCnzWk6dHltGBdiP3WzN2sY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:51:00.1652574Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '571' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:00 GMT + mise-correlation-id: + - b12f9f50-e061-463a-acbe-ca6ed3874248 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094100Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000ez3y + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + UEsDBBQACAAIAANbLVkAAAAAAAAAABIAAAATACAAYWRkaXRpb25hbC1kYXRhLmNzdlVUDQAHf9Pj + ZneG/2a5hP9mdXgLAAEEAAAAAAQAAAAAS9RJ0knWSeHlMtQx0jHWMeHlAgBQSwcI/dwPKxQAAAAS + AAAAUEsBAhQDFAAIAAgAA1stWf3cDysUAAAAEgAAABMAIAAAAAAAAAAAALaBAAAAAGFkZGl0aW9u + YWwtZGF0YS5jc3ZVVA0AB3/T42Z3hv9muYT/ZnV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAGEA + AAB1AAAAAAA= + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '236' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A00Z&sr=b&sp=r&sig=JE2UBaCQCN4kOFrJf%2BWMSThTgjW2rYOhNmMThFQpJw8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:51:00.4911364Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:00 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + mise-correlation-id: + - 295168e2-98d6-4cd0-ad2a-457a0a1628b1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094100Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000ez41 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A00Z&sr=b&sp=r&sig=hkQY1YxIxqmtVZVskwIO8A1ySuH4aAZfaGZKBJt4Ncg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:51:00.5842381Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:00 GMT + mise-correlation-id: + - 02a3b57b-fea9-40d3-9798-8b77f44cd886 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094100Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000ez4m + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A05Z&sr=b&sp=r&sig=E49b3dNXDNNVf3JuIumiGRJ8dwpI6sAgOP%2FaOwfwSE8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:51:05.6858611Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:05 GMT + mise-correlation-id: + - 30676b57-c0f7-47f9-bb9a-4a3fbf17eb0d + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094105Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000eze4 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A10Z&sr=b&sp=r&sig=cbCj0PZ7tx1Ja5mqBXdNr5iyYwiTFK7pkXqJ4W7IitE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:51:10.795902Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '567' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:10 GMT + mise-correlation-id: + - d188a071-8e42-4898-a6d7-cd2dd80e21b2 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094110Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000eznz + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A15Z&sr=b&sp=r&sig=6iY2MseIoo%2FD%2F8ohj%2Ftvqpce8fbWHCb%2BdSv2Z3xxie0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:51:15.9078121Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '576' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:15 GMT + mise-correlation-id: + - 033894ce-c968-4149-8b04-6927f17efe5e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094115Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000ezv8 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A21Z&sr=b&sp=r&sig=sPEUBNb6nu%2BYnWZ%2FAddSv%2F5uvtZ4aYwDrGqwvTSc0z0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:51:21.0737174Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:21 GMT + mise-correlation-id: + - c3e4022e-1491-491b-8f16-2038b9aae445 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094120Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f012 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A26Z&sr=b&sp=r&sig=jVn0uusPNUohXoi%2F4f9114tgXXkngo39dfT0MWrTVME%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:51:26.1733292Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:26 GMT + mise-correlation-id: + - 4c87c38e-95e3-4eb7-bd22-438879be0887 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094126Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f05c + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxqbWV0ZXJUZXN0UGxhbiB2 + ZXJzaW9uPSIxLjIiIHByb3BlcnRpZXM9IjUuMCIgam1ldGVyPSI1LjUiPg0KICA8aGFzaFRyZWU+ + DQogICAgPFRlc3RQbGFuIGd1aWNsYXNzPSJUZXN0UGxhbkd1aSIgdGVzdGNsYXNzPSJUZXN0UGxh + biIgdGVzdG5hbWU9IkF6dXJlIExvYWQgVGVzdGluZyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICA8 + c3RyaW5nUHJvcCBuYW1lPSJUZXN0UGxhbi5jb21tZW50cyI+PC9zdHJpbmdQcm9wPg0KICAgICAg + PGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLmZ1bmN0aW9uYWxfbW9kZSI+ZmFsc2U8L2Jvb2xQcm9w + Pg0KICAgICAgPGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLnRlYXJEb3duX29uX3NodXRkb3duIj50 + cnVlPC9ib29sUHJvcD4NCiAgICAgIDxib29sUHJvcCBuYW1lPSJUZXN0UGxhbi5zZXJpYWxpemVf + dGhyZWFkZ3JvdXBzIj5mYWxzZTwvYm9vbFByb3A+DQogICAgICA8ZWxlbWVudFByb3AgbmFtZT0i + VGVzdFBsYW4udXNlcl9kZWZpbmVkX3ZhcmlhYmxlcyIgZWxlbWVudFR5cGU9IkFyZ3VtZW50cyIg + Z3VpY2xhc3M9IkFyZ3VtZW50c1BhbmVsIiB0ZXN0Y2xhc3M9IkFyZ3VtZW50cyIgdGVzdG5hbWU9 + IlVzZXIgRGVmaW5lZCBWYXJpYWJsZXMiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICA8Y29sbGVj + dGlvblByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgPC9lbGVtZW50UHJv + cD4NCiAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IlRlc3RQbGFuLnVzZXJfZGVmaW5lX2NsYXNzcGF0 + aCI+PC9zdHJpbmdQcm9wPg0KICAgIDwvVGVzdFBsYW4+DQogICAgPGhhc2hUcmVlPg0KICAgICAg + PEFyZ3VtZW50cyBndWljbGFzcz0iQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRz + IiB0ZXN0bmFtZT0iVXNlciBEZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAg + ICAgIDxjb2xsZWN0aW9uUHJvcCBuYW1lPSJBcmd1bWVudHMuYXJndW1lbnRzIj4NCiAgICAgICAg + ICA8ZWxlbWVudFByb3AgbmFtZT0iZHVyYXRpb25faW5fc2VjIiBlbGVtZW50VHlwZT0iQXJndW1l + bnQiPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubmFtZSI+ZHVyYXRp + b25faW5fc2VjPC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJn + dW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5nZXRlbnYoJnF1b3Q7ZHVyYXRpb25faW5f + c2VjJnF1b3Q7KSA/OiAmcXVvdDsxMCZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAg + IDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAg + ICAgICAgIDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9InJwcyIg + ZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFy + Z3VtZW50Lm5hbWUiPnJwczwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3JwcyZx + dW90OykgPzogJnF1b3Q7MSZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJp + bmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAgICAgICAg + IDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9ImRvbWFpbiIgZWxl + bWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3Vt + ZW50Lm5hbWUiPmRvbWFpbjwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O2RvbWFp + biZxdW90OykgPzogJnF1b3Q7ZXhhbXBsZS5jb20mcXVvdDsgKX08L3N0cmluZ1Byb3A+DQogICAg + ICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5tZXRhZGF0YSI+PTwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICA8L2VsZW1lbnRQcm9wPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1l + PSJwcm90b2NvbCIgZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQ + cm9wIG5hbWU9IkFyZ3VtZW50Lm5hbWUiPnByb3RvY29sPC9zdHJpbmdQcm9wPg0KICAgICAgICAg + ICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5n + ZXRlbnYoJnF1b3Q7cHJvdG9jb2wmcXVvdDspID86ICZxdW90O2h0dHBzJnF1b3Q7ICl9PC9zdHJp + bmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubWV0YWRhdGEi + Pj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAgICAgICA8ZWxl + bWVudFByb3AgbmFtZT0idXJsX3BhdGgiIGVsZW1lbnRUeXBlPSJBcmd1bWVudCI+DQogICAgICAg + ICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5uYW1lIj51cmxfcGF0aDwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jv + b3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3VybF9wYXRoJnF1b3Q7KSA/OiAmcXVvdDsvJnF1b3Q7 + ICl9PC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQu + bWV0YWRhdGEiPj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAg + ICAgPC9jb2xsZWN0aW9uUHJvcD4NCiAgICAgIDwvQXJndW1lbnRzPg0KICAgICAgPGhhc2hUcmVl + Lz4NCiAgICAgIDxPcGVuTW9kZWxUaHJlYWRHcm91cCBndWljbGFzcz0iT3Blbk1vZGVsVGhyZWFk + R3JvdXBHdWkiIHRlc3RjbGFzcz0iT3Blbk1vZGVsVGhyZWFkR3JvdXAiIHRlc3RuYW1lPSJPcGVu + IE1vZGVsIFRocmVhZCBHcm91cCIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgIDxlbGVtZW50UHJv + cCBuYW1lPSJUaHJlYWRHcm91cC5tYWluX2NvbnRyb2xsZXIiIGVsZW1lbnRUeXBlPSJPcGVuTW9k + ZWxUaHJlYWRHcm91cENvbnRyb2xsZXIiLz4NCiAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iVGhy + ZWFkR3JvdXAub25fc2FtcGxlX2Vycm9yIj5jb250aW51ZTwvc3RyaW5nUHJvcD4NCiAgICAgICAg + PHN0cmluZ1Byb3AgbmFtZT0iT3Blbk1vZGVsVGhyZWFkR3JvdXAuc2NoZWR1bGUiPnJhdGUoJHty + cHN9L3NlYykgcmFuZG9tX2Fycml2YWxzKCR7ZHVyYXRpb25faW5fc2VjfSBzZWMpPC9zdHJpbmdQ + cm9wPg0KICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJPcGVuTW9kZWxUaHJlYWRHcm91cC5yYW5k + b21fc2VlZCI+PC9zdHJpbmdQcm9wPg0KICAgICAgPC9PcGVuTW9kZWxUaHJlYWRHcm91cD4NCiAg + ICAgIDxoYXNoVHJlZT4NCiAgICAgICAgPEhUVFBTYW1wbGVyUHJveHkgZ3VpY2xhc3M9Ikh0dHBU + ZXN0U2FtcGxlR3VpIiB0ZXN0Y2xhc3M9IkhUVFBTYW1wbGVyUHJveHkiIHRlc3RuYW1lPSJIVFRQ + IFJlcXVlc3QiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1lPSJI + VFRQc2FtcGxlci5Bcmd1bWVudHMiIGVsZW1lbnRUeXBlPSJBcmd1bWVudHMiIGd1aWNsYXNzPSJI + VFRQQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRzIiB0ZXN0bmFtZT0iVXNlciBE + ZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgICAgICA8Y29sbGVjdGlv + blByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgICAgIDwvZWxlbWVudFBy + b3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBsZXIuZG9tYWluIj4ke2Rv + bWFpbn08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBs + ZXIucG9ydCI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBT + YW1wbGVyLnByb3RvY29sIj4ke3Byb3RvY29sfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3Ry + aW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5jb250ZW50RW5jb2RpbmciPjwvc3RyaW5nUHJvcD4N + CiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5wYXRoIj4ke3VybF9wYXRo + fTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5t + ZXRob2QiPkdFVDwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8Ym9vbFByb3AgbmFtZT0iSFRUUFNh + bXBsZXIuZm9sbG93X3JlZGlyZWN0cyI+dHJ1ZTwvYm9vbFByb3A+DQogICAgICAgICAgPGJvb2xQ + cm9wIG5hbWU9IkhUVFBTYW1wbGVyLmF1dG9fcmVkaXJlY3RzIj5mYWxzZTwvYm9vbFByb3A+DQog + ICAgICAgICAgPGJvb2xQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnVzZV9rZWVwYWxpdmUiPnRydWU8 + L2Jvb2xQcm9wPg0KICAgICAgICAgIDxib29sUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5ET19NVUxU + SVBBUlRfUE9TVCI+ZmFsc2U8L2Jvb2xQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9 + IkhUVFBTYW1wbGVyLmVtYmVkZGVkX3VybF9yZSI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxz + dHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLmNvbm5lY3RfdGltZW91dCI+PC9zdHJpbmdQcm9w + Pg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnJlc3BvbnNlX3RpbWVv + dXQiPjwvc3RyaW5nUHJvcD4NCiAgICAgICAgPC9IVFRQU2FtcGxlclByb3h5Pg0KICAgICAgICA8 + aGFzaFRyZWUvPg0KICAgICAgPC9oYXNoVHJlZT4NCiAgICA8L2hhc2hUcmVlPg0KICA8L2hhc2hU + cmVlPg0KPC9qbWV0ZXJUZXN0UGxhbj4NCg== + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '4870' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A26Z&sr=b&sp=r&sig=trLsaYxqMKAqn4T6Dm2584ZGf5HWcvkaTBWiR9Bh7B0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:51:26.4211045Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:26 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + mise-correlation-id: + - eed95e11-bf44-49dd-867e-de3617ad3aca + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094126Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f05g + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A26Z&sr=b&sp=r&sig=pcirRYW%2Fsd4rCroEOv%2FelbLyC7fqre9bhG%2FMTBzgHNQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:51:26.5148963Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:26 GMT + mise-correlation-id: + - a04e1af0-e17a-4cee-9d12-8d7f7c2e723f + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094126Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f05t + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A31Z&sr=b&sp=r&sig=PzfmDq37IiaimyDwZNGjkFu21KURoJ5wKLScN6wQmm0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:51:31.6111304Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:31 GMT + mise-correlation-id: + - aa900de4-4446-480c-b2d7-c6690f3b7182 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094131Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f0af + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A36Z&sr=b&sp=r&sig=OpC1WX6QsFvDd2pRxQoju8nuAC2Wq1eAVQcnvdn4gQ8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:51:36.7168162Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:36 GMT + mise-correlation-id: + - 179a4e4f-f480-41f3-9ca2-d2f630e8c7e1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094136Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f0ez + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A41Z&sr=b&sp=r&sig=rdMkJaj9Qi2cZr9xkvn5RxhD2zXM5WDyUiBMyGvmxpw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:51:41.8175333Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:41 GMT + mise-correlation-id: + - 34eeb091-a49d-48f7-8a4b-383d3c78036e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094141Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f0ma + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A58Z&ske=2024-11-22T16%3A36%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A47Z&sr=b&sp=r&sig=3sKnistRqtwnz4X%2F%2FqYbdJiDJdTGgxtJ6grHWEmTiTQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:51:47.913945Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '559' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:47 GMT + mise-correlation-id: + - 3eebe1db-f895-4dbd-b8b5-88161b4dcdf8 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094146Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f0qy + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A53Z&sr=b&sp=r&sig=1mTy5MunN96yd5dPioG%2BILv9eegC177nQNxS9ifYteY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:51:53.0202528Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:52 GMT + mise-correlation-id: + - 8e5d476a-af06-4c8f-b132-24114f852e4a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094152Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f0vp + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A58Z&sr=b&sp=r&sig=6pHLXwBZj%2BzqsxNJtlnY3j1cPy5atO3grLV%2BL%2BTvplI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:51:58.1306055Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:58 GMT + mise-correlation-id: + - 18868703-30a9-44f8-ae81-8b55fa151210 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094158Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f103 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"524dba4f-e700-4645-b849-70a24329159d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"c17bb48e-b5e9-4543-b12f-de40c50dbf40":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ef7e7adc-03f5-4b87-a8a1-7f7c6429a2b2":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A41%3A58Z&sr=b&sp=r&sig=cAjJx89vIfRXad9lENubNoAz9DvbZ1SZkvELuagnQ9g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:41:58.2249114Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A41%3A58Z&sr=b&sp=r&sig=%2Bl%2BKSQZVc%2B0L1inXulma9jEL4pTwExHo1NqFD9Kb%2Bdk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:41:58.225475Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/d1e3323d-cdb1-4439-ad6c-5badc4b649f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A41%3A58Z&sr=b&sp=r&sig=lyIPaboSXBdJtQ6Fj3iBbUt8vj9vc2HQaPwgRlov0NI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:41:58.2256652Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:41:57.762Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2865' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:58 GMT + mise-correlation-id: + - 48d42cd7-4f44-4a18-9372-75cce9d7782c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094158Z-17b7777dc45kqgqphC1CO17ves0000000yw000000000f109 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:58 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D93DBC2BC9A749849B91B3DDF3238C6E Ref B: CO6AA3150218049 Ref C: 2024-11-22T09:41:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"524dba4f-e700-4645-b849-70a24329159d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"c17bb48e-b5e9-4543-b12f-de40c50dbf40":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ef7e7adc-03f5-4b87-a8a1-7f7c6429a2b2":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A41%3A59Z&sr=b&sp=r&sig=itQxXJxlamXi8sj2%2FxV26wLJa%2BfqSBtNn8%2FOhwtvjqI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:41:59.009414Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A41%3A59Z&sr=b&sp=r&sig=3SqwKnP%2Fk3WS7vIiwTrbB8Q22wh2BE5QHnsJFLcsGA0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:41:59.0097931Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/d1e3323d-cdb1-4439-ad6c-5badc4b649f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A41%3A59Z&sr=b&sp=r&sig=O2Ziw%2BJIvu0%2FetR9%2BWlRTk%2BGoBPcmWPbCEH2stTOe7k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:41:59.0100538Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:41:57.762Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2873' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:59 GMT + mise-correlation-id: + - 82ccee48-5fb3-4937-88a5-058b538e41c3 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094158Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004dgq + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"displayName": "CLI-Test-Autostop-Criteria", "description": "Test created + from az load test command", "keyvaultReferenceIdentityType": "SystemAssigned", + "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, + "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": {"524dba4f-e700-4645-b849-70a24329159d": + null, "c17bb48e-b5e9-4543-b12f-de40c50dbf40": null, "ef7e7adc-03f5-4b87-a8a1-7f7c6429a2b2": + null, "8f7035b1-62b6-4238-aaf4-32e91b6522d5": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "804034e4-398f-4b6d-8d02-b56da1afaaad": + {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": + "50"}, "fc0b4f4d-f2df-4d0f-9832-d55fff796fbd": {"aggregate": "avg", "clientMetric": + "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, + "autoStopCriteria": {"autoStopDisabled": true, "errorRate": 77.5, "errorRateTimeWindowInSeconds": + 90}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1050' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"fc0b4f4d-f2df-4d0f-9832-d55fff796fbd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"804034e4-398f-4b6d-8d02-b56da1afaaad":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8f7035b1-62b6-4238-aaf4-32e91b6522d5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A41%3A59Z&sr=b&sp=r&sig=9tZRaPOEY9G1A2CMrOVMWA0PlaX21AjgsgRVsRRt0%2F4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:41:59.2074815Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A41%3A59Z&sr=b&sp=r&sig=%2FHK9n%2B%2BXUoGCn7xcxb64agMbUegCPivuNX5qP38wUOc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:41:59.2077986Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/d1e3323d-cdb1-4439-ad6c-5badc4b649f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A41%3A59Z&sr=b&sp=r&sig=0VZ161yqchcLyRmB%2BGFX6X7Ke7vv2KjG59iZA8S3cno%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:41:59.2079412Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:41:59.196Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2867' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:59 GMT + mise-correlation-id: + - 9759579f-9c90-40fc-bf7f-191716355616 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094159Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004dh2 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/9c45bbee-78da-4872-9bd9-4418d6607bb2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A59Z&sr=b&sp=r&sig=9iqVqW0M8Wwdj8qtfRL49BXjTzmCe9L2vn0g9ZR%2BMBY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:51:59.3135372Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/791d9373-0c9f-4800-88d4-cad9581819ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A59Z&sr=b&sp=r&sig=xaU1%2BRHEZvYDvaDdEIfBCOT%2B59V08isQaQ27k9xaLXg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:51:59.3136486Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/d1e3323d-cdb1-4439-ad6c-5badc4b649f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A59Z&sr=b&sp=r&sig=gsLqOOV56MwZ6Is3WrPnkFb1M96IGYcXrXt9x78hrnA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:51:59.3137371Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '1711' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:59 GMT + mise-correlation-id: + - a1264a46-2f1d-46a2-962e-d6255c004159 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094159Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004dha + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: DELETE + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + date: + - Fri, 22 Nov 2024 09:41:59 GMT + mise-correlation-id: + - 04912590-73cf-40fe-8f3b-b01eed4da334 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094159Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004dhe + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + YSxiLGMsZA0KMSwyLDMsNA0K + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '18' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/5e9d5d08-a715-49a7-a051-03c2cd91e63d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A59Z&sr=b&sp=r&sig=kHI%2FnCUq53Icf8JNNdSBrUTl3XnjzNM%2FXQvlyJG7MAE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:51:59.8214124Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:59 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview + mise-correlation-id: + - 06f9d87e-7cd0-4599-a527-c290d57d2ae7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094159Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004dhs + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/5e9d5d08-a715-49a7-a051-03c2cd91e63d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A51%3A59Z&sr=b&sp=r&sig=U%2Fn75sVYoiNsw37BTbZn9qvBaLNuqvvA6dOzroimw88%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T09:51:59.9323394Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '573' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:41:59 GMT + mise-correlation-id: + - b7615716-4799-440e-b522-652b59ac833c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094159Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004dk0 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + UEsDBBQACAAIAANbLVkAAAAAAAAAABIAAAATACAAYWRkaXRpb25hbC1kYXRhLmNzdlVUDQAHf9Pj + ZneG/2a5hP9mdXgLAAEEAAAAAAQAAAAAS9RJ0knWSeHlMtQx0jHWMeHlAgBQSwcI/dwPKxQAAAAS + AAAAUEsBAhQDFAAIAAgAA1stWf3cDysUAAAAEgAAABMAIAAAAAAAAAAAALaBAAAAAGFkZGl0aW9u + YWwtZGF0YS5jc3ZVVA0AB3/T42Z3hv9muYT/ZnV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAGEA + AAB1AAAAAAA= + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '236' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/02ae4e99-a7b5-486c-ab1c-fbdf36c8f4c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A00Z&sr=b&sp=r&sig=xvByLNhNyavtYQMds21XFrrvtt8N2hqUJZ%2BF6v637AM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:52:00.473329Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:00 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + mise-correlation-id: + - 796f9b0d-a8e9-48ef-a351-c1660e859426 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094159Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004dk9 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/02ae4e99-a7b5-486c-ab1c-fbdf36c8f4c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A00Z&sr=b&sp=r&sig=jNSjI53GUuxUIwsc7w%2BE1Qpy5LrNGLEwh1kiXlhD9j8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:52:00.5812253Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:00 GMT + mise-correlation-id: + - b6b99632-0f23-46ea-88d9-bfc3036075cd + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094200Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004dky + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/02ae4e99-a7b5-486c-ab1c-fbdf36c8f4c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A05Z&sr=b&sp=r&sig=fziiYpPNsv8ZIgpukbWuPtkmuIFfagwqyfIwpp%2BW4A8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:52:05.6955908Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:05 GMT + mise-correlation-id: + - 5bb11bb7-dd4e-4de6-83df-86ff7c9a9318 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094205Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004ds2 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/02ae4e99-a7b5-486c-ab1c-fbdf36c8f4c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A10Z&sr=b&sp=r&sig=T6UBG6UE5HgMOGFpLcRqyjaVlrJoFMmpzq1ZYtHrS%2FU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:52:10.8186354Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:10 GMT + mise-correlation-id: + - d84d3388-346a-44d9-ba2b-862773a5c516 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094210Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004e1t + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/02ae4e99-a7b5-486c-ab1c-fbdf36c8f4c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A15Z&sr=b&sp=r&sig=DrCqrGw6psXXS3AuotokxRNmyONwvoCY0iBzqp5ef9k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:52:15.9276923Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:15 GMT + mise-correlation-id: + - c0182920-5f0c-42bd-8f55-ca7080428d7a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094215Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004e7s + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/02ae4e99-a7b5-486c-ab1c-fbdf36c8f4c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A21Z&sr=b&sp=r&sig=qdRokH8zIa%2BwbiapFYyLHI2jKWhqK7lQSmuFKcZTHKk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T09:52:21.0307324Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:21 GMT + mise-correlation-id: + - 24fd36de-da06-4171-809b-a6af93088dd7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094220Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004ecv + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxqbWV0ZXJUZXN0UGxhbiB2 + ZXJzaW9uPSIxLjIiIHByb3BlcnRpZXM9IjUuMCIgam1ldGVyPSI1LjUiPg0KICA8aGFzaFRyZWU+ + DQogICAgPFRlc3RQbGFuIGd1aWNsYXNzPSJUZXN0UGxhbkd1aSIgdGVzdGNsYXNzPSJUZXN0UGxh + biIgdGVzdG5hbWU9IkF6dXJlIExvYWQgVGVzdGluZyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICA8 + c3RyaW5nUHJvcCBuYW1lPSJUZXN0UGxhbi5jb21tZW50cyI+PC9zdHJpbmdQcm9wPg0KICAgICAg + PGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLmZ1bmN0aW9uYWxfbW9kZSI+ZmFsc2U8L2Jvb2xQcm9w + Pg0KICAgICAgPGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLnRlYXJEb3duX29uX3NodXRkb3duIj50 + cnVlPC9ib29sUHJvcD4NCiAgICAgIDxib29sUHJvcCBuYW1lPSJUZXN0UGxhbi5zZXJpYWxpemVf + dGhyZWFkZ3JvdXBzIj5mYWxzZTwvYm9vbFByb3A+DQogICAgICA8ZWxlbWVudFByb3AgbmFtZT0i + VGVzdFBsYW4udXNlcl9kZWZpbmVkX3ZhcmlhYmxlcyIgZWxlbWVudFR5cGU9IkFyZ3VtZW50cyIg + Z3VpY2xhc3M9IkFyZ3VtZW50c1BhbmVsIiB0ZXN0Y2xhc3M9IkFyZ3VtZW50cyIgdGVzdG5hbWU9 + IlVzZXIgRGVmaW5lZCBWYXJpYWJsZXMiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICA8Y29sbGVj + dGlvblByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgPC9lbGVtZW50UHJv + cD4NCiAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IlRlc3RQbGFuLnVzZXJfZGVmaW5lX2NsYXNzcGF0 + aCI+PC9zdHJpbmdQcm9wPg0KICAgIDwvVGVzdFBsYW4+DQogICAgPGhhc2hUcmVlPg0KICAgICAg + PEFyZ3VtZW50cyBndWljbGFzcz0iQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRz + IiB0ZXN0bmFtZT0iVXNlciBEZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAg + ICAgIDxjb2xsZWN0aW9uUHJvcCBuYW1lPSJBcmd1bWVudHMuYXJndW1lbnRzIj4NCiAgICAgICAg + ICA8ZWxlbWVudFByb3AgbmFtZT0iZHVyYXRpb25faW5fc2VjIiBlbGVtZW50VHlwZT0iQXJndW1l + bnQiPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubmFtZSI+ZHVyYXRp + b25faW5fc2VjPC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJn + dW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5nZXRlbnYoJnF1b3Q7ZHVyYXRpb25faW5f + c2VjJnF1b3Q7KSA/OiAmcXVvdDsxMCZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAg + IDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAg + ICAgICAgIDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9InJwcyIg + ZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFy + Z3VtZW50Lm5hbWUiPnJwczwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3JwcyZx + dW90OykgPzogJnF1b3Q7MSZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJp + bmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAgICAgICAg + IDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9ImRvbWFpbiIgZWxl + bWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3Vt + ZW50Lm5hbWUiPmRvbWFpbjwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O2RvbWFp + biZxdW90OykgPzogJnF1b3Q7ZXhhbXBsZS5jb20mcXVvdDsgKX08L3N0cmluZ1Byb3A+DQogICAg + ICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5tZXRhZGF0YSI+PTwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICA8L2VsZW1lbnRQcm9wPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1l + PSJwcm90b2NvbCIgZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQ + cm9wIG5hbWU9IkFyZ3VtZW50Lm5hbWUiPnByb3RvY29sPC9zdHJpbmdQcm9wPg0KICAgICAgICAg + ICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5n + ZXRlbnYoJnF1b3Q7cHJvdG9jb2wmcXVvdDspID86ICZxdW90O2h0dHBzJnF1b3Q7ICl9PC9zdHJp + bmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubWV0YWRhdGEi + Pj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAgICAgICA8ZWxl + bWVudFByb3AgbmFtZT0idXJsX3BhdGgiIGVsZW1lbnRUeXBlPSJBcmd1bWVudCI+DQogICAgICAg + ICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5uYW1lIj51cmxfcGF0aDwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jv + b3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3VybF9wYXRoJnF1b3Q7KSA/OiAmcXVvdDsvJnF1b3Q7 + ICl9PC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQu + bWV0YWRhdGEiPj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAg + ICAgPC9jb2xsZWN0aW9uUHJvcD4NCiAgICAgIDwvQXJndW1lbnRzPg0KICAgICAgPGhhc2hUcmVl + Lz4NCiAgICAgIDxPcGVuTW9kZWxUaHJlYWRHcm91cCBndWljbGFzcz0iT3Blbk1vZGVsVGhyZWFk + R3JvdXBHdWkiIHRlc3RjbGFzcz0iT3Blbk1vZGVsVGhyZWFkR3JvdXAiIHRlc3RuYW1lPSJPcGVu + IE1vZGVsIFRocmVhZCBHcm91cCIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgIDxlbGVtZW50UHJv + cCBuYW1lPSJUaHJlYWRHcm91cC5tYWluX2NvbnRyb2xsZXIiIGVsZW1lbnRUeXBlPSJPcGVuTW9k + ZWxUaHJlYWRHcm91cENvbnRyb2xsZXIiLz4NCiAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iVGhy + ZWFkR3JvdXAub25fc2FtcGxlX2Vycm9yIj5jb250aW51ZTwvc3RyaW5nUHJvcD4NCiAgICAgICAg + PHN0cmluZ1Byb3AgbmFtZT0iT3Blbk1vZGVsVGhyZWFkR3JvdXAuc2NoZWR1bGUiPnJhdGUoJHty + cHN9L3NlYykgcmFuZG9tX2Fycml2YWxzKCR7ZHVyYXRpb25faW5fc2VjfSBzZWMpPC9zdHJpbmdQ + cm9wPg0KICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJPcGVuTW9kZWxUaHJlYWRHcm91cC5yYW5k + b21fc2VlZCI+PC9zdHJpbmdQcm9wPg0KICAgICAgPC9PcGVuTW9kZWxUaHJlYWRHcm91cD4NCiAg + ICAgIDxoYXNoVHJlZT4NCiAgICAgICAgPEhUVFBTYW1wbGVyUHJveHkgZ3VpY2xhc3M9Ikh0dHBU + ZXN0U2FtcGxlR3VpIiB0ZXN0Y2xhc3M9IkhUVFBTYW1wbGVyUHJveHkiIHRlc3RuYW1lPSJIVFRQ + IFJlcXVlc3QiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1lPSJI + VFRQc2FtcGxlci5Bcmd1bWVudHMiIGVsZW1lbnRUeXBlPSJBcmd1bWVudHMiIGd1aWNsYXNzPSJI + VFRQQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRzIiB0ZXN0bmFtZT0iVXNlciBE + ZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgICAgICA8Y29sbGVjdGlv + blByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgICAgIDwvZWxlbWVudFBy + b3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBsZXIuZG9tYWluIj4ke2Rv + bWFpbn08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBs + ZXIucG9ydCI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBT + YW1wbGVyLnByb3RvY29sIj4ke3Byb3RvY29sfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3Ry + aW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5jb250ZW50RW5jb2RpbmciPjwvc3RyaW5nUHJvcD4N + CiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5wYXRoIj4ke3VybF9wYXRo + fTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5t + ZXRob2QiPkdFVDwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8Ym9vbFByb3AgbmFtZT0iSFRUUFNh + bXBsZXIuZm9sbG93X3JlZGlyZWN0cyI+dHJ1ZTwvYm9vbFByb3A+DQogICAgICAgICAgPGJvb2xQ + cm9wIG5hbWU9IkhUVFBTYW1wbGVyLmF1dG9fcmVkaXJlY3RzIj5mYWxzZTwvYm9vbFByb3A+DQog + ICAgICAgICAgPGJvb2xQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnVzZV9rZWVwYWxpdmUiPnRydWU8 + L2Jvb2xQcm9wPg0KICAgICAgICAgIDxib29sUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5ET19NVUxU + SVBBUlRfUE9TVCI+ZmFsc2U8L2Jvb2xQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9 + IkhUVFBTYW1wbGVyLmVtYmVkZGVkX3VybF9yZSI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxz + dHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLmNvbm5lY3RfdGltZW91dCI+PC9zdHJpbmdQcm9w + Pg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnJlc3BvbnNlX3RpbWVv + dXQiPjwvc3RyaW5nUHJvcD4NCiAgICAgICAgPC9IVFRQU2FtcGxlclByb3h5Pg0KICAgICAgICA8 + aGFzaFRyZWUvPg0KICAgICAgPC9oYXNoVHJlZT4NCiAgICA8L2hhc2hUcmVlPg0KICA8L2hhc2hU + cmVlPg0KPC9qbWV0ZXJUZXN0UGxhbj4NCg== + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '4870' + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A22Z&sr=b&sp=r&sig=CRZaH%2FnkX1ez5rCSTSJ7WkEgXLKuayX9RI8gNNKLE2g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:52:22.0675654Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:22 GMT + location: + - https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + mise-correlation-id: + - 9207e391-6e55-4dd6-8ac2-8bf55dc34f6d + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094221Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004ecy + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A22Z&sr=b&sp=r&sig=BSKc1PAQdYBAwNDDX%2FGkzIIihKLEy%2BCTbO4YxwTMcj8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:52:22.181205Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '559' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:22 GMT + mise-correlation-id: + - 0e562774-7197-4b26-a028-c4eef03293e9 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094222Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004eds + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A36%3A57Z&ske=2024-11-22T16%3A36%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A27Z&sr=b&sp=r&sig=qrBzmaBAJW7owLT2AP%2FTPTtKg5Qc7PEH9y5MMhKUY0A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:52:27.3022132Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:27 GMT + mise-correlation-id: + - 93f694fe-25cd-40a0-a2a9-02f6ca81fd59 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094227Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004ekr + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A33Z&sr=b&sp=r&sig=WFxVZdLX7%2BB3cP0G6gDwqfn8w%2FmBn8CEY7C7oy5XUyU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:52:33.0300238Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:33 GMT + mise-correlation-id: + - 2ea24d97-c40c-4089-ba55-95f46d69e66f + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094232Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004eqh + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A38Z&sr=b&sp=r&sig=MFtFNJJRPkYi8SwS5%2FcFKsBb7hR4HLx7zEber5DE3ok%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:52:38.154968Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '557' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:38 GMT + mise-correlation-id: + - f9603177-1ec7-400f-9c6e-68f285fc51e6 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094238Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004eum + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A43Z&sr=b&sp=r&sig=QTKGjaVaiRlrR4ca1GBYlGtL7J6mq%2BUjDDmJbu35HqI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:52:43.2714975Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:43 GMT + mise-correlation-id: + - 675e985b-894f-4ec0-b582-e8926c4f5fbf + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094243Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004eyr + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A48Z&sr=b&sp=r&sig=O6sfqRkq%2FkxDIgWqatEpaxD6TUPC8g0fByaoLYSztbM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:52:48.399911Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '557' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:48 GMT + mise-correlation-id: + - 7d001964-f703-4e06-b2f6-1e4c581b0722 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094248Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004f2r + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A40%3A53Z&ske=2024-11-22T23%3A40%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T09%3A52%3A53Z&sr=b&sp=r&sig=AREoPSpaUDH%2Fvr4Q6iW6igH2Fo0Y0vTXf94FL84t24A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T09:52:53.5211379Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:53 GMT + mise-correlation-id: + - e5f0e90b-9014-4cbc-8eeb-caf595775c00 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094253Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004f6n + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"fc0b4f4d-f2df-4d0f-9832-d55fff796fbd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"804034e4-398f-4b6d-8d02-b56da1afaaad":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8f7035b1-62b6-4238-aaf4-32e91b6522d5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A53Z&sr=b&sp=r&sig=xiNsBIgyeIXvSCssQvKQ5%2FX5VmAHTnRI3c3rxtpzC5Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:42:53.6251665Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/02ae4e99-a7b5-486c-ab1c-fbdf36c8f4c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A53Z&sr=b&sp=r&sig=0UrnfYhdMXHMJLQQda8Jl8UJpPpMYImf4MrEX9VGn8k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:42:53.6254481Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/5e9d5d08-a715-49a7-a051-03c2cd91e63d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A35Z&ske=2024-11-22T16%3A37%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A53Z&sr=b&sp=r&sig=DEL%2BMVrjWhP3yYOWSkE09%2BBMLMeu1%2BL5mjxgxj4UqC8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:42:53.6255465Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:42:53.315Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2865' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:53 GMT + mise-correlation-id: + - c570fde8-3ee3-4ea2-9c08-9553c52870ed + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094253Z-r16f5dbf676s4pkkhC1YVRe6d800000004s0000000004f6s + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:54 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 31707AEB377C4EAF876F46B175B01CFE Ref B: CO6AA3150217047 Ref C: 2024-11-22T09:42:55Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"fc0b4f4d-f2df-4d0f-9832-d55fff796fbd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"804034e4-398f-4b6d-8d02-b56da1afaaad":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8f7035b1-62b6-4238-aaf4-32e91b6522d5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A55Z&sr=b&sp=r&sig=cmO4rOUmxyzQz3DyYEkmSoDpcXZeb12Qxf1oMwqRNl8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:42:55.7401108Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/02ae4e99-a7b5-486c-ab1c-fbdf36c8f4c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A55Z&sr=b&sp=r&sig=fYA8hNT1T%2F%2BaoGnLYhqEq6Me71r2Tgi0ZkhTmZNQy7M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:42:55.7406343Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/5e9d5d08-a715-49a7-a051-03c2cd91e63d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A37%3A42Z&ske=2024-11-22T23%3A37%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A55Z&sr=b&sp=r&sig=N348fXwPyoGAWwpI05qV1c9x6yJlY16OqVmfvheyCao%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:42:55.7408471Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:42:53.315Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2861' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:55 GMT + mise-correlation-id: + - 9913d5a3-cb9a-4408-8cd7-3126cf17997c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094255Z-17b7777dc45rqdl4hC1CO1ksan0000000fu0000000009urf + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:55 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D41161CB9A5F41CB85B235750287E16C Ref B: CO6AA3150219053 Ref C: 2024-11-22T09:42:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"fc0b4f4d-f2df-4d0f-9832-d55fff796fbd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"804034e4-398f-4b6d-8d02-b56da1afaaad":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8f7035b1-62b6-4238-aaf4-32e91b6522d5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A56Z&sr=b&sp=r&sig=wqemF%2BtjjPU6hdiRDbdcUb18jIMXuSj0QYnrTRUQsBA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:42:56.494286Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/02ae4e99-a7b5-486c-ab1c-fbdf36c8f4c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A56Z&sr=b&sp=r&sig=s2Iplpxr7NF98VtJLuJZszI9kDhyaSrgjRtaiIDKa6c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:42:56.4946466Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/5e9d5d08-a715-49a7-a051-03c2cd91e63d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A56Z&sr=b&sp=r&sig=KS9g4ymqB%2Fh07Veslw7kzXZdxKHOKaDn%2FcUWP%2FdiXMw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:42:56.4947518Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:42:53.315Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2864' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:56 GMT + mise-correlation-id: + - c5697181-f348-4c0a-8758-104ed4071594 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094256Z-17b7777dc45cd6gnhC1CO1wzd80000000hqg00000000ecpz + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-22T09:35:46.8994985Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-22T09:35:46.8994985Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:56 GMT + etag: + - '"fb037014-0000-0200-0000-6740508d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E4FE0D90B21E45B4980239678525ADE2 Ref B: CO6AA3150219009 Ref C: 2024-11-22T09:42:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://07813ddf-fdf4-45dc-96c5-7c09093c2ffd.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"fc0b4f4d-f2df-4d0f-9832-d55fff796fbd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"804034e4-398f-4b6d-8d02-b56da1afaaad":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8f7035b1-62b6-4238-aaf4-32e91b6522d5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/86083a94-240c-4a97-a69d-421a6db87290?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A57Z&sr=b&sp=r&sig=WDfxvE3uG6kj0YsVBJcTTMchWAyxMV%2BQhjeVaSxMTF4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-22T10:42:57.42445Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/02ae4e99-a7b5-486c-ab1c-fbdf36c8f4c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A57Z&sr=b&sp=r&sig=jAcKyCik%2BX52o2jbL3KrBPga4JvVgBaLzl5NcnolPQY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-22T10:42:57.4249359Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://dfmruttarylj3ernffyq8rvd.z41.blob.storage.azure.net/8d5a12c6-076f-481c-ba1e-b401a28210fd/5e9d5d08-a715-49a7-a051-03c2cd91e63d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-22T09%3A41%3A57Z&ske=2024-11-22T23%3A41%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-22T10%3A42%3A57Z&sr=b&sp=r&sig=rniX8eg3kbMefRlRHN9xqnN1gXcOAnyF3MOuWi82k0w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-22T10:42:57.42523Z","validationStatus":"VALIDATION_NOT_REQUIRED"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-22T09:36:56.642Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-22T09:42:53.315Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2857' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Nov 2024 09:42:57 GMT + mise-correlation-id: + - f625dfcf-30c4-4954-8442-0ec187d754e9 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241122T094257Z-17b7777dc4569rwghC1CO1z91n0000000a6g00000000cmqt + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_create.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_create.yaml index 029f5126841..3124befcdbe 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_create.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_create.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --vnet-name User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets?api-version=2024-01-01 response: body: - string: '{"value":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","etag":"W/\"a367cab2-e2af-4f00-8ac8-d9eecb168457\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}]}' + string: '{"value":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","etag":"W/\"c3e86910-d30a-4748-8efa-b846995c77c7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}]}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:36 GMT + - Wed, 20 Nov 2024 11:23:11 GMT expires: - '-1' pragma: @@ -39,14 +39,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ed0b71d-8883-4980-bc48-f0483dafb0ef + - c58a71e2-e44d-4cda-983c-8f762b05e9b5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 87F77408D60C4E5CA831C592ED95FA74 Ref B: MAA201060513031 Ref C: 2024-11-07T05:49:36Z' + - 'Ref A: 634AF699FA724B87A5239CE154D8D2A4 Ref B: CO6AA3150218017 Ref C: 2024-11-20T11:23:10Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -57,23 +57,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:27.9889402Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.9889402Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:22:04.2489515Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:22:04.2489515Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:38 GMT + - Wed, 20 Nov 2024 11:23:12 GMT etag: - - '"13013899-0000-0200-0000-672c54c40000"' + - '"97032b02-0000-0200-0000-673dc6730000"' expires: - '-1' pragma: @@ -89,7 +89,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FCBD4315E47343149FEA04757305FD46 Ref B: MAA201060516053 Ref C: 2024-11-07T05:49:38Z' + - 'Ref A: C12DB0F0C70F47E284497A6D5DD57188 Ref B: CO6AA3150218053 Ref C: 2024-11-20T11:23:12Z' status: code: 200 message: OK @@ -103,30 +103,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier create-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:49:41 GMT + - Wed, 20 Nov 2024 11:23:12 GMT mise-correlation-id: - - ea927e6d-2c2d-4a19-ad80-f7121806fb35 + - cb102551-df72-4e86-8251-060bb50946c9 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T054940Z-16998b5679fx5676hC1MAAqzc4000000077g000000002ucc + - 20241120T112312Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005y03 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -140,18 +141,19 @@ interactions: body: '{"displayName": "Sample_test_display_name", "description": "Sample_test_description", "keyvaultReferenceIdentityType": "UserAssigned", "keyvaultReferenceIdentityId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi", - "publicIPDisabled": true, "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7gscam2ojmmpmkggs/providers/Microsoft.Network/virtualNetworks/clitest-load-ote5sb2yhugb4s5q6/subnets/default", + "publicIPDisabled": true, "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-i6w7yalterrsrbywm/providers/Microsoft.Network/virtualNetworks/clitest-load-jj5j6o2aziv6dcull/subnets/default", "environmentVariables": {"rps": "10"}, "secrets": {"secret_name1": {"type": "AKV_SECRET_URI", "value": "https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"}, "secret_name2": {"type": "AKV_SECRET_URI", "value": "https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}}, "certificate": {"name": "cert", "type": "AKV_CERT_URI", "value": "https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc"}, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"e999bc39-50ee-4569-928b-578d99a1ada8": + true}, "passFailCriteria": {"passFailMetrics": {"6cd1539f-6553-4a58-8db0-6958b195d773": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "2edb8822-dfe0-4782-9643-8d0b29ac6b3d": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "e57f3d76-5614-43d2-9243-a9f67513b0fb": + "78"}, "a8598f04-654d-4b0a-906b-693aad39109f": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "b99a03ad-a0cb-41f3-be93-b1ff107b8d06": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -160,35 +162,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1600' + - '1648' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e999bc39-50ee-4569-928b-578d99a1ada8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2edb8822-dfe0-4782-9643-8d0b29ac6b3d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e57f3d76-5614-43d2-9243-a9f67513b0fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":true,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2024-11-07T05:49:43.037Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:49:43.037Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6cd1539f-6553-4a58-8db0-6958b195d773":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a8598f04-654d-4b0a-906b-693aad39109f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b99a03ad-a0cb-41f3-be93-b1ff107b8d06":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":true,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2024-11-20T11:23:13.979Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:23:13.979Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1822' + - '1924' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:43 GMT + - Wed, 20 Nov 2024 11:23:14 GMT location: - - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-03-01-preview + - https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-03-01-preview mise-correlation-id: - - c60cf611-f721-494b-a26d-2a0e8b03ba9a + - e20e46ca-804e-4e38-9e5a-52470dad646f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054941Z-16998b5679fx5676hC1MAAqzc4000000077g000000002udm + - 20241120T112312Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005y08 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -206,9 +209,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -216,7 +219,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -224,13 +228,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:43 GMT + - Wed, 20 Nov 2024 11:23:14 GMT mise-correlation-id: - - 635e256d-d7d6-436f-bd39-c9a39a538b46 + - 3f8ed982-b145-4c23-9bda-b1d8f919213d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054943Z-16998b5679fx5676hC1MAAqzc4000000077g000000002ufx + - 20241120T112314Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005y0q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -255,33 +259,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b50e01-9ecf-498d-a8be-4bab5d8967cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A46Z&sr=b&sp=r&sig=un39R8oMEo3FXZXXzdnsf4%2BeEJC7DxL%2BgnvaSF4qtKs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T05:59:46.1701542Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/d0af2d84-8cf4-4449-b922-00d51a9d4186?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A15Z&sr=b&sp=r&sig=OihzHNWJzAgmNwoH52v1vt%2BlPlcwdDypiSxxwqfTGtQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:33:15.2166984Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '575' + - '573' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:46 GMT + - Wed, 20 Nov 2024 11:23:15 GMT location: - - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 9a7e4125-8ad0-46bf-add0-4395e039d61d + - 5ed24467-5542-4d9c-af3a-52305707f2e4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054943Z-16998b5679fx5676hC1MAAqzc4000000077g000000002uge + - 20241120T112314Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005y0t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,17 +304,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b50e01-9ecf-498d-a8be-4bab5d8967cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A46Z&sr=b&sp=r&sig=un39R8oMEo3FXZXXzdnsf4%2BeEJC7DxL%2BgnvaSF4qtKs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T05:59:46.5101234Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/d0af2d84-8cf4-4449-b922-00d51a9d4186?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A15Z&ske=2024-11-20T18%3A23%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A15Z&sr=b&sp=r&sig=5vpqS2zlc%2ByjcoZhezNlTEuAXw3r48qhuU9aHtfun%2F8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:33:15.3750955Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -317,13 +323,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:46 GMT + - Wed, 20 Nov 2024 11:23:15 GMT mise-correlation-id: - - d3bd5afa-a1e9-43a9-8a62-1bdca13088f0 + - ad5e0acc-ee1a-4176-812a-40264bc4e968 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054946Z-16998b5679fx5676hC1MAAqzc4000000077g000000002unx + - 20241120T112315Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005y1c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -352,17 +358,18 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A47Z&sr=b&sp=r&sig=1XImV3DhJlEJiXkvJdfhfliZgjKGIsiHcXDxqGoAdVw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:47.2055097Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/10b05c2e-6beb-465b-93cf-cb352eb868d4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A15Z&ske=2024-11-20T18%3A23%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A16Z&sr=b&sp=r&sig=ulS5LBi6sQURK342Vb6uxMRObwCDV3YTHz2VcPzm6YM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:16.3105279Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -370,15 +377,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:47 GMT + - Wed, 20 Nov 2024 11:23:16 GMT location: - - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 414360dc-2064-4b76-bdc6-2fe5495aa235 + - b0e98f8e-a692-4c05-a43b-30dca6718bae strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054946Z-16998b5679fx5676hC1MAAqzc4000000077g000000002upt + - 20241120T112315Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005y1k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -396,17 +403,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A47Z&sr=b&sp=r&sig=G2xvF4TTgREXxi1BWx1HlMKtDS9jc24BrF2eMDXwD5Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:47.5169725Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/10b05c2e-6beb-465b-93cf-cb352eb868d4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A16Z&ske=2024-11-20T18%3A23%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A17Z&sr=b&sp=r&sig=Jd0AxQQ6nlIuwkUTkto6UHfAUnksGrWJCpCuZH8NOOM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:17.3209368Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -414,13 +422,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:47 GMT + - Wed, 20 Nov 2024 11:23:17 GMT mise-correlation-id: - - 00dbe29a-933f-4796-9eb9-287fe7ffe9b7 + - fd1c4d41-9306-42d5-ad07-283a667e9af2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054947Z-16998b5679fx5676hC1MAAqzc4000000077g000000002ur4 + - 20241120T112316Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005y27 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -438,31 +446,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A52Z&sr=b&sp=r&sig=sgZyNmHU9QwtET3XkBgdCfv2BkAiGlbz6BHFde6Eh7A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:52.8449751Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/10b05c2e-6beb-465b-93cf-cb352eb868d4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A15Z&ske=2024-11-20T18%3A23%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A22Z&sr=b&sp=r&sig=%2FEko8EvhY0g14MmQ2kFyiW71znKkzM17SkzfGZ17G6M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:22.4435163Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:52 GMT + - Wed, 20 Nov 2024 11:23:22 GMT mise-correlation-id: - - 4a6008bc-c8df-468b-8dd0-b3fb92e80db2 + - c30c7b99-7bfe-43fe-adf1-c44449cb3f97 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054952Z-16998b5679fx5676hC1MAAqzc4000000077g000000002uz9 + - 20241120T112322Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005y6f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -480,31 +489,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A58Z&sr=b&sp=r&sig=fLr9EOhMAVj7WmUkQa4TwkHuLK4msDjuaVmI0jDoqjw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:58.1500175Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/10b05c2e-6beb-465b-93cf-cb352eb868d4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A15Z&ske=2024-11-20T18%3A23%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A27Z&sr=b&sp=r&sig=ocXe5M4GB36UZr39Tq8z%2BJQBXdZo3cpDBmeGkaCYeGc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:27.5632555Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:58 GMT + - Wed, 20 Nov 2024 11:23:27 GMT mise-correlation-id: - - d7c5459d-6655-40de-aecd-7985219b76e0 + - c5e6294f-cc26-4b9a-8f5a-13731c904136 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054958Z-16998b5679fx5676hC1MAAqzc4000000077g000000002v5n + - 20241120T112327Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005ya1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -522,17 +532,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A03Z&sr=b&sp=r&sig=Jm7SgjE7ouBY2iOi0h1QN4jAM13wlfMxVasZn%2BHycrk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:00:03.4410313Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/10b05c2e-6beb-465b-93cf-cb352eb868d4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A15Z&ske=2024-11-20T18%3A23%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A32Z&sr=b&sp=r&sig=1d23uNrtzfdAdonUjH1Ep25i%2BTK4gdjS2orl9cQHNOY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:32.6828204Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -540,13 +551,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:03 GMT + - Wed, 20 Nov 2024 11:23:32 GMT mise-correlation-id: - - 9eb809d2-f93c-4216-81d7-c7e3e01be0d1 + - 64fa6dbf-86ab-41d5-99ea-3184c6115f44 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055003Z-16998b5679fx5676hC1MAAqzc4000000077g000000002vbw + - 20241120T112332Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005ycr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -564,31 +575,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A08Z&sr=b&sp=r&sig=ykj8eOP%2F%2B%2BFCCJoyjU2GiVaHU67sSXE5zBaZYbC1lIg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:00:08.7418998Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/10b05c2e-6beb-465b-93cf-cb352eb868d4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A37Z&sr=b&sp=r&sig=9T0yvxmSIJup%2Fq6fRHgkbmCaeFDLTwrHCaw9%2FOmxB78%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:37.8446979Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '572' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:08 GMT + - Wed, 20 Nov 2024 11:23:37 GMT mise-correlation-id: - - b3e3480d-b55a-4450-afff-e9aa1a8e668f + - f68c32b1-efaf-4adf-b53c-27040f061b20 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055008Z-16998b5679fx5676hC1MAAqzc4000000077g000000002vhs + - 20241120T112337Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005ygt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -606,17 +618,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A14Z&sr=b&sp=r&sig=EP5MlFuqDptq%2BoNuumvUx2vtTz0klpHYZ0luztadHN4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:00:14.0398989Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/10b05c2e-6beb-465b-93cf-cb352eb868d4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A42Z&sr=b&sp=r&sig=UMpxK%2BTk1%2Bdlx34gKMtiqafx52W0oDfobG2kjgz1c3A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:42.9681847Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -624,55 +637,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:14 GMT + - Wed, 20 Nov 2024 11:23:42 GMT mise-correlation-id: - - 67ae964a-3a0f-46b2-9532-ba5b0553c65b + - 0ac323a9-c12c-4816-8af4-172fdae1eb78 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055013Z-16998b5679fx5676hC1MAAqzc4000000077g000000002vrr - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A14Z&ske=2024-11-07T12%3A50%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A19Z&sr=b&sp=r&sig=aUz9sfuURi5K1yp6PcUxH3D3iWbmfq5b%2BVCI46OFb3o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:00:19.3337064Z","validationStatus":"VALIDATION_SUCCESS"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '568' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Nov 2024 05:50:19 GMT - mise-correlation-id: - - f39016ad-7379-464b-8525-696d3d365799 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241107T055019Z-16998b5679fx5676hC1MAAqzc4000000077g000000002vzb + - 20241120T112342Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005ypz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -782,33 +753,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A20Z&sr=b&sp=r&sig=t4vXjs%2B9OsYk%2BKRrO6bNMQQchu9UFTBOQMb8jTbTJVQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:20.0307222Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/e94d073c-60bf-421e-ad4b-93fb6bb46779?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A44Z&sr=b&sp=r&sig=oSL%2BgjyU9iMOvmE3%2F0QbX8leC0sapqMKEJuj%2BX7fpqU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:33:44.020842Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '561' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:20 GMT + - Wed, 20 Nov 2024 11:23:44 GMT location: - - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 44ab09a9-4cf6-42dd-a1f3-a85be53a8860 + - 74fb5614-1be9-4a80-9466-4b9b28bbcd2e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055019Z-16998b5679fx5676hC1MAAqzc4000000077g000000002vzp + - 20241120T112343Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005yq1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -826,17 +798,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A20Z&sr=b&sp=r&sig=%2BoxLmvI9z%2BCHwlXB%2FDusrIXZyftt40atChyntwawF8w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:20.3336973Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/e94d073c-60bf-421e-ad4b-93fb6bb46779?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A15Z&ske=2024-11-20T18%3A23%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A44Z&sr=b&sp=r&sig=0bPKJE5t%2Bwx%2BV2%2F4gnt5e7qab3BMMPYg3sL5RUoWhsk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:33:44.1456074Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -844,13 +817,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:20 GMT + - Wed, 20 Nov 2024 11:23:44 GMT mise-correlation-id: - - 0143aed5-1ffa-460c-ad8b-31ac2cf1c91b + - da65434b-cdc3-4ac4-9d80-a377a96ced57 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055020Z-16998b5679fx5676hC1MAAqzc4000000077g000000002w0v + - 20241120T112344Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005yqh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -868,17 +841,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A14Z&ske=2024-11-07T12%3A50%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A25Z&sr=b&sp=r&sig=3ZOUOj2B6sUsPKQZBIqAuamnqtVbYxbgp5sWuO60uxU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:25.6244044Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/e94d073c-60bf-421e-ad4b-93fb6bb46779?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A49Z&sr=b&sp=r&sig=MUrA6GAGt8JIGnz4wGVWViOQVFdJsIm3KnbPHaOHslE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:33:49.2646575Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -886,13 +860,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:25 GMT + - Wed, 20 Nov 2024 11:23:49 GMT mise-correlation-id: - - 9c12f73b-1c59-4b95-ae61-b9eed45b1191 + - eaf9d20d-751d-42d3-9704-acb97bcde5aa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055025Z-16998b5679fx5676hC1MAAqzc4000000077g000000002w89 + - 20241120T112349Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005ysq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -910,73 +884,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A14Z&ske=2024-11-07T12%3A50%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A30Z&sr=b&sp=r&sig=1Z8iEpHvCUfTg65GdkQVKAtnFz5xBAYTZWcD5CwPxDc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:30.925033Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/e94d073c-60bf-421e-ad4b-93fb6bb46779?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A15Z&ske=2024-11-20T18%3A23%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A54Z&sr=b&sp=r&sig=JhCgY7JUa7Zj0FcbxArkrNBHdl%2BKhCu4LcxqBDn55Qc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:33:54.3858798Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Nov 2024 05:50:31 GMT - mise-correlation-id: - - 3e240259-a190-47fc-9ed8-95fb9b5b65d1 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241107T055030Z-16998b5679fx5676hC1MAAqzc4000000077g000000002wes - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A36Z&sr=b&sp=r&sig=J1uGqEVLhi1Hr3uPbbnkH2wLFWI1vGHqVwfQLENV6tE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:36.2204868Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:36 GMT + - Wed, 20 Nov 2024 11:23:54 GMT mise-correlation-id: - - c689ca0d-282a-488b-9eab-08f53400db11 + - 5cbb1451-6beb-4290-a3f4-37e7e506ce0d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055036Z-16998b5679fx5676hC1MAAqzc4000000077g000000002wrh + - 20241120T112354Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005yvw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -994,31 +927,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A41Z&sr=b&sp=r&sig=Hrp9ztckQGSsQNCyuSLFS48xkxga4wi9N8thzMoZEiU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:41.5557557Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/e94d073c-60bf-421e-ad4b-93fb6bb46779?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A59Z&sr=b&sp=r&sig=e%2B3u1Ly9ZnS6nED350Vncka563dV0ZcXnJVo4jI8JsA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:33:59.5086673Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:41 GMT + - Wed, 20 Nov 2024 11:23:59 GMT mise-correlation-id: - - 666a92de-f26a-4231-8f4a-9e084bccc9cb + - 890b455e-efef-4025-bfb4-e8d6351b7fb2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055041Z-16998b5679fx5676hC1MAAqzc4000000077g000000002x14 + - 20241120T112359Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005zpn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1036,31 +970,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A46Z&sr=b&sp=r&sig=Xvee2ZE4%2FiqLfmny%2BjLBWmKvgZ28gabXpSe6KG4llSQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:46.8455817Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/e94d073c-60bf-421e-ad4b-93fb6bb46779?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A04Z&sr=b&sp=r&sig=xMpKMw38IoU5JXuD8ewTmrXGtjqFJWA3%2FGOTVCWeUus%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:04.6354323Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:46 GMT + - Wed, 20 Nov 2024 11:24:04 GMT mise-correlation-id: - - 8d393793-c580-4581-aab9-bd54ab473e70 + - 79c1a12d-d41b-448e-92cb-53c3933f30e3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055046Z-16998b5679fx5676hC1MAAqzc4000000077g000000002x9y + - 20241120T112404Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005zvq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1078,17 +1013,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A52Z&sr=b&sp=r&sig=8%2BBbH3MvptMrI8VNdrI1u%2FR81nkxaBKCZxnVEyGJFbA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:52.1423351Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/e94d073c-60bf-421e-ad4b-93fb6bb46779?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A09Z&sr=b&sp=r&sig=l3aWRU4%2F%2FAAoL3pKazHDD9kuASKgnIYxOjLD1QEp7Mg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:09.7514988Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1096,13 +1032,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:52 GMT + - Wed, 20 Nov 2024 11:24:09 GMT mise-correlation-id: - - 6767a349-cb16-43d7-800e-b7e60de4eceb + - 3f0b1d9f-7d6b-4cdd-94d7-1a799fef97cf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055052Z-16998b5679fx5676hC1MAAqzc4000000077g000000002xm6 + - 20241120T112409Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005zz6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1120,31 +1056,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e999bc39-50ee-4569-928b-578d99a1ada8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2edb8822-dfe0-4782-9643-8d0b29ac6b3d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e57f3d76-5614-43d2-9243-a9f67513b0fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A52Z&sr=b&sp=r&sig=MuUfwjv%2FtKqwyipnR4fCS%2BRiNWyVoT9spbgQiEdceaE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:52.4505075Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b50e01-9ecf-498d-a8be-4bab5d8967cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A52Z&sr=b&sp=r&sig=l0q8b1fY%2FmIBNONY9g3Pb5dMpimQFLqVMNPyhfTW3Rs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:50:52.4510334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A52Z&sr=b&sp=r&sig=xDmx3vywi8sUYdqpcKeEZNvhSPzqqCsGk5AYx4HVnwQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:50:52.451192Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":true,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2024-11-07T05:49:43.037Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:51.992Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6cd1539f-6553-4a58-8db0-6958b195d773":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a8598f04-654d-4b0a-906b-693aad39109f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b99a03ad-a0cb-41f3-be93-b1ff107b8d06":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/e94d073c-60bf-421e-ad4b-93fb6bb46779?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A09Z&sr=b&sp=r&sig=DcN5sRRkw8%2Fe18nKe9N%2BURyWChSrLG%2F13X%2FIcFMdBKA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:09.8650326Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/d0af2d84-8cf4-4449-b922-00d51a9d4186?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A09Z&sr=b&sp=r&sig=hv54l2c0%2FEVbcSi1k6HcO9FMQ3NQrKg3qm0%2Fuvuwpuo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:09.8984099Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/10b05c2e-6beb-465b-93cf-cb352eb868d4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A09Z&sr=b&sp=r&sig=2p8EwYhcR3V%2BbgbJHte%2FuTyS4%2FBXIL33QbxLSHHSVG4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:09.8984925Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":true,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2024-11-20T11:23:13.979Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:07.215Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '3541' + - '3656' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:52 GMT + - Wed, 20 Nov 2024 11:24:09 GMT mise-correlation-id: - - 66eae96c-c114-414d-b705-9fdd22123955 + - cdfb2333-2328-4083-8f3f-6b235df212f4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055052Z-16998b5679fx5676hC1MAAqzc4000000077g000000002xmy + - 20241120T112409Z-r16f5dbf6768jcq4hC1YVRch00000000038g000000005zzb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1162,23 +1099,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:27.9889402Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.9889402Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:22:04.2489515Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:22:04.2489515Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:52 GMT + - Wed, 20 Nov 2024 11:24:09 GMT etag: - - '"13013899-0000-0200-0000-672c54c40000"' + - '"97032b02-0000-0200-0000-673dc6730000"' expires: - '-1' pragma: @@ -1194,7 +1131,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 98C7E5EB8C0449FB8EE13C59F3484DCE Ref B: MAA201060514049 Ref C: 2024-11-07T05:50:53Z' + - 'Ref A: EBD82A4A9D8B4B5095A7740119987DF6 Ref B: CO6AA3150220011 Ref C: 2024-11-20T11:24:10Z' status: code: 200 message: OK @@ -1208,31 +1145,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e999bc39-50ee-4569-928b-578d99a1ada8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2edb8822-dfe0-4782-9643-8d0b29ac6b3d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e57f3d76-5614-43d2-9243-a9f67513b0fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A56Z&sr=b&sp=r&sig=esI3Km2NGMM4oFIWlJ3stAmZmL5BOE2GjcWGDJDE%2FHo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:56.6656901Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b50e01-9ecf-498d-a8be-4bab5d8967cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A56Z&sr=b&sp=r&sig=8fp30ZrGD9xKLo%2FzNuHMXnYkMDwvVnXfVGjPfjwnO1s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:50:56.66611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A56Z&sr=b&sp=r&sig=6FLimGEZw8H8nutt0Xwnbo%2F%2FgrwsHqD7gqZmFXBDK8M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:50:56.6662684Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":true,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2024-11-07T05:49:43.037Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:51.992Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"6cd1539f-6553-4a58-8db0-6958b195d773":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a8598f04-654d-4b0a-906b-693aad39109f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b99a03ad-a0cb-41f3-be93-b1ff107b8d06":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/e94d073c-60bf-421e-ad4b-93fb6bb46779?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A10Z&sr=b&sp=r&sig=IaA69Ol731dMKwKmtn8Uyc8Jg3sZ1dYICqFN7uImqeg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:10.719311Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/d0af2d84-8cf4-4449-b922-00d51a9d4186?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A10Z&sr=b&sp=r&sig=Q%2Fp3nTaWjAJRyj34N9%2BjVB0II0R1%2BFxjgX3Q4gthiVg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:10.719599Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/09609a63-d550-4f23-b752-7948a81fba26/10b05c2e-6beb-465b-93cf-cb352eb868d4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A10Z&sr=b&sp=r&sig=L7BEChR%2BXFoxH3ei6q61%2Fk7kDuWomKavxBOB%2FGFECTU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:10.719696Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":true,"testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2024-11-20T11:23:13.979Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:07.215Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '3542' + - '3647' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:56 GMT + - Wed, 20 Nov 2024 11:24:10 GMT mise-correlation-id: - - 55e77993-f604-4a58-915c-11b8909f7c46 + - 5783cade-154a-4bd2-804b-bfda8c5b55e5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055056Z-16998b5679fjcfrzhC1MAAf4fc0000000740000000009k8x + - 20241120T112410Z-1846dc7bb4d5mj2shC1YVR5tb400000003k0000000004144 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1250,23 +1188,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:27.9889402Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.9889402Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:22:04.2489515Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:22:04.2489515Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:59 GMT + - Wed, 20 Nov 2024 11:24:11 GMT etag: - - '"13013899-0000-0200-0000-672c54c40000"' + - '"97032b02-0000-0200-0000-673dc6730000"' expires: - '-1' pragma: @@ -1282,7 +1220,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E506C71BD6644FB39914C31ADFF1C285 Ref B: MAA201060513021 Ref C: 2024-11-07T05:50:58Z' + - 'Ref A: 72060DD37B724D6B954543D6CFDE687D Ref B: CO6AA3150217053 Ref C: 2024-11-20T11:24:12Z' status: code: 200 message: OK @@ -1296,30 +1234,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-pf-test-case?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-pf-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier invalid-pf-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:51:00 GMT + - Wed, 20 Nov 2024 11:24:13 GMT mise-correlation-id: - - 2c2999b8-8c48-4f12-a6e9-ce8c7dbc47d5 + - 5525b7b0-6895-4e31-8475-0f3a7fb96bcb strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T055059Z-184f6b5dbd8t7brhhC1MAAabh000000002ag000000007e97 + - 20241120T112412Z-1846dc7bb4ds2rqjhC1YVRyyk400000003h00000000015a2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1339,23 +1278,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:27.9889402Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.9889402Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:22:04.2489515Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:22:04.2489515Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:01 GMT + - Wed, 20 Nov 2024 11:24:12 GMT etag: - - '"13013899-0000-0200-0000-672c54c40000"' + - '"97032b02-0000-0200-0000-673dc6730000"' expires: - '-1' pragma: @@ -1371,7 +1310,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1386B70ACA1C4556880407BFA985884A Ref B: MAA201060514039 Ref C: 2024-11-07T05:51:01Z' + - 'Ref A: 75E173E4BE22494E86498A621BDD2ABD Ref B: CO6AA3150217037 Ref C: 2024-11-20T11:24:13Z' status: code: 200 message: OK @@ -1385,30 +1324,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier invalid-zip-count-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:51:02 GMT + - Wed, 20 Nov 2024 11:24:14 GMT mise-correlation-id: - - 6743bd2a-2670-4a09-a5ee-9ed638f0a526 + - b2ab0abc-8d73-42ef-bc0d-1e59edc831cc strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T055102Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdcx + - 20241120T112413Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000003y0h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1423,12 +1363,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": - false}, "passFailCriteria": {"passFailMetrics": {"1e4b9122-4479-4b0c-8541-f2f2d7291e29": + false}, "passFailCriteria": {"passFailMetrics": {"f9229388-9f8a-4dd7-b9fd-734d51265eb3": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "c0c1ff67-725b-4717-abcf-3fbd7d06e65d": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "1040318f-7356-4b82-a4a8-5203086b425f": + "78"}, "eb0f919e-f946-406e-8372-dcd486bfa353": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "911798f3-6a98-42fd-a075-78242eb4fbec": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + false, "errorRate": 90, "errorRateTimeWindowInSeconds": 60}}' headers: Accept: - application/json @@ -1437,36 +1378,37 @@ interactions: Connection: - keep-alive Content-Length: - - '792' + - '894' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1e4b9122-4479-4b0c-8541-f2f2d7291e29":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"c0c1ff67-725b-4717-abcf-3fbd7d06e65d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1040318f-7356-4b82-a4a8-5203086b425f":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"invalid-zip-count-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:51:03.352Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:51:03.352Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f9229388-9f8a-4dd7-b9fd-734d51265eb3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"eb0f919e-f946-406e-8372-dcd486bfa353":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"911798f3-6a98-42fd-a075-78242eb4fbec":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"invalid-zip-count-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:24:14.862Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:14.862Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1035' + - '1138' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:03 GMT + - Wed, 20 Nov 2024 11:24:14 GMT location: - - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-03-01-preview + - https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 56435ec8-ab66-4bf0-a65a-677c6684840a + - 50f5cf43-b7e1-4fee-a9ab-a2b7f15ce465 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055102Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bddu + - 20241120T112414Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000003y11 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1484,9 +1426,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -1494,7 +1436,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1502,13 +1445,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:03 GMT + - Wed, 20 Nov 2024 11:24:15 GMT mise-correlation-id: - - a10d2936-3089-45b3-88a6-5241d0105e60 + - 33d543f9-d4be-4f11-925e-ac732b448a98 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055103Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdek + - 20241120T112414Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000003y2r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1537,33 +1480,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A04Z&sr=b&sp=r&sig=HVcMaRA%2FHsDAc%2FCL1ueOuAK%2BtaL2PMMY2d5inV%2F%2FaT0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:04.1994731Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/305ea678-04ee-4bc4-a478-109cada9d9e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A16Z&sr=b&sp=r&sig=wH41g0EZi%2FmAt%2F4HDXztCJ9YZMH8P8rT2KWDUIjC%2FZo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:16.7284625Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '578' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:04 GMT + - Wed, 20 Nov 2024 11:24:16 GMT location: - - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - a0bcc462-3ea1-4964-8460-2ca30bd4ba6f + - 3bc9b48e-cffd-41f9-871c-48fca7ac1b41 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055103Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdex + - 20241120T112415Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000003y30 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1581,31 +1525,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A04Z&sr=b&sp=r&sig=HOKPw65RbJgtVO1b6ByYoCx2kN6m%2BZCCkvBTXIirbRQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:04.4901616Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/305ea678-04ee-4bc4-a478-109cada9d9e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A06Z&ske=2024-11-21T01%3A24%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A16Z&sr=b&sp=r&sig=6D8I5dGuFdUU%2Bh4YutN7jUN8l%2FxW5yB78clh14GHb7w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:16.8511205Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:04 GMT + - Wed, 20 Nov 2024 11:24:16 GMT mise-correlation-id: - - 4e57277f-7a09-4086-a463-34626c323331 + - b571872d-6802-4516-b67b-3ceb8d781d20 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055104Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdfk + - 20241120T112416Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000003y70 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1623,17 +1568,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A09Z&sr=b&sp=r&sig=%2Fwyjd8clL8Kgsnt1XYvKWtattxq2gVQK4BVVX2JxTtM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:09.7747043Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/305ea678-04ee-4bc4-a478-109cada9d9e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A21Z&sr=b&sp=r&sig=W6qeRyOTQCnPvf0cD6Ja8D1%2FOJsKwcPhh44bKqf0gNA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:21.9984096Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1641,13 +1587,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:09 GMT + - Wed, 20 Nov 2024 11:24:22 GMT mise-correlation-id: - - 448e6952-c4bb-44f8-bd32-937eef0de199 + - ff54dd8b-48a0-431a-8042-f7eb5e5a88cc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055109Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdqz + - 20241120T112421Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000003ymd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1665,31 +1611,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A15Z&sr=b&sp=r&sig=bS8SNxyXJaceXA9ECBgjkIjXpNqG52XTll7gsremNaU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:15.0570634Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/305ea678-04ee-4bc4-a478-109cada9d9e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A27Z&sr=b&sp=r&sig=RZLORWazi7sU8vlYDyGYcQr66zz2wtPL%2BynWSz8UKFU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:27.1971315Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:15 GMT + - Wed, 20 Nov 2024 11:24:27 GMT mise-correlation-id: - - ef3f85c4-fac7-46c9-89ab-b66e0feea588 + - 1a7293e4-dc2c-4f34-a282-ddf13b31ab0c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055114Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdxw + - 20241120T112427Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000003yz1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1707,17 +1654,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A20Z&sr=b&sp=r&sig=GZo4cN99ENzOthfGpnp2t8blQvqqTNYg8hZTP%2FHNvv4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:20.33209Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/305ea678-04ee-4bc4-a478-109cada9d9e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A32Z&sr=b&sp=r&sig=F9jKWxFjLhzvSOdcFmu85698eLNZbf7fW97UiNRGHAU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:32.3309695Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1725,13 +1673,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:20 GMT + - Wed, 20 Nov 2024 11:24:32 GMT mise-correlation-id: - - 4934a85e-f8dc-4c80-89a4-13e76ee342c2 + - 34e4370a-0ce0-4976-839e-a73850733b5b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055120Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000be4b + - 20241120T112432Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000003z94 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1749,31 +1697,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A25Z&sr=b&sp=r&sig=uJTF3M7B3g15VEPaVDF0R%2BVoZTs70ataGc4AEMgvf9Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:25.6146388Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/305ea678-04ee-4bc4-a478-109cada9d9e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A37Z&sr=b&sp=r&sig=9V%2BHVRlVMPV%2FQm8AlfLETNL1A62n9Q9j90149oBMmqU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:37.4580274Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:25 GMT + - Wed, 20 Nov 2024 11:24:37 GMT mise-correlation-id: - - e86a9489-7974-43ae-b2e7-f3e9fafe5f4e + - 9af56a1d-2678-4191-82a1-898c92a759c9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055125Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000beau + - 20241120T112437Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000003zna x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1791,31 +1740,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A30Z&sr=b&sp=r&sig=jk7BXYyNmcZaJMKWEUN0zkEyq9xlCmWyCSe%2BMPpGIhY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:30.8927116Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/305ea678-04ee-4bc4-a478-109cada9d9e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A42Z&sr=b&sp=r&sig=m8HqDOTqKCdjRxt8uyQF5bZ7LtSEOtY69KH94EdAKs8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:42.6061867Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '566' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:30 GMT + - Wed, 20 Nov 2024 11:24:42 GMT mise-correlation-id: - - 9a6f0eb3-ab1f-44d6-bd5d-4b6c6d558f89 + - e2235310-bcb4-4a77-bb5b-d49fe2e6e0a6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055130Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000beh8 + - 20241120T112442Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000003zzr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1844,33 +1794,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A31Z&sr=b&sp=r&sig=g5ZJiX0zOyP0CpPDK1LY%2Fls2dSK2n52E1bvancnxE5U%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:31.9652437Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/ae34bc2c-7d48-49eb-939f-c49521966deb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A16Z&ske=2024-11-20T18%3A23%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A42Z&sr=b&sp=r&sig=OV4HO6Nyuwr7DWEBdtdkHV6hmF46cIhwbh9XWHmLNks%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:42.972727Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '576' + - '573' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:31 GMT + - Wed, 20 Nov 2024 11:24:43 GMT location: - - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-03-01-preview + - https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-03-01-preview mise-correlation-id: - - 848f93b5-7f0e-4dd0-b9d0-46bcf73cad5e + - c906b736-6848-4142-889a-f42d672b7033 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055131Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000behm + - 20241120T112442Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000004003 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1888,17 +1839,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A32Z&sr=b&sp=r&sig=UahwfcWmmf2NePOSNXWJuWdMvF3rhvPwYyKzFOyelSk%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:32.2756689Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/ae34bc2c-7d48-49eb-939f-c49521966deb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A43Z&sr=b&sp=r&sig=YOoF7m1xpNsStMhhTeasSKaBHmdki20dyrVeYJM6mg8%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:43.0996796Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1906,13 +1858,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:32 GMT + - Wed, 20 Nov 2024 11:24:43 GMT mise-correlation-id: - - bf2a8664-35f0-4199-bd84-272fc3d27848 + - 1067f889-7e98-4206-91a2-8b0cc4b0f891 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055132Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bekx + - 20241120T112443Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000004011 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1930,31 +1882,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A37Z&sr=b&sp=r&sig=8%2BCyjIcMdDpoUjvVtxvUzL5u9HYci211IPccy%2BthOA4%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:37.5740672Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/ae34bc2c-7d48-49eb-939f-c49521966deb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A48Z&sr=b&sp=r&sig=Fxyuoy5NR1eTvHhv0WeB0W326AwB4T1n09Z7A1ZqYjY%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:48.2359918Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '578' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:37 GMT + - Wed, 20 Nov 2024 11:24:48 GMT mise-correlation-id: - - cd775902-055b-4fee-85ac-4d183ad17c16 + - 0b41800c-412e-4920-b2ee-cfb79b3fa3f9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055137Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000beta + - 20241120T112448Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000040e4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1972,31 +1925,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A42Z&sr=b&sp=r&sig=iJTBuHDTnFVXbGNXUvuR3CH%2ByW%2FtjI9GuP6HOqEyvc8%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:42.8506614Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/ae34bc2c-7d48-49eb-939f-c49521966deb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A53Z&sr=b&sp=r&sig=ZXt7D8zKW0x11Zod40l82vxPea8tGVo4HQh%2FimTVEPE%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:53.3751822Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '578' + - '576' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:24:53 GMT + mise-correlation-id: + - e603025c-e49d-4732-b95f-c281b3e9fb0e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112453Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000040vq + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/ae34bc2c-7d48-49eb-939f-c49521966deb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A58Z&sr=b&sp=r&sig=ivOeZLYmeZxxL%2BrgiyByuJuhKgOzrzcxay1EG0UB9jM%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:58.5164615Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:42 GMT + - Wed, 20 Nov 2024 11:24:58 GMT mise-correlation-id: - - e27005ac-a2f7-49eb-a6e2-ab414a476ee9 + - 3fcf967d-19cd-4b68-beec-e026c3d3547e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055142Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bf24 + - 20241120T112458Z-1789fbbbd78z6tj4hC1PDXnyz80000000h9000000000417t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2014,17 +2011,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A48Z&sr=b&sp=r&sig=Ztl2fohNBZenKjxZyPai7t2a%2BF13LvqyRURMaoViQkQ%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:48.1374661Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/ae34bc2c-7d48-49eb-939f-c49521966deb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A03Z&sr=b&sp=r&sig=rKVYSO6B5m5e7piCpp3l577cTe6KYKP4sfDsocBW%2F0o%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:03.6501308Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -2032,13 +2030,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:48 GMT + - Wed, 20 Nov 2024 11:25:03 GMT mise-correlation-id: - - e07f9434-6016-491f-a736-58143ca4522d + - 8371af50-b50e-4a49-b10a-9e63aed47cdb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055147Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bfcd + - 20241120T112503Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000041pt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2056,17 +2054,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A53Z&sr=b&sp=r&sig=Yuc8L%2BjR9izwhvfYjqvKsIH9gUe6iUMu5qB1MivZPBg%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:53.5195771Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/ae34bc2c-7d48-49eb-939f-c49521966deb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A16Z&ske=2024-11-20T18%3A23%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A08Z&sr=b&sp=r&sig=PS%2FLALsZWzMJie3mOkiZwC5GfAJ7dTNFwHVT7hHzBq8%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:08.7748906Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -2074,13 +2073,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:53 GMT + - Wed, 20 Nov 2024 11:25:08 GMT mise-correlation-id: - - b12b42a7-50bf-47b3-8d69-a5d135dd43d3 + - 8cf87cb8-80a4-4d05-a5dc-b480e6b038d1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055153Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bfkc + - 20241120T112508Z-1789fbbbd78z6tj4hC1PDXnyz80000000h9000000000423a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2109,33 +2108,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A51%3A54Z&ske=2024-11-07T21%3A51%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A54Z&sr=b&sp=r&sig=6SqeafC6RAVvT4y0e26WLB5yqTKhwgf5Q81Oahkjhmg%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:54.0546385Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/4942c4f6-be94-4e84-a976-594f6cfbde3a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A09Z&sr=b&sp=r&sig=E1euwerYp4hE%2BtrxpJ7IbRf%2BI1nz8sAZ%2FyPytwoWnZ8%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:09.0882175Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '580' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:54 GMT + - Wed, 20 Nov 2024 11:25:09 GMT location: - - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-03-01-preview + - https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-03-01-preview mise-correlation-id: - - 37b876f1-0f58-4182-9bc4-7a77af2319b2 + - 97df497e-f1b3-48d2-afe8-e8f3bc417e64 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055153Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bfkm + - 20241120T112508Z-1789fbbbd78z6tj4hC1PDXnyz80000000h9000000000423q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2153,31 +2153,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A54Z&sr=b&sp=r&sig=fJRXy2V%2FTJcwY95Vmu1TM8brrZAH0bOEjgDxGbmjkcQ%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:54.3498713Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/4942c4f6-be94-4e84-a976-594f6cfbde3a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A09Z&sr=b&sp=r&sig=S9DQznyIUfFs4qKU55PMkv%2FuCTnoeErDtMARiBL%2Bi04%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:09.2154985Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '576' + - '578' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:54 GMT + - Wed, 20 Nov 2024 11:25:09 GMT mise-correlation-id: - - be817aa0-37fa-4b44-a365-08205780e623 + - ab9493f5-d26c-4d15-b5c1-fb1815f8e753 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055154Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bfmf + - 20241120T112509Z-1789fbbbd78z6tj4hC1PDXnyz80000000h9000000000424k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2195,17 +2196,61 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A59Z&sr=b&sp=r&sig=fszrplUZDxNDDX%2BHxgArp39LU6gYpM3VnnGdIwTvuMc%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:59.6392899Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/4942c4f6-be94-4e84-a976-594f6cfbde3a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A14Z&sr=b&sp=r&sig=Dgbt6eb31EeAwzdmMseYDtzYOiR6cdsUYrwKSAf7yGY%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:14.3489129Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:25:14 GMT + mise-correlation-id: + - 343b4fa9-1123-46a6-895f-7829ece5f8fe + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112514Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000042gv + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/4942c4f6-be94-4e84-a976-594f6cfbde3a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A19Z&sr=b&sp=r&sig=On84umrPP6IyhMyldE4bX4bH8IvDxsmrGDUjR9%2FCTJg%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:19.4878777Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -2213,13 +2258,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:59 GMT + - Wed, 20 Nov 2024 11:25:19 GMT mise-correlation-id: - - 2590765c-c79a-446c-8a1a-505dab4cbd78 + - b258d628-3844-4457-8121-5810edbe8dfd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055159Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bfu0 + - 20241120T112519Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000042z6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2237,31 +2282,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A04Z&sr=b&sp=r&sig=tovk1TBHUv9WESYex7XkIxoEZ3jzZ6jpBs3dh7vaOPA%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:04.9211346Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/4942c4f6-be94-4e84-a976-594f6cfbde3a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A24Z&sr=b&sp=r&sig=Cq%2Ble%2B%2FwB7ajxiugm22o1YyDxnXE9lJNFxy1bb0ul4A%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:24.623835Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '579' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:04 GMT + - Wed, 20 Nov 2024 11:25:24 GMT mise-correlation-id: - - c3a4c3a8-fabe-4048-b90c-efbe23d4aeef + - 13981198-b48a-4362-a29d-89791374d7d5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055204Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bg2b + - 20241120T112524Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000043et x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2279,31 +2325,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A10Z&sr=b&sp=r&sig=RbriTatxKymf29qizu7cF95RY2WAxUHLPFnRmjFlbe0%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:10.218442Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/4942c4f6-be94-4e84-a976-594f6cfbde3a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A29Z&sr=b&sp=r&sig=iItMMecMsso1Kxh1%2Fd2CDnQflJaIS54vdJdy3bikzKc%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:29.7609189Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:10 GMT + - Wed, 20 Nov 2024 11:25:29 GMT mise-correlation-id: - - cc18a64f-1f2c-48c8-a993-7510375e6055 + - 79339cad-10e2-4693-9430-b3c61b6a722a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055210Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bg7m + - 20241120T112529Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000043yx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2321,17 +2368,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A15Z&sr=b&sp=r&sig=m4BIcTb%2FChO44tIt%2FP7nHwtL3hsBl7Gfp9LriSAdiFU%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:15.4982286Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/4942c4f6-be94-4e84-a976-594f6cfbde3a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A34Z&sr=b&sp=r&sig=dsChWt3r3RpojQg1OEoTfgFiCQMm13hxnFPs%2BkMQ0%2Fg%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:34.8814536Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -2339,13 +2387,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:15 GMT + - Wed, 20 Nov 2024 11:25:34 GMT mise-correlation-id: - - fa5fc66a-0468-4d3d-ae12-e91010512ec4 + - a3595b7f-79bd-4ba5-a6b6-57ae36249ab7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055215Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bgce + - 20241120T112534Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000044af x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2374,33 +2422,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A16Z&sr=b&sp=r&sig=9DXpqeLFG8iq22bPn%2F5RF5EdaLAO0Nn2TcRx2eYGNHw%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:16.0036167Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/c768e32a-2a26-4175-8759-4922efa76fde?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A06Z&ske=2024-11-21T01%3A24%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A35Z&sr=b&sp=r&sig=fUzirjh8dmhQPFigUfexlIRFq3JlVjHhxeyK3CdfFUk%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:35.1970174Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '576' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:16 GMT + - Wed, 20 Nov 2024 11:25:35 GMT location: - - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-03-01-preview + - https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-03-01-preview mise-correlation-id: - - ddc77aa6-bb74-4800-b3d0-d28f0b7faa68 + - 59a0ca90-acfc-4d6f-85e6-6853b9530c0f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055215Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bgcn + - 20241120T112534Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000044au x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2418,31 +2467,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A16Z&sr=b&sp=r&sig=SWADJRgmJIBrcIaO1Ks1FhXr%2FS0bE1wnpj0%2Bg2iM4Ds%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:16.2922644Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/c768e32a-2a26-4175-8759-4922efa76fde?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A35Z&sr=b&sp=r&sig=shu3n0C1UY8qpD8T1W4DedxDT13ggY0HZwaeuEhuLmc%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:35.3241335Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '578' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:16 GMT + - Wed, 20 Nov 2024 11:25:35 GMT mise-correlation-id: - - 1a970e8c-8dc9-40bc-b02e-254e2b44eeac + - 000ae65d-680f-4f84-80d5-a8080259fab9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055216Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bgd8 + - 20241120T112535Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000044bf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2460,17 +2510,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A21Z&sr=b&sp=r&sig=lnebIWB%2BfAMG%2B6xuonn%2BuKMZE28vWA7L5tGKKT0mJfs%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:21.5865083Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/c768e32a-2a26-4175-8759-4922efa76fde?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A40Z&sr=b&sp=r&sig=ZUhOHT23GNU%2F%2BblOqDqouz4nVvA4z1%2FJgbbFKpoqd4c%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:40.4740241Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -2478,13 +2529,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:21 GMT + - Wed, 20 Nov 2024 11:25:40 GMT mise-correlation-id: - - 2763d5f9-d2ae-49aa-a322-ff557b3b9dd5 + - a68dfb00-ca16-44e2-9222-5a6e3755b2d4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055221Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bgkf + - 20241120T112540Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000044py x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2502,31 +2553,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A26Z&sr=b&sp=r&sig=Ax%2BpLE9EWA1d%2BiQkfg1rKO%2FpwOOQ2KI1gVkszpMsFsc%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:26.871679Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/c768e32a-2a26-4175-8759-4922efa76fde?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A06Z&ske=2024-11-21T01%3A24%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A45Z&sr=b&sp=r&sig=6KR34eDwJbrbyaz6Mke5CrhT0Mtd71vFlxEPJcZDvMQ%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:45.6033126Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '579' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:26 GMT + - Wed, 20 Nov 2024 11:25:45 GMT mise-correlation-id: - - d62bc3e7-28e4-4fcc-a425-7e7d11dfd379 + - 2d0573b7-52bc-4d8d-a607-7f8e01c6edc5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055226Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bgvx + - 20241120T112545Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000044zd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2544,31 +2596,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A32Z&sr=b&sp=r&sig=Y9TL%2FWzf8DD2YFnU%2F9tpby%2B0vivF6CKWfRKUVrFAQoY%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:32.1798132Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/c768e32a-2a26-4175-8759-4922efa76fde?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A50Z&sr=b&sp=r&sig=2zivr7lYsy4RG4RyU9Xnr3yVa%2FRTiCPIN%2BB9gILXfTk%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:50.7410167Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '580' + - '578' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:32 GMT + - Wed, 20 Nov 2024 11:25:50 GMT mise-correlation-id: - - 9e254e39-d586-4137-b47c-880e57a88280 + - 58997dd4-a24b-4f58-b856-3542b97e7e1b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055231Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bh2e + - 20241120T112550Z-1789fbbbd78z6tj4hC1PDXnyz80000000h9000000000459q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2586,31 +2639,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A37Z&sr=b&sp=r&sig=h2Fa%2FIbi2GLcGQvCMXbhXNQfKHg11vxYI8BVlnFWDqo%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:37.4619687Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/c768e32a-2a26-4175-8759-4922efa76fde?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A55Z&sr=b&sp=r&sig=sv9i4GgoER2tg%2FOukci5c4qGLsJUa6LWgWq874WSJAw%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:35:55.8770611Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:37 GMT + - Wed, 20 Nov 2024 11:25:55 GMT mise-correlation-id: - - bfccfb32-3dfb-44f7-ad6d-39f2ac6569f2 + - f08f2ba9-5622-465c-b393-93e36792c017 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055237Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bh88 + - 20241120T112555Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000045p1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2619,16 +2673,7 @@ interactions: code: 200 message: OK - request: - body: !!python/object/new:_io.BytesIO - state: !!python/tuple - - !!binary | - UEsDBBQACAAIAANbLVkAAAAAAAAAABIAAAATACAAYWRkaXRpb25hbC1kYXRhLmNzdlVUDQAHf9Pj - ZneG/2a5hP9mdXgLAAEEAAAAAAQAAAAAS9RJ0knWSeHlMtQx0jHWMeHlAgBQSwcI/dwPKxQAAAAS - AAAAUEsBAhQDFAAIAAgAA1stWf3cDysUAAAAEgAAABMAIAAAAAAAAAAAALaBAAAAAGFkZGl0aW9u - YWwtZGF0YS5jc3ZVVA0AB3/T42Z3hv9muYT/ZnV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAGEA - AAB1AAAAAAA= - - 0 - - null + body: null headers: Accept: - application/json @@ -2636,45 +2681,51 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - content-type: - - application/octet-stream - method: PUT - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A37Z&sr=b&sp=r&sig=Ifl0xP3sy6QUAn8c0rj7HCx7KFvia%2FBsioPN26zgMOY%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:37.9710825Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/c768e32a-2a26-4175-8759-4922efa76fde?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A16Z&ske=2024-11-20T18%3A23%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A36%3A01Z&sr=b&sp=r&sig=3E5GjnyS5JX5CA84RWkwTS3G9TQlWMeGCAAaLXrnQLc%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:36:01.079805Z","validationStatus":"VALIDATION_SUCCESS"}' headers: + accept-ranges: + - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '576' + - '571' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:38 GMT - location: - - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-03-01-preview + - Wed, 20 Nov 2024 11:26:01 GMT mise-correlation-id: - - 6a1f9771-b1a0-42fa-94dd-ad6a7c8e9bdb + - 5f7cdc8e-18d6-4b0d-aabb-12e5e9f9190e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055237Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bh8q + - 20241120T112600Z-1789fbbbd78z6tj4hC1PDXnyz80000000h9000000000460k x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: null + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + UEsDBBQACAAIAANbLVkAAAAAAAAAABIAAAATACAAYWRkaXRpb25hbC1kYXRhLmNzdlVUDQAHf9Pj + ZneG/2a5hP9mdXgLAAEEAAAAAAQAAAAAS9RJ0knWSeHlMtQx0jHWMeHlAgBQSwcI/dwPKxQAAAAS + AAAAUEsBAhQDFAAIAAgAA1stWf3cDysUAAAAEgAAABMAIAAAAAAAAAAAALaBAAAAAGFkZGl0aW9u + YWwtZGF0YS5jc3ZVVA0AB3/T42Z3hv9muYT/ZnV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAGEA + AAB1AAAAAAA= + - 0 + - null headers: Accept: - application/json @@ -2682,39 +2733,44 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A38Z&sr=b&sp=r&sig=CSYbmNS%2FIxt8APUfV%2Bee9oBL1ZaPvDdAUQfThJ1OMJo%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:38.2542438Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/e245aa29-34e6-46ce-9878-be66eb1ebce6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A15Z&ske=2024-11-20T18%3A23%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A36%3A01Z&sr=b&sp=r&sig=V5yoki4NnXP4bWtKox6l%2FVPZ6QN2BeueAyjghHQbgkQ%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:36:01.4153083Z","validationStatus":"VALIDATION_INITIATED"}' headers: - accept-ranges: - - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '578' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:38 GMT + - Wed, 20 Nov 2024 11:26:01 GMT + location: + - https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-03-01-preview mise-correlation-id: - - 1a16a8a3-920b-4b66-80c0-a79c12b45fdf + - 051c4120-701c-4348-9568-3f0e17e56fdb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055238Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bh9a + - 20241120T112601Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000004610 x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2725,17 +2781,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A51%3A54Z&ske=2024-11-07T21%3A51%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A43Z&sr=b&sp=r&sig=9IEZxRaLy64PTgs0FjjvyigyaX%2FpC5EL8shT5AFMMjY%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:43.5408932Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/e245aa29-34e6-46ce-9878-be66eb1ebce6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A06Z&ske=2024-11-21T01%3A24%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A36%3A01Z&sr=b&sp=r&sig=JM9M7miNikeEkrPTv0KQgEpv7ZTtLvl9QMWSsWby%2FjE%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:36:01.5357308Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -2743,13 +2800,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:43 GMT + - Wed, 20 Nov 2024 11:26:01 GMT mise-correlation-id: - - 6194db38-e3b3-4ad5-b89f-9f998db4dd43 + - 93eac0e1-8f91-4257-8dbf-91e13e6aace4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055243Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bhen + - 20241120T112601Z-1789fbbbd78z6tj4hC1PDXnyz80000000h9000000000461n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2767,31 +2824,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A48Z&sr=b&sp=r&sig=S8ptQ2fQrucec0B6gkBjOSRZzotqNDeUMSuyUsPlM4o%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:48.8709205Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/e245aa29-34e6-46ce-9878-be66eb1ebce6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A37Z&ske=2024-11-20T18%3A23%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A36%3A06Z&sr=b&sp=r&sig=G7HqPgH%2FDyfDF6oXm2p68P7lKFjoKDmnel6xMkxVY8A%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:36:06.6569251Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:48 GMT + - Wed, 20 Nov 2024 11:26:06 GMT mise-correlation-id: - - 74e2eaf3-3530-4b53-9f96-72d6010cc255 + - 949b7078-39dd-40dc-8428-07ad263c9de1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055248Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bhps + - 20241120T112606Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000046cq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2809,31 +2867,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A51%3A54Z&ske=2024-11-07T21%3A51%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A55Z&sr=b&sp=r&sig=UlnOBr0hQL0d%2BL9Rq9T4E2EdbZU0uI8ZcPBjT87nCMs%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:55.642666Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/e245aa29-34e6-46ce-9878-be66eb1ebce6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A15Z&ske=2024-11-20T18%3A23%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A36%3A11Z&sr=b&sp=r&sig=2QZF4qHyLoleTQt5DDHAO3%2BqhGlOSHsYL%2FmoKLyXzNQ%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:36:11.7867254Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '575' + - '578' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:55 GMT + - Wed, 20 Nov 2024 11:26:11 GMT mise-correlation-id: - - 010456a2-f5df-4be2-862b-565d360e9003 + - 63db2533-7627-4e63-ab41-d707b82c6c43 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055253Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bhxu + - 20241120T112611Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000046qv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2851,31 +2910,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A00Z&sr=b&sp=r&sig=P0Rd0PxGAcaCvaTM8oxvTvKyosOWFIjWAyO0PLmOt24%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:00.9249422Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/e245aa29-34e6-46ce-9878-be66eb1ebce6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A14Z&ske=2024-11-20T18%3A23%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A36%3A16Z&sr=b&sp=r&sig=1TLU%2FtnmzZnRL0w%2F%2FrHZpNf80pDRbze4J3HfjgRi5u8%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:36:16.9222339Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '580' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:00 GMT + - Wed, 20 Nov 2024 11:26:16 GMT mise-correlation-id: - - 78131669-4de9-40cd-b299-18c5226aa3fb + - b26e57bf-81fe-44e8-9bac-7fbac72d8547 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055300Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bk6w + - 20241120T112616Z-1789fbbbd78z6tj4hC1PDXnyz80000000h900000000046zz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2893,31 +2953,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A06Z&sr=b&sp=r&sig=h%2BmyOlas4JW77dTsMSr9xjnCB%2FmU2DM7XZi%2BuiGTiGI%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:06.7859281Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sjjm51tc5nq6cy1rznyo2h2t.z11.blob.storage.azure.net/ddf04e48-f0fd-4e50-bb95-4962873c0159/e245aa29-34e6-46ce-9878-be66eb1ebce6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A15Z&ske=2024-11-20T18%3A23%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A36%3A22Z&sr=b&sp=r&sig=Uu6JCuYzUjfNAiL3FsaWj5tNO1GmMmFPV2%2F4orodJrk%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:36:22.0560173Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '578' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:06 GMT + - Wed, 20 Nov 2024 11:26:22 GMT mise-correlation-id: - - 251506f7-1821-4429-b77c-a4651174f254 + - e2ba57a5-3df7-4813-9247-3b3f8b1ef5c7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055306Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bkcs + - 20241120T112622Z-1789fbbbd78z6tj4hC1PDXnyz80000000h90000000004799 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2946,11 +3007,11 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-5.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-5.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: string: '{"error":{"code":"QuotaExceeded","message":"The maximum number of zip @@ -2958,21 +3019,22 @@ interactions: before uploading a new one.","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:53:07 GMT + - Wed, 20 Nov 2024 11:26:22 GMT mise-correlation-id: - - f59cb264-7435-4176-91b8-5b7509a6ee7e + - a69afdb6-e1b8-452f-a5f5-9bd5cdd7d4c8 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T055306Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bkdv + - 20241120T112622Z-1789fbbbd78z6tj4hC1PDXnyz80000000h9000000000479d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2992,23 +3054,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:27.9889402Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.9889402Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:22:04.2489515Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:22:04.2489515Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:08 GMT + - Wed, 20 Nov 2024 11:26:22 GMT etag: - - '"13013899-0000-0200-0000-672c54c40000"' + - '"97032b02-0000-0200-0000-673dc6730000"' expires: - '-1' pragma: @@ -3024,7 +3086,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0FE69E4777A8432898E558D337D33E3E Ref B: MAA201060515017 Ref C: 2024-11-07T05:53:08Z' + - 'Ref A: BC7D9D45DF4A41069A7567B9C78A8C41 Ref B: CO6AA3150217029 Ref C: 2024-11-20T11:26:22Z' status: code: 200 message: OK @@ -3038,30 +3100,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-disable-public-ip-test-case?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-disable-public-ip-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier invalid-disable-public-ip-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:53:11 GMT + - Wed, 20 Nov 2024 11:26:23 GMT mise-correlation-id: - - aeafe3e6-09be-4ef9-947b-357a558fbcf1 + - db26a3ae-5bfc-40d6-ad09-27821d6f31ef strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T055310Z-184f6b5dbd8glvzshC1MAAb4m0000000072g000000003cez + - 20241120T112623Z-1789fbbbd78fx98rhC1PDX6pfs0000000gyg00000000gp6f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3075,7 +3138,7 @@ interactions: body: '{"displayName": "invalid-disable-public-ip-test-case", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "publicIPDisabled": - true}' + true, "autoStopCriteria": {}}' headers: Accept: - application/json @@ -3084,13 +3147,13 @@ interactions: Connection: - keep-alive Content-Length: - - '271' + - '295' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-disable-public-ip-test-case?api-version=2024-05-01-preview + uri: https://5d493311-5afa-410d-b931-3cfc0c81e4b9.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-disable-public-ip-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"InvalidNetworkConfigurationException","message":"Network @@ -3098,21 +3161,22 @@ interactions: private endpoints.","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:53:11 GMT + - Wed, 20 Nov 2024 11:26:23 GMT mise-correlation-id: - - b9114dbb-b2f5-408d-b1c4-23b4332183af + - d3e38bc8-7c1a-49c4-bee3-7ee85734201b strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T055311Z-184f6b5dbd8glvzshC1MAAb4m0000000072g000000003cfs + - 20241120T112623Z-1789fbbbd78fx98rhC1PDX6pfs0000000gyg00000000gp6y x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_create_and_update_vnet.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_create_and_update_vnet.yaml index 3ea6cc9de14..74ed82b8ee2 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_create_and_update_vnet.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_create_and_update_vnet.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --vnet-name User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets?api-version=2024-01-01 response: body: - string: '{"value":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","etag":"W/\"6f9b4477-5814-44a8-9cd2-f5ff8af11da0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}]}' + string: '{"value":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","etag":"W/\"42124549-d433-4acb-a990-97614cdad137\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}]}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:39 GMT + - Wed, 20 Nov 2024 11:16:12 GMT expires: - '-1' pragma: @@ -39,14 +39,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 06d73f93-fa34-4b5a-9f58-5d792a63ac4a + - 30315e67-21cd-4a97-8bd3-a472b298f8a7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 929D3AF2076A4279ACBB79EC8612906D Ref B: MAA201060513029 Ref C: 2024-11-07T05:49:39Z' + - 'Ref A: 28B5CC9F8D47433B92407C5806ABEA8B Ref B: CO6AA3150217029 Ref C: 2024-11-20T11:16:12Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -57,23 +57,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:27.6929785Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.6929785Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.6553779Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.6553779Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:41 GMT + - Wed, 20 Nov 2024 11:16:13 GMT etag: - - '"13011799-0000-0200-0000-672c54c20000"' + - '"9603f8fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -87,9 +87,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 1D94A502E074439D908BC4FB61586429 Ref B: MAA201060516011 Ref C: 2024-11-07T05:49:40Z' + - 'Ref A: AEBA4A79567946B4B9C6D499B356FE36 Ref B: CO6AA3150219039 Ref C: 2024-11-20T11:16:13Z' status: code: 200 message: OK @@ -103,30 +103,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier create-update-vnet-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:49:43 GMT + - Wed, 20 Nov 2024 11:16:13 GMT mise-correlation-id: - - 172d8390-c857-42b2-85c5-8b4009526fc9 + - 004b9b00-71f9-4a21-a297-4787e795e7f1 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T054942Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6em + - 20241120T111613Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000bsmr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -139,9 +140,10 @@ interactions: - request: body: '{"displayName": "Create_and_update_vnet_with_config_test", "description": "This is a load test created with config specific to vnet", "keyvaultReferenceIdentityType": - "SystemAssigned", "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7zupb5dvcc4wecm4n/providers/Microsoft.Network/virtualNetworks/clitest-load-3uvwrzqrhp2vvymx7/subnets/default", + "SystemAssigned", "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-dtd5zphwczszyk4pp/providers/Microsoft.Network/virtualNetworks/clitest-load-4j27uquavbnpusb2p/subnets/default", "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": {"engineInstances": - 5, "quickStartTest": false, "splitAllCSVs": false}, "publicIPDisabled": true}' + 5, "quickStartTest": false, "splitAllCSVs": false}, "publicIPDisabled": true, + "autoStopCriteria": {}}' headers: Accept: - application/json @@ -150,36 +152,37 @@ interactions: Connection: - keep-alive Content-Length: - - '554' + - '578' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: - string: '{"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"This - is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:49:44.277Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"This + is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:14.64Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:14.64Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '739' + - '840' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:44 GMT + - Wed, 20 Nov 2024 11:16:14 GMT location: - - https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-03-01-preview + - https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-03-01-preview mise-correlation-id: - - f30fdc22-7f53-459f-9b7f-103055a29a41 + - 190d4573-5a20-4c06-ab7f-61b8a91d9cca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054943Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6f6 + - 20241120T111613Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000bsmx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -197,9 +200,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -207,7 +210,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -215,13 +219,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:44 GMT + - Wed, 20 Nov 2024 11:16:15 GMT mise-correlation-id: - - c3051b2f-4b3d-499c-ac5e-7f1dc4f73612 + - f4631148-deca-4f3f-b10c-754dffab7cec strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054944Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6gd + - 20241120T111614Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000bsnx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -331,17 +335,18 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A46Z&sr=b&sp=r&sig=cZeXdAvzHZZbUMM9dKhbviaVlwM%2FlZzAm%2FZxYhslQfA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T05:59:46.3326818Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A15Z&sr=b&sp=r&sig=YFUiD0VtS0IdNriadbA0v%2BIRQb3O%2FClUlp9Id82we18%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:15.4553271Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -349,15 +354,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:46 GMT + - Wed, 20 Nov 2024 11:16:15 GMT location: - - https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 8eee7ba3-b2ad-4b6f-a219-422d13f47522 + - 87ce5e27-d716-4dfb-a97f-3f07584a569d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054944Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6gp + - 20241120T111615Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000bsph x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -375,17 +380,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A46Z&sr=b&sp=r&sig=cZeXdAvzHZZbUMM9dKhbviaVlwM%2FlZzAm%2FZxYhslQfA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T05:59:46.6144228Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A15Z&sr=b&sp=r&sig=YFUiD0VtS0IdNriadbA0v%2BIRQb3O%2FClUlp9Id82we18%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:15.5797009Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -393,13 +399,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:46 GMT + - Wed, 20 Nov 2024 11:16:15 GMT mise-correlation-id: - - 7e916f08-610d-4da3-94fd-d97cc5078a95 + - 0e12b1df-cb07-40e6-a032-6087a988ddd7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054946Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6mr + - 20241120T111615Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000bsqa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -417,31 +423,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A51Z&sr=b&sp=r&sig=iB2TehFa%2B71aThDycJtqSPsyOe3apPMKme6kHrnfPos%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T05:59:51.9550722Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A22Z&ske=2024-11-20T18%3A16%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A24Z&sr=b&sp=r&sig=HaXTPJ0UhwHBKJLhHBHgdzcjEcNPuHB1MLY4buAFGDU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:24.0005496Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:52 GMT + - Wed, 20 Nov 2024 11:16:23 GMT mise-correlation-id: - - 153055a5-9116-4ebe-8c21-6594d9e9f10f + - 8e4962ab-3249-4368-9c9a-66e1804dd97d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054951Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6w0 + - 20241120T111620Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000bsy4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -459,31 +466,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A57Z&ske=2024-11-07T12%3A49%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A57Z&sr=b&sp=r&sig=55jVJOs9yFDvOecdN0W6svMySxce5xbXNlha9yMD%2F0U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T05:59:57.2625157Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A29Z&ske=2024-11-20T18%3A16%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A29Z&sr=b&sp=r&sig=xnMXtBCuX3JL%2BPAAdWaP%2FANs5tQ1vjJ0f1wT3e7v9Iw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:29.1307743Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:49:57 GMT + - Wed, 20 Nov 2024 11:16:29 GMT mise-correlation-id: - - d4df58ef-fc89-4f9b-ac1f-40a9d737697b + - fbc4a4f3-9972-4ae1-b941-4eeb74226d03 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T054957Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b71n + - 20241120T111629Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000btbg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -501,31 +509,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A02Z&sr=b&sp=r&sig=yLWJMGdBIa60J%2BGxiPZMo%2BdLydg9zR15%2FLos9ZLEueM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:02.5477453Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A34Z&sr=b&sp=r&sig=iIIi%2FhUyYJxFqjPtESDUkk8pRPqYnCYmc049KDPigkQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:34.2297325Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '562' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:02 GMT + - Wed, 20 Nov 2024 11:16:34 GMT mise-correlation-id: - - 018a9a4a-d91b-47b0-8e6e-5829087c291b + - e2062ccf-4b0d-49a8-8875-2355565f3106 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055002Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b79n + - 20241120T111634Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000btkh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -543,17 +552,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A07Z&ske=2024-11-07T12%3A50%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A07Z&sr=b&sp=r&sig=72ss7HbKvgsn8WUVIHHq8F7ELYut3B%2FEQ8A7tK4eZtY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:07.9195018Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A29Z&ske=2024-11-20T18%3A16%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A39Z&sr=b&sp=r&sig=y5MLSY8jovAukgVvfPqVzyqDE%2BqyoMr1PVvKfc0XQYY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:39.3387655Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -561,13 +571,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:07 GMT + - Wed, 20 Nov 2024 11:16:39 GMT mise-correlation-id: - - cb3df68d-60d0-4d1d-a6f0-7a1e350d3a2c + - 619f849b-50b5-466c-bb92-9a4cbd8fe492 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055007Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b7e7 + - 20241120T111639Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000bty2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -585,17 +595,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A57Z&ske=2024-11-07T12%3A49%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A13Z&sr=b&sp=r&sig=aiwWNZc69aLtCyYFRycQ5zbSnLct%2BavjVkORnIqqNxs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:13.2053534Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A44Z&ske=2024-11-20T18%3A16%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A44Z&sr=b&sp=r&sig=cLzz3%2Fj90guDzyqBpAqLqeZsVQFGN5CqvSJMHjiPups%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:44.4675385Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -603,13 +614,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:13 GMT + - Wed, 20 Nov 2024 11:16:44 GMT mise-correlation-id: - - c76e1bf5-cf56-4cbd-9b9a-7425c1d2def2 + - 8a8e84e6-dac1-4138-a73f-d63fa9710c8a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055013Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b7mc + - 20241120T111644Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000bu78 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -627,31 +638,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A57Z&ske=2024-11-07T12%3A49%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A18Z&sr=b&sp=r&sig=lvzcZEydQwZQwfWMBI5VAKs5e6S6Uy9GxrItvuKrp%2FE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:18.4771758Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A49Z&ske=2024-11-20T18%3A16%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A49Z&sr=b&sp=r&sig=B3EhgwROIDnJ2iCyh0e5pUj08F3HKvDvLzUFERSKCyY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:49.6178379Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '554' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:18 GMT + - Wed, 20 Nov 2024 11:16:49 GMT mise-correlation-id: - - 19beab13-8f3c-44c9-bff4-dd098a84c8b0 + - 80e1039c-337e-4eb1-9090-a68507a5ab00 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055018Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b7sy + - 20241120T111649Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000buem x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -669,32 +681,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: - string: '{"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A18Z&sr=b&sp=r&sig=Gx1cORi%2FNs2VlCsyFuTPv9fnk1sVJyIZKZCMdXM0mhI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:18.7561759Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"This - is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:18.384Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A22Z&ske=2024-11-20T18%3A16%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A49Z&sr=b&sp=r&sig=e2fMvTb1lKkDv1fNUV6cvjNUVN1UMGaFU%2Fz%2B%2F%2FztXfM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:49.7220673Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"This + is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:14.64Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:45.868Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1317' + - '1425' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:18 GMT + - Wed, 20 Nov 2024 11:16:49 GMT mise-correlation-id: - - d46a03c0-aff3-4dfe-8cff-972d4cd23c5e + - 563b38b2-9a2f-4dc4-b605-6c88af892469 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055018Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b7tc + - 20241120T111649Z-17b7777dc45cbfnxhC1CO176dw0000000h9g00000000buf4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -712,23 +725,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:27.6929785Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.6929785Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.6553779Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.6553779Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:19 GMT + - Wed, 20 Nov 2024 11:16:49 GMT etag: - - '"13011799-0000-0200-0000-672c54c20000"' + - '"9603f8fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -742,9 +755,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: CE6EAF662F884A828856CF837E2D5808 Ref B: MAA201060513035 Ref C: 2024-11-07T05:50:19Z' + - 'Ref A: B8694961A1304188B6C7C5F29A1ADB2B Ref B: CO6AA3150220027 Ref C: 2024-11-20T11:16:50Z' status: code: 200 message: OK @@ -758,32 +771,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: - string: '{"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A21Z&sr=b&sp=r&sig=x65hdr2pGEmDUpQrB9mgN52HIhON4oMHtnq4Pym6Nps%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:21.9688888Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"This - is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:18.384Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A49Z&ske=2024-11-20T18%3A16%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A50Z&sr=b&sp=r&sig=A4hmM4BgbGvAxbV0bgAshA6vWbdkL%2FWFkwQ%2B7mFRNfU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:50.6251195Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"This + is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:14.64Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:45.868Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1315' + - '1421' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:22 GMT + - Wed, 20 Nov 2024 11:16:50 GMT mise-correlation-id: - - f43f85d9-1382-4429-b997-b5c99767fb32 + - 24c9b420-fbe0-40cc-9030-e75de1317d20 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055021Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m43 + - 20241120T111650Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g0000000089zg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -796,11 +810,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": false}, "passFailCriteria": - {"passFailMetrics": {"41daf043-df7c-46b2-a19e-f5801734ddc9": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "1bad08e4-a0b8-4934-85ff-373b5f1b2a4f": + {"passFailMetrics": {"7066269a-a3b1-473b-ba71-37eb8477d862": {"aggregate": "avg", + "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "a42be023-6c26-40cd-84ec-3f527b961a64": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "28f98a17-53e8-4c82-b94b-636fb78f5eaa": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + "50"}, "59b2ac02-0f6f-43f7-8874-7619ab26622b": {"aggregate": "avg", "clientMetric": + "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, + "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90, "errorRateTimeWindowInSeconds": + 60}}' headers: Accept: - application/json @@ -809,36 +825,37 @@ interactions: Connection: - keep-alive Content-Length: - - '769' + - '871' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"41daf043-df7c-46b2-a19e-f5801734ddc9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1bad08e4-a0b8-4934-85ff-373b5f1b2a4f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"28f98a17-53e8-4c82-b94b-636fb78f5eaa":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A57Z&ske=2024-11-07T12%3A49%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A22Z&sr=b&sp=r&sig=xVG90pOjmO79sw%2BdUQaJVaes03Z1yvDQGW7RXb5AssU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:22.3932472Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:22.382Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"7066269a-a3b1-473b-ba71-37eb8477d862":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a42be023-6c26-40cd-84ec-3f527b961a64":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"59b2ac02-0f6f-43f7-8874-7619ab26622b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A45Z&ske=2024-11-21T01%3A16%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A50Z&sr=b&sp=r&sig=3SaQDWj%2FWiiE917Zg9ZLq%2Fd0brzK6gcLma%2BKh%2BYubF0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:50.8233185Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:14.64Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:50.808Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1614' + - '1722' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:22 GMT + - Wed, 20 Nov 2024 11:16:50 GMT mise-correlation-id: - - b33d9359-b09d-403b-8dab-7c45257a5e30 + - 7b197288-86b8-435f-b77c-2a01e20282fa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055022Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m4n + - 20241120T111650Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g0000000089zv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -856,17 +873,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A22Z&sr=b&sp=r&sig=GQiO%2BU92y6YXJ6BNewIMb5s45hFddzkCEE5KhBMWgSE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:22.6620051Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/ef0f283d-43f5-4a0c-aeec-945e26b4ef21?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A29Z&ske=2024-11-20T18%3A16%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A50Z&sr=b&sp=r&sig=3XNP5lK2a3IQ7Pq7EVZFCnN3y%2FV70olKCddpR7lHYTs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:50.9246203Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -874,13 +892,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:22 GMT + - Wed, 20 Nov 2024 11:16:50 GMT mise-correlation-id: - - 6827fb5f-d517-49ac-a006-8a8c4255b9fa + - 4532a2d8-2caa-4abf-b048-090dcca40d89 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055022Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m51 + - 20241120T111650Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g000000008a02 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,25 +918,26 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: DELETE - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: string: '' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive date: - - Thu, 07 Nov 2024 05:50:23 GMT + - Wed, 20 Nov 2024 11:16:51 GMT mise-correlation-id: - - 576a13d1-d018-4d40-b474-95e5374801e4 + - d6202e00-1f03-412d-ba6d-bcf75329d5f5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055022Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m5b + - 20241120T111650Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g000000008a0d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1028,33 +1047,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A23Z&ske=2024-11-07T21%3A50%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A23Z&sr=b&sp=r&sig=PoUSk7wSsICpg9A%2Fy36AccvOKRy9bSRwrshJe6D4oYE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:23.4853276Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A51Z&sr=b&sp=r&sig=8duSNIR6kWoV%2FDUfEijgGm7ubEvCFpXW7iAKqHgoWoE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:51.360138Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '557' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:23 GMT + - Wed, 20 Nov 2024 11:16:51 GMT location: - - https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 48de9dd9-9f70-4374-8a86-04078a163f69 + - 08f8cb11-3abf-4303-9b2d-8ba365ba99fe strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055023Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m5m + - 20241120T111651Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g000000008a0n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1072,31 +1092,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A07Z&ske=2024-11-07T12%3A50%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A23Z&sr=b&sp=r&sig=wxktMWrBYbT702ldT9vgatn9JQwnM4Hwr2zjKoTaLI4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:23.7827548Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A51Z&sr=b&sp=r&sig=8duSNIR6kWoV%2FDUfEijgGm7ubEvCFpXW7iAKqHgoWoE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:51.454262Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '557' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:23 GMT + - Wed, 20 Nov 2024 11:16:51 GMT mise-correlation-id: - - 83bc58b3-1a9a-4dae-b3b8-f602ec0f6883 + - f247fbe3-a8f8-4068-aa1c-b61005b93ac2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055023Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m5z + - 20241120T111651Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g000000008a11 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1114,31 +1135,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A29Z&ske=2024-11-07T12%3A50%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A29Z&sr=b&sp=r&sig=wNXEV%2Fxzgya9XdtQXaIwNEMzaBmC9wA9%2BgqDZiamWTo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:29.1061594Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A56Z&sr=b&sp=r&sig=6s6Zzzr0BhI0DG4Ggo9yOYR5ZkybKfqdBM8lw1kV3S8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:56.5610281Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:29 GMT + - Wed, 20 Nov 2024 11:16:56 GMT mise-correlation-id: - - 388e6cde-8c87-4efc-a9fb-f989444f8864 + - dffb8255-8a0c-447e-a43e-4c0a319f3210 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055028Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002ma2 + - 20241120T111656Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g000000008a8x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1156,17 +1178,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A23Z&ske=2024-11-07T21%3A50%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A34Z&sr=b&sp=r&sig=VDk78SErMpvOxP8MsdgZJntii7m3%2FsRXRtrker5JcgQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:34.3979098Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A49Z&ske=2024-11-20T18%3A16%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A01Z&sr=b&sp=r&sig=obTneuBH8G%2FyHo4X4AMNJj03VqSrSYPFg0qI4zEJ4rE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:01.6728779Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1174,55 +1197,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:34 GMT - mise-correlation-id: - - cd2f0634-68f1-4735-9119-6e1b17a741ac - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241107T055034Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002mea - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A29Z&ske=2024-11-07T12%3A50%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A39Z&sr=b&sp=r&sig=0BpL5wsEgpypJXXs0MYD4ozyp7avfkmjcRUH%2FA24%2FOU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:39.6708825Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Nov 2024 05:50:39 GMT + - Wed, 20 Nov 2024 11:17:01 GMT mise-correlation-id: - - 36b0456d-1a6e-4fba-84fe-398a1330146c + - ab5d9fce-108c-494c-9e00-aa73e154f0b5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055039Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002mme + - 20241120T111701Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g000000008ahh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1240,31 +1221,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A44Z&sr=b&sp=r&sig=kQtjADttIa1AyJiJP%2BFyOwMVkz7yyqmQiJOl5WBEGvs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:44.9448952Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A49Z&ske=2024-11-20T18%3A16%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A06Z&sr=b&sp=r&sig=nfC3OTPmoB6FpV%2BwL%2BwdbeHeSJbG%2FYZ7QwVzo5muL6M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:06.7877964Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '562' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:45 GMT + - Wed, 20 Nov 2024 11:17:06 GMT mise-correlation-id: - - c547d8b7-039c-4605-9a3a-30e514fbfe86 + - 9e21bf3b-eb94-4f6d-afbe-7af2b79add52 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055044Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002mrm + - 20241120T111706Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g000000008auy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1282,17 +1264,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A50Z&sr=b&sp=r&sig=aeOOcwyd87zVHbb7hQV1UgW8kQ%2BdfsttxfqjjRMRZ%2BY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:50.2352328Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A11Z&sr=b&sp=r&sig=wvJE0vW9DrAd%2B0yYI8bi%2FFiWlmsOttVivXh5qztL6yI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:11.8987783Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1300,13 +1283,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:50 GMT + - Wed, 20 Nov 2024 11:17:11 GMT mise-correlation-id: - - 984b56da-be03-4752-ba26-4a24132bbc85 + - 2396e4c2-ddbf-4a9e-88d4-a8aa29a7f931 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055050Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002mw6 + - 20241120T111711Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g000000008b3d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1324,31 +1307,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A07Z&ske=2024-11-07T12%3A50%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A55Z&sr=b&sp=r&sig=38bnILoGMqFhEf3PtyJ3tfeCYFk8jaWomxQZrezS28E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:55.5173208Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A22Z&ske=2024-11-20T18%3A16%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A16Z&sr=b&sp=r&sig=f32xLfeKbb2lBG%2BnvtU0MFhG9D0FwKMKKl1OrrP7WeM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:16.9994769Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '554' + - '556' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:55 GMT + - Wed, 20 Nov 2024 11:17:16 GMT mise-correlation-id: - - b01f8198-1a62-4396-83c7-3d6dd9d2778b + - c5244610-aefc-4687-957d-2787eecab798 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055055Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002n19 + - 20241120T111716Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g000000008bd8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1366,32 +1350,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"41daf043-df7c-46b2-a19e-f5801734ddc9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1bad08e4-a0b8-4934-85ff-373b5f1b2a4f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"28f98a17-53e8-4c82-b94b-636fb78f5eaa":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A55Z&sr=b&sp=r&sig=cEWBtpD6vMDjAWBgAa3coo5R1AmA4GonXpp%2FfaS3BwE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:55.7969666Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:54.799Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"7066269a-a3b1-473b-ba71-37eb8477d862":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a42be023-6c26-40cd-84ec-3f527b961a64":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"59b2ac02-0f6f-43f7-8874-7619ab26622b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A17Z&sr=b&sp=r&sig=%2F9fTktXjY4dt3kSaPOq4uqbz5N9wJQaGZDhYZdS4UT4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:17.0911847Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:14.64Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:16.13Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1614' + - '1715' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:55 GMT + - Wed, 20 Nov 2024 11:17:17 GMT mise-correlation-id: - - d88395e1-db5d-448c-ab48-25fafeb1789d + - b15b1d1f-3fbd-4c4c-98ab-2f7d6ad83b92 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055055Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002n1n + - 20241120T111716Z-17b7777dc45sxgd2hC1CO1ar4s0000000w3g000000008bdh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1409,23 +1394,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:27.6929785Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.6929785Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.6553779Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.6553779Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:56 GMT + - Wed, 20 Nov 2024 11:17:17 GMT etag: - - '"13011799-0000-0200-0000-672c54c20000"' + - '"9603f8fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1441,7 +1426,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0B2E9A104B2B4B65B9702170D9D710B5 Ref B: MAA201060516019 Ref C: 2024-11-07T05:50:56Z' + - 'Ref A: 961B2DC5FE0549E095CF1594CA19F094 Ref B: CO6AA3150217051 Ref C: 2024-11-20T11:17:17Z' status: code: 200 message: OK @@ -1455,32 +1440,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"41daf043-df7c-46b2-a19e-f5801734ddc9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1bad08e4-a0b8-4934-85ff-373b5f1b2a4f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"28f98a17-53e8-4c82-b94b-636fb78f5eaa":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A58Z&sr=b&sp=r&sig=imig5ZfXFhhlP5Kd5KwCqKPAP%2BeHKZn%2B2e652s7uKeE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:58.6765921Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:54.799Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"7066269a-a3b1-473b-ba71-37eb8477d862":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a42be023-6c26-40cd-84ec-3f527b961a64":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"59b2ac02-0f6f-43f7-8874-7619ab26622b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A49Z&ske=2024-11-20T18%3A16%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A17Z&sr=b&sp=r&sig=Ic1jurz6chWQiBlKTUu%2F0H81eCXfBynkLIcR2%2BU1qpU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:17.839175Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:14.64Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:16.13Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1616' + - '1716' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:58 GMT + - Wed, 20 Nov 2024 11:17:17 GMT mise-correlation-id: - - 33a18c5d-f2c5-415d-a425-74480de9450e + - 3347bb14-9ed8-492b-9384-a0b2b9ec66f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055058Z-184f6b5dbd8k5dgkhC1MAAf5kw000000079g000000000p5d + - 20241120T111717Z-17b7777dc45mwcxxhC1CO188kg0000000w9g00000000915f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1498,23 +1484,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:27.6929785Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.6929785Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.6553779Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.6553779Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:50:59 GMT + - Wed, 20 Nov 2024 11:17:18 GMT etag: - - '"13011799-0000-0200-0000-672c54c20000"' + - '"9603f8fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1530,7 +1516,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 557BA78A5D5A487AB2BBE468A51D1890 Ref B: MAA201060516029 Ref C: 2024-11-07T05:50:59Z' + - 'Ref A: 4804E0B863F44EF1AFA8C8C3E13B00D8 Ref B: CO6AA3150220029 Ref C: 2024-11-20T11:17:18Z' status: code: 200 message: OK @@ -1544,32 +1530,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"41daf043-df7c-46b2-a19e-f5801734ddc9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1bad08e4-a0b8-4934-85ff-373b5f1b2a4f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"28f98a17-53e8-4c82-b94b-636fb78f5eaa":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A51%3A01Z&sr=b&sp=r&sig=EDwiVqM1mtmTR37b7ApQ06vphS6Maaaqz768ItLECyk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:51:01.5803577Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:54.799Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"7066269a-a3b1-473b-ba71-37eb8477d862":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a42be023-6c26-40cd-84ec-3f527b961a64":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"59b2ac02-0f6f-43f7-8874-7619ab26622b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A45Z&ske=2024-11-21T01%3A16%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A18Z&sr=b&sp=r&sig=JnVRn8tMFlRbdrQhK6PhF7Pnlr58pCaJcSdB1%2BCKsBI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:18.8113289Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:14.64Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:16.13Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1612' + - '1715' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:01 GMT + - Wed, 20 Nov 2024 11:17:18 GMT mise-correlation-id: - - 191bd043-0244-437b-a01b-ee078fa5e09c + - fd82863c-5961-4836-880c-c4187fb6270b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055101Z-184f6b5dbd8l5czghC1MAA1uz000000005q0000000001898 + - 20241120T111718Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008g3u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1580,16 +1567,17 @@ interactions: - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": - true, "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7zupb5dvcc4wecm4n/providers/Microsoft.Network/virtualNetworks/clitest-load-3uvwrzqrhp2vvymx7/subnets/default", + true, "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-dtd5zphwczszyk4pp/providers/Microsoft.Network/virtualNetworks/clitest-load-4j27uquavbnpusb2p/subnets/default", "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": false}, "passFailCriteria": {"passFailMetrics": - {"41daf043-df7c-46b2-a19e-f5801734ddc9": null, "1bad08e4-a0b8-4934-85ff-373b5f1b2a4f": - null, "28f98a17-53e8-4c82-b94b-636fb78f5eaa": null, "2068b360-cbc7-4333-a38b-6738d6e2c316": + {"7066269a-a3b1-473b-ba71-37eb8477d862": null, "a42be023-6c26-40cd-84ec-3f527b961a64": + null, "59b2ac02-0f6f-43f7-8874-7619ab26622b": null, "749bc051-29a8-4d09-91f7-0032531e791d": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "d19898ab-6ff9-44cf-83a9-41fcbaf8c63b": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "d8da6301-f618-4322-b778-740467dcedbc": + "78"}, "05201229-e48a-4abd-991a-dfcbd89f10c1": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "a156a247-60c1-487e-97f6-0b535ea346c9": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + false, "errorRate": 90, "errorRateTimeWindowInSeconds": 60}}' headers: Accept: - application/json @@ -1598,36 +1586,37 @@ interactions: Connection: - keep-alive Content-Length: - - '1110' + - '1212' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d8da6301-f618-4322-b778-740467dcedbc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"d19898ab-6ff9-44cf-83a9-41fcbaf8c63b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2068b360-cbc7-4333-a38b-6738d6e2c316":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A51%3A03Z&sr=b&sp=r&sig=u4wN09kupKxpmGhAlBG1aoqtnQJb%2FHSuDngnF9JN7RM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:51:03.7042118Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:51:03.693Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a156a247-60c1-487e-97f6-0b535ea346c9":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"05201229-e48a-4abd-991a-dfcbd89f10c1":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"749bc051-29a8-4d09-91f7-0032531e791d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A29Z&ske=2024-11-20T18%3A16%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A20Z&sr=b&sp=r&sig=IOAY7kwHM7p4AkD5DA0kE1pIAdx5Dpi%2Fhu0TIUhRVcQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:20.8217211Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:14.64Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:20.81Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1793' + - '1894' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:03 GMT + - Wed, 20 Nov 2024 11:17:20 GMT mise-correlation-id: - - 708e6136-5638-47ad-8296-594259437fa0 + - 35ac8f1b-935b-429c-a48f-5f4ea9c490a7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055101Z-184f6b5dbd8l5czghC1MAA1uz000000005q000000000189w + - 20241120T111718Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008g42 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1645,31 +1634,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A03Z&sr=b&sp=r&sig=%2FcWpjL8%2Fn3NXx6rhsX3tHWl6vPPS%2Bld7559rdCguE78%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:03.9830029Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/44c3669d-9d80-4619-854c-b275500f2fab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A29Z&ske=2024-11-20T18%3A16%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A20Z&sr=b&sp=r&sig=OYmVS3oZ5OGX6QajO4Fm0n20j5ayvDPRlQ82KrTLn%2Bw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:20.9218716Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '568' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:04 GMT + - Wed, 20 Nov 2024 11:17:20 GMT mise-correlation-id: - - 96058a51-8629-4d0e-8aa4-a7ebf628a4dc + - 23332cbb-23e6-4d39-80a6-3fc4ce04dc16 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055103Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018c0 + - 20241120T111720Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008g70 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1689,25 +1679,26 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: DELETE - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: string: '' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive date: - - Thu, 07 Nov 2024 05:51:04 GMT + - Wed, 20 Nov 2024 11:17:21 GMT mise-correlation-id: - - 039c6b75-b4d7-4227-83c8-f47369e9cc6e + - 7bb0d85c-6bd3-4368-a657-07d20efc88f3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055104Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018c7 + - 20241120T111720Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008g7c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1817,33 +1808,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A23Z&ske=2024-11-07T21%3A50%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A04Z&sr=b&sp=r&sig=ZHg0%2BL918h4U5VDGd4jbLwpih7%2BEM%2FldaTHhzjCgDes%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:04.8184717Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/580157c7-5f60-4d05-8c15-34fd496c1974?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A21Z&sr=b&sp=r&sig=PnGkGdj%2FsIU1iQEmrsHwU2dkU3eySPc1XNnek1JajPA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:21.3277174Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '562' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:04 GMT + - Wed, 20 Nov 2024 11:17:21 GMT location: - - https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - b6650169-53d8-42ab-a8a3-dc2fc7ae54e3 + - 877237f7-822d-4f98-a3c2-3c7010814a0f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055104Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018cp + - 20241120T111721Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008g7s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1861,73 +1853,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A05Z&sr=b&sp=r&sig=M3K6j6X0fukWQJ4a8zPGjN%2B%2Fgh3LR%2BjhN1eN47%2B2LHY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:05.1094514Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '564' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Nov 2024 05:51:05 GMT - mise-correlation-id: - - 5c9ead0c-44f6-4689-8164-d3ec2fcab67f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241107T055104Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018cz - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A23Z&ske=2024-11-07T21%3A50%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A10Z&sr=b&sp=r&sig=u2KXyXxtg4LTvb7ivBRYOzOsWap7FrjqklWdOAf5LA8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:10.3985163Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/580157c7-5f60-4d05-8c15-34fd496c1974?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A21Z&sr=b&sp=r&sig=PnGkGdj%2FsIU1iQEmrsHwU2dkU3eySPc1XNnek1JajPA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:21.4271388Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:10 GMT + - Wed, 20 Nov 2024 11:17:21 GMT mise-correlation-id: - - 758d98fa-fc56-4656-b344-ecce8407b491 + - f96511d8-7a43-45ae-a52d-4245ac232359 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055110Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018k5 + - 20241120T111721Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008g83 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1945,31 +1896,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A07Z&ske=2024-11-07T12%3A50%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A15Z&sr=b&sp=r&sig=wab3enWSwBz3KqdxQ6zzroLRVzPC5RtXM%2FFxto2F3Js%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:15.6718923Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/580157c7-5f60-4d05-8c15-34fd496c1974?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A26Z&sr=b&sp=r&sig=%2BQVr7%2FeuI3sE8NFjAmabZ5xvqFX2MZSlzouGjZFhgSY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:26.5351384Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:15 GMT + - Wed, 20 Nov 2024 11:17:26 GMT mise-correlation-id: - - 8e79bb05-ee63-48cc-b7aa-862cfac86b16 + - f2f2dce4-0e7f-4f8b-a360-1b24968b8738 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055115Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018q0 + - 20241120T111726Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008ge3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1987,31 +1939,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A20Z&sr=b&sp=r&sig=hgbQNV9SQbpybVWZuyTvwkspZ4nbyOLNIVlx8JmSnrY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:20.949265Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/580157c7-5f60-4d05-8c15-34fd496c1974?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A49Z&ske=2024-11-20T18%3A16%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A31Z&sr=b&sp=r&sig=WqPrkPrYwDKUGK6nY9JleYryxCJqi%2F1%2BMiQP%2Fow%2F4vg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:31.6474419Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '564' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:21 GMT + - Wed, 20 Nov 2024 11:17:31 GMT mise-correlation-id: - - 6ae58c33-16eb-479e-86a2-612147eec1e8 + - 2ac344e7-d5ea-40dc-8b3c-842655687c35 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055120Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018tq + - 20241120T111731Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008gm6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2029,31 +1982,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A29Z&ske=2024-11-07T12%3A50%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A26Z&sr=b&sp=r&sig=8SbkidYMQTzIMPpaQMGcO54Co78fC6lTYuyAlXXAU8c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:26.2381527Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/580157c7-5f60-4d05-8c15-34fd496c1974?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A49Z&ske=2024-11-20T18%3A16%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A37Z&sr=b&sp=r&sig=E0M8P5j5uso1%2FUuFitnhmiRQqSWFvdquZKKEFs6X1Ck%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:37.117749Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '557' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:26 GMT + - Wed, 20 Nov 2024 11:17:37 GMT mise-correlation-id: - - 51cba769-2657-47df-b4db-33932a3a3465 + - b2961380-7280-4dc8-a5f3-45a075d35c9a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055126Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018xh + - 20241120T111736Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008gux x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2071,17 +2025,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A31Z&sr=b&sp=r&sig=YnER2l2Us3QZhrRv50iXZfzr3M3M%2FXbyAA4F9Bb0G5A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:31.5220228Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/580157c7-5f60-4d05-8c15-34fd496c1974?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A45Z&ske=2024-11-21T01%3A16%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A42Z&sr=b&sp=r&sig=g453VQHZxOUGe8azusUPD%2BXKtVGUJU9AafXLbMMorkE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:42.2179799Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -2089,13 +2044,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:31 GMT + - Wed, 20 Nov 2024 11:17:42 GMT mise-correlation-id: - - cc4959d0-a3ba-455c-afe1-fcc95535276c + - 0c3f1e02-0d6c-4cfe-b43a-13d601e71c3d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055131Z-184f6b5dbd8l5czghC1MAA1uz000000005q000000000191f + - 20241120T111742Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008h42 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2113,31 +2068,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A36Z&sr=b&sp=r&sig=1J7lPngY8b430Rk5QPwJWolLq%2Fo3orQ%2BLD1qGRZwi9A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:36.7993202Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/580157c7-5f60-4d05-8c15-34fd496c1974?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A47Z&sr=b&sp=r&sig=YYvzJmgIBDZH4Xno7WcX29Y1m%2BTFPw3DlwqtY23XcV4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:47.3261213Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:36 GMT + - Wed, 20 Nov 2024 11:17:47 GMT mise-correlation-id: - - 0b36fa71-e76b-430d-a74c-c97201d1655e + - 90205be9-a758-4369-9962-22d094597cde strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055136Z-184f6b5dbd8l5czghC1MAA1uz000000005q0000000001963 + - 20241120T111747Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008hb0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2155,31 +2111,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A07Z&ske=2024-11-07T12%3A50%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A42Z&sr=b&sp=r&sig=M2VDbAzQh7kz90srOHtwVKj4UEPqT5poXY8RZOC9zhw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:42.0816802Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/580157c7-5f60-4d05-8c15-34fd496c1974?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A15Z&ske=2024-11-20T18%3A16%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A52Z&sr=b&sp=r&sig=U0ZmK99s5FYKR3%2B6be2ODqgLpTUWz3Mc2DIAvKFq9Vc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:52.4281034Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '554' + - '556' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:42 GMT + - Wed, 20 Nov 2024 11:17:52 GMT mise-correlation-id: - - bc12ff30-a412-4092-ab78-40f447b4ee80 + - de2d012d-721b-474e-aefa-744e41131bb6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055141Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000019ad + - 20241120T111752Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008hh6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2197,32 +2154,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d8da6301-f618-4322-b778-740467dcedbc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"d19898ab-6ff9-44cf-83a9-41fcbaf8c63b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2068b360-cbc7-4333-a38b-6738d6e2c316":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A51%3A42Z&sr=b&sp=r&sig=SJjHEj1Lghdg2vHyP%2B9kAV2Hq%2B77c%2BqNI%2BNjCQOd%2Bzw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:51:42.3801403Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:51:37.565Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a156a247-60c1-487e-97f6-0b535ea346c9":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"05201229-e48a-4abd-991a-dfcbd89f10c1":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"749bc051-29a8-4d09-91f7-0032531e791d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/580157c7-5f60-4d05-8c15-34fd496c1974?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A49Z&ske=2024-11-20T18%3A16%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A52Z&sr=b&sp=r&sig=kEtqsVyOAGJz0Fuu93pcyKq5ve%2FOWzXcIX9Kc%2FC3Eto%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:52.5297903Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:14.64Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:47.946Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1801' + - '1897' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:42 GMT + - Wed, 20 Nov 2024 11:17:52 GMT mise-correlation-id: - - b9d4aa56-1985-49c4-8ad8-a2c164676398 + - f35684e1-c2fd-4518-b642-5e961f68dbfa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055142Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000019bc + - 20241120T111752Z-17b7777dc45l5fnjhC1CO17sun0000000w1g000000008hhc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2240,23 +2198,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:48:27.6929785Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.6929785Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.6553779Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.6553779Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:43 GMT + - Wed, 20 Nov 2024 11:17:52 GMT etag: - - '"13011799-0000-0200-0000-672c54c20000"' + - '"9603f8fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -2270,9 +2228,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: F698132FDEDC4F13A31781D496E5A97A Ref B: MAA201060516049 Ref C: 2024-11-07T05:51:43Z' + - 'Ref A: 225803D0018546CBAF2ED6C5D6F454C7 Ref B: CO6AA3150220035 Ref C: 2024-11-20T11:17:52Z' status: code: 200 message: OK @@ -2286,32 +2244,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + uri: https://9ad228f5-713e-4cc1-8654-e23a57027c87.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d8da6301-f618-4322-b778-740467dcedbc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"d19898ab-6ff9-44cf-83a9-41fcbaf8c63b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2068b360-cbc7-4333-a38b-6738d6e2c316":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A23Z&ske=2024-11-07T21%3A50%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A51%3A45Z&sr=b&sp=r&sig=xqCDf9xVzE1gcVKGrV%2FmiFa1QOcBBrt%2BNMRMlYe4FsI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:51:45.2871393Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:51:37.565Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a156a247-60c1-487e-97f6-0b535ea346c9":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"05201229-e48a-4abd-991a-dfcbd89f10c1":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"749bc051-29a8-4d09-91f7-0032531e791d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://qxrwhdz04uql3rdmzln5dap7.z40.blob.storage.azure.net/f6b5e693-0ebc-4d24-9968-de6d18688316/580157c7-5f60-4d05-8c15-34fd496c1974?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A45Z&ske=2024-11-21T01%3A16%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A53Z&sr=b&sp=r&sig=zbPoQ%2FucaomNR8nA2YEyX43degFCGun2Bh%2FNvyez7pU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:53.5059129Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:16:14.64Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:47.946Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1795' + - '1897' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:51:45 GMT + - Wed, 20 Nov 2024 11:17:53 GMT mise-correlation-id: - - 68aeea9f-04e9-4661-8506-2c67763545c4 + - 99f44607-b7c3-44eb-9234-0df6ae5b921e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055144Z-16bf8d9b4c77wrr9hC1BOMmmkw00000007m0000000010sdz + - 20241120T111753Z-17b7777dc454b925hC1CO175a400000000tg000000003yb2 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_create_with_args.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_create_with_args.yaml index be8bc70583b..822263a5739 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_create_with_args.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_create_with_args.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:56:33.7247351Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:56:33.7247351Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:17:59.6757729Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:59.6757729Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:08 GMT + - Wed, 20 Nov 2024 11:18:32 GMT etag: - - '"fa00b305-0000-0200-0000-672b3d690000"' + - '"97038c00-0000-0200-0000-673dc57d0000"' expires: - '-1' pragma: @@ -39,9 +39,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 4636D29127464D87A8189F0772C67F14 Ref B: MAA201060514037 Ref C: 2024-11-06T09:57:08Z' + - 'Ref A: FFFB59B0E3C541A18F742502252C8B6B Ref B: CO6AA3150218009 Ref C: 2024-11-20T11:18:32Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier create-with-args-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 09:57:10 GMT + - Wed, 20 Nov 2024 11:18:32 GMT mise-correlation-id: - - 25cc080d-6891-4f56-9618-b6b73a5ae046 + - baebaeed-a8f7-4047-8679-722d7b1eb4c5 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T095710Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x54x + - 20241120T111832Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001mh9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -92,7 +93,8 @@ interactions: body: '{"displayName": "Create_with_args_test", "description": "This is a load test created with arguments", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {"a": "2", "b": "3"}, "secrets": {}, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}}' + {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "autoStopCriteria": + {}}' headers: Accept: - application/json @@ -101,36 +103,37 @@ interactions: Connection: - keep-alive Content-Length: - - '310' + - '334' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview response: body: - string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:57:11.347Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:57:11.347Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:18:33.075Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:18:33.075Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '567' + - '670' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:11 GMT + - Wed, 20 Nov 2024 11:18:33 GMT location: - - https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-03-01-preview + - https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 7ebf7724-89ff-4df9-a79b-dda894a25f7d + - 99cbb1dd-abb9-4205-86e1-ac80d8e56de5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095711Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x593 + - 20241120T111832Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001mhg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -148,9 +151,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -158,7 +161,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -166,13 +170,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:11 GMT + - Wed, 20 Nov 2024 11:18:33 GMT mise-correlation-id: - - e8f6e982-1563-4c6b-ace2-8aa900b3800d + - e11909b9-d96b-4563-8b8c-e37bc4ad935f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095711Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x5cg + - 20241120T111833Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001mk1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -282,33 +286,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A13Z&ske=2024-11-07T01%3A57%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A13Z&sr=b&sp=r&sig=lQLZ9OAopT%2BtztlBYxNamNqI%2B4o10cvJIUSmMAq09mA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:13.5102366Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://avvxxmdfieqjz813cbwc7aqs.z29.blob.storage.azure.net/9176277e-977a-42e2-b04b-3eff572f840a/26aded55-5488-4cbc-9378-c40a292bf93b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A33Z&ske=2024-11-20T18%3A18%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A33Z&sr=b&sp=r&sig=e1WVEjUJYybmN%2FCfc2WRh8LIkur49XJvpOMIhycvWis%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:33.5559322Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:13 GMT + - Wed, 20 Nov 2024 11:18:33 GMT location: - - https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - daf7b8cc-302e-47f1-b1e3-fd80479fd2d6 + - b7c4bca2-513a-4c59-a440-091b5798cfc5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095712Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x5eq + - 20241120T111833Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001mk8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -326,31 +331,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A13Z&ske=2024-11-06T16%3A57%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A13Z&sr=b&sp=r&sig=7kC9gI%2F7R60mQ7CQ%2BTio7QMR2Wb4XQWZxWTT2Ll0wD4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:13.8263451Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://avvxxmdfieqjz813cbwc7aqs.z29.blob.storage.azure.net/9176277e-977a-42e2-b04b-3eff572f840a/26aded55-5488-4cbc-9378-c40a292bf93b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A33Z&ske=2024-11-20T18%3A18%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A33Z&sr=b&sp=r&sig=e1WVEjUJYybmN%2FCfc2WRh8LIkur49XJvpOMIhycvWis%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:33.7045822Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:13 GMT + - Wed, 20 Nov 2024 11:18:33 GMT mise-correlation-id: - - 4143fb58-495a-42d5-b432-562da7300beb + - 2ea1d37a-cffa-4234-9d46-b9cbdfe9215a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095713Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x5r6 + - 20241120T111833Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001mkp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -368,31 +374,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A19Z&ske=2024-11-06T16%3A57%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A20Z&sr=b&sp=r&sig=cukAbJnt393VX889V4qA1L5e1XVY4w%2FVNESf4KTT8jE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:20.4697561Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://avvxxmdfieqjz813cbwc7aqs.z29.blob.storage.azure.net/9176277e-977a-42e2-b04b-3eff572f840a/26aded55-5488-4cbc-9378-c40a292bf93b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A38Z&ske=2024-11-20T18%3A18%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A38Z&sr=b&sp=r&sig=j3%2FFenQjJyBqr5bno%2BArZzXtiRaDMNdIwPEx%2BDZO5RY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:38.8570443Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:20 GMT + - Wed, 20 Nov 2024 11:18:38 GMT mise-correlation-id: - - 121dcb54-3c63-4e33-bc1e-fc54a7b63ee5 + - 40994293-c282-4ca5-af71-453da445fe80 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095718Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x6f7 + - 20241120T111838Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001mse x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -410,17 +417,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A25Z&ske=2024-11-06T16%3A57%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A25Z&sr=b&sp=r&sig=AXF7gtSGy0z%2F75b001RkJJCPJY369n%2BtdI70Cek7Qp4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:25.8077842Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://avvxxmdfieqjz813cbwc7aqs.z29.blob.storage.azure.net/9176277e-977a-42e2-b04b-3eff572f840a/26aded55-5488-4cbc-9378-c40a292bf93b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A33Z&ske=2024-11-20T18%3A18%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A43Z&sr=b&sp=r&sig=zdLF1%2Bsc24X2qWxn3sW50zj8%2FVYXWK0cred5bo0MziA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:43.9660496Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -428,13 +436,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:25 GMT + - Wed, 20 Nov 2024 11:18:43 GMT mise-correlation-id: - - 051c0584-dee5-4e83-bd9d-53f27ed72438 + - eb872695-5cf8-48a7-b6bf-a3b4936b2119 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095725Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x79h + - 20241120T111843Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001mz6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -452,31 +460,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A13Z&ske=2024-11-07T01%3A57%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A31Z&sr=b&sp=r&sig=kaEEhdl%2BLsLOa0LKbS%2BRIn647vXSQNSXUZ6FjAOiY%2F8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:31.1482211Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://avvxxmdfieqjz813cbwc7aqs.z29.blob.storage.azure.net/9176277e-977a-42e2-b04b-3eff572f840a/26aded55-5488-4cbc-9378-c40a292bf93b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A33Z&ske=2024-11-20T18%3A18%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A49Z&sr=b&sp=r&sig=k%2FSpxUPscSpDeqUxmVsYyq0WXbZ0r0OTYtvKq2Epfo8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:49.0753028Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '562' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:31 GMT + - Wed, 20 Nov 2024 11:18:49 GMT mise-correlation-id: - - 1bdf5515-5243-4f27-b181-bb63d0682cb2 + - 88b9746d-fccc-45cc-a1f0-e9466f2eade3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095731Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x81h + - 20241120T111848Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001n5z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -494,31 +503,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A19Z&ske=2024-11-06T16%3A57%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A36Z&sr=b&sp=r&sig=FuogJWKmu5tTYHFvETR2eyV8tlZRxeF6Ga6SusGLQy4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:36.4445418Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://avvxxmdfieqjz813cbwc7aqs.z29.blob.storage.azure.net/9176277e-977a-42e2-b04b-3eff572f840a/26aded55-5488-4cbc-9378-c40a292bf93b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A54Z&ske=2024-11-20T18%3A18%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A54Z&sr=b&sp=r&sig=B0thDs%2FN%2F6LHItg2ZqLrM7uUqRvTIRkmc6bKUW9G%2F%2Fk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:54.2431867Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:36 GMT + - Wed, 20 Nov 2024 11:18:54 GMT mise-correlation-id: - - 4a1d3a6f-3c24-4567-95c2-a1e6d6fa0c3b + - f5993178-ea43-486f-91a0-72956b7a7f83 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095736Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x8ua + - 20241120T111854Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001nb6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -536,31 +546,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A41Z&ske=2024-11-06T16%3A57%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A41Z&sr=b&sp=r&sig=3ixJ1COtbRCcIl1db7asyl%2F6TbVl81hZpzt%2BHCfQMzQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:41.8379199Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://avvxxmdfieqjz813cbwc7aqs.z29.blob.storage.azure.net/9176277e-977a-42e2-b04b-3eff572f840a/26aded55-5488-4cbc-9378-c40a292bf93b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A33Z&ske=2024-11-20T18%3A18%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A59Z&sr=b&sp=r&sig=4T4F%2F7oMrAvcA5xeqtaosbv7ChL%2FKxG6U4leJdrX%2B8w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:59.3609279Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:41 GMT + - Wed, 20 Nov 2024 11:18:59 GMT mise-correlation-id: - - de434177-e511-4407-a376-db2d8dea6a0c + - 6d056034-7ce7-437f-82eb-a110715c1a78 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095741Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x9ke + - 20241120T111859Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001nh0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,31 +589,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A41Z&ske=2024-11-06T16%3A57%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A47Z&sr=b&sp=r&sig=Nf4j8QeRkUUKF4JnR3rEsTQHvATKk2Rz95BHggDtSU0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:47.1256974Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://avvxxmdfieqjz813cbwc7aqs.z29.blob.storage.azure.net/9176277e-977a-42e2-b04b-3eff572f840a/26aded55-5488-4cbc-9378-c40a292bf93b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A33Z&ske=2024-11-20T18%3A18%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A04Z&sr=b&sp=r&sig=x0JIUMjhsptIfqgs8E%2F7bK6xx5sfDITuvkgWwTuCzPE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:04.4806809Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '554' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:47 GMT + - Wed, 20 Nov 2024 11:19:04 GMT mise-correlation-id: - - b20f9df5-366c-4d56-84cd-a7a5a1aee974 + - 436e3bdc-e9eb-4191-93e6-6cdeb000073b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095746Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001xabx + - 20241120T111904Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001nq7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -620,32 +632,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview response: body: - string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A47Z&ske=2024-11-06T16%3A57%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A47Z&sr=b&sp=r&sig=wXGGi1QKVcSCJ1DhGyneoBIvGbkMQY1vfglnZE66Aqg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:57:47.4700661Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:57:11.347Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:57:43.322Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://avvxxmdfieqjz813cbwc7aqs.z29.blob.storage.azure.net/9176277e-977a-42e2-b04b-3eff572f840a/26aded55-5488-4cbc-9378-c40a292bf93b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A33Z&ske=2024-11-20T18%3A18%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A04Z&sr=b&sp=r&sig=UNnDs%2FI0YOuV7HG9Rq2BWYH0djASNRPqMa8U9UapQUk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:04.5850117Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:18:33.075Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:19:01.37Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1143' + - '1247' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:47 GMT + - Wed, 20 Nov 2024 11:19:04 GMT mise-correlation-id: - - 160bf85b-8d2c-4c53-9064-8b3c5136d304 + - 42121c1f-1e1b-4818-b10e-3551ebbff5c3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095747Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001xadu + - 20241120T111904Z-r16f5dbf676v2djshC1YVRqhhn00000001q0000000001nqb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -663,23 +676,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:56:33.7247351Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:56:33.7247351Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:17:59.6757729Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:59.6757729Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:50 GMT + - Wed, 20 Nov 2024 11:19:05 GMT etag: - - '"fa00b305-0000-0200-0000-672b3d690000"' + - '"97038c00-0000-0200-0000-673dc57d0000"' expires: - '-1' pragma: @@ -695,7 +708,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6B0C513851BB49C3A53B7A4B74391670 Ref B: MAA201060513035 Ref C: 2024-11-06T09:57:50Z' + - 'Ref A: D1C3150DE1794C1F9FD6652B7E076978 Ref B: CO6AA3150219031 Ref C: 2024-11-20T11:19:04Z' status: code: 200 message: OK @@ -709,32 +722,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://ab152065-7b5b-4a03-a9ad-bcc23bfb1f69.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A47Z&ske=2024-11-06T16%3A57%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A53Z&sr=b&sp=r&sig=CWh0ENKe24Ngzi2sphtAHESqmhmrBfq%2BSoI7suadvJA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:57:53.7084229Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:57:11.347Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:57:43.322Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://avvxxmdfieqjz813cbwc7aqs.z29.blob.storage.azure.net/9176277e-977a-42e2-b04b-3eff572f840a/26aded55-5488-4cbc-9378-c40a292bf93b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A01Z&ske=2024-11-21T01%3A19%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A05Z&sr=b&sp=r&sig=UsYITZ9P4rR6YLfaVIqYSsugFkJS3FuT7a7LbmyG28o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:05.5692953Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:18:33.075Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:19:01.37Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1157' + - '1257' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:53 GMT + - Wed, 20 Nov 2024 11:19:05 GMT mise-correlation-id: - - 077929aa-1000-4693-be86-1f71b20f732d + - 7327f0ee-7182-48d4-a791-59f72fd1f157 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095753Z-16bf8d9b4c77wrr9hC1BOMmmkw000000069000000001f5x8 + - 20241120T111905Z-17b7777dc45b4878hC1CO13uc00000000w60000000006yf3 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_delete.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_delete.yaml index daf5f0c887f..28d972c01f0 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_delete.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_delete.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.3704788Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.3704788Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.929408Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.929408Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:53:59 GMT + - Wed, 20 Nov 2024 11:15:34 GMT etag: - - '"f9008cfe-0000-0200-0000-672b3ca90000"' + - '"9603f4fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -39,9 +39,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16497' x-msedge-ref: - - 'Ref A: 916E0E6475504978B2B1EF98565C538F Ref B: MAA201060514053 Ref C: 2024-11-06T09:53:59Z' + - 'Ref A: 3E4A005BB3DF42F48BE305C27237196C Ref B: CO6AA3150220029 Ref C: 2024-11-20T11:15:34Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier delete-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 09:54:02 GMT + - Wed, 20 Nov 2024 11:15:35 GMT mise-correlation-id: - - ec6ed226-78f9-4d32-9fd4-017f934f8820 + - e3195ff4-eafe-4dce-83c7-571cc90a00d5 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T095402Z-16998b5679frmpjghC1MAAsv7000000005x000000000hpq7 + - 20241120T111534Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000stae x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"d824664b-f1cd-4629-ae6f-0b62ab64ca50": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"cff2e8f7-a942-400d-8c05-fc74ba0261a7": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "77acd211-b356-4b68-9608-84bd060be92e": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "66fd1039-a79e-45cb-9dd5-bc1744487600": + "78"}, "b16935ec-5c72-4403-b209-0f95ec5c9e11": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "112febaf-db34-4a00-89d9-fda6ce597bdf": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d824664b-f1cd-4629-ae6f-0b62ab64ca50":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"77acd211-b356-4b68-9608-84bd060be92e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"66fd1039-a79e-45cb-9dd5-bc1744487600":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:03.27Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:54:03.27Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"cff2e8f7-a942-400d-8c05-fc74ba0261a7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b16935ec-5c72-4403-b209-0f95ec5c9e11":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"112febaf-db34-4a00-89d9-fda6ce597bdf":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:35.395Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:15:35.395Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1044' + - '1148' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:03 GMT + - Wed, 20 Nov 2024 11:15:35 GMT location: - - https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-03-01-preview + - https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 9910265a-5103-40a4-a200-4286934f83b7 + - 87f9983b-0bca-4004-958e-9a09b587a004 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095402Z-16998b5679frmpjghC1MAAsv7000000005x000000000hpqv + - 20241120T111535Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000stax x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:03 GMT + - Wed, 20 Nov 2024 11:15:36 GMT mise-correlation-id: - - 27ea5ff0-8a62-44db-90c2-760fc9d2d751 + - 23570dc7-29a3-4b2c-97da-ee469ea2e2a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095403Z-16998b5679frmpjghC1MAAsv7000000005x000000000hprc + - 20241120T111535Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000stbn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/22bd1952-fae9-4cf8-857f-143930c49a58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A04Z&sr=b&sp=r&sig=FedRg4VsP9oGO0%2BYg%2BIG6L3n%2FwHPD2K6yiRePOoSFvM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:04:04.2994008Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/0075834b-4492-42b8-9ca9-f2809534045f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A36Z&sr=b&sp=r&sig=XcCtd%2FBSldIyYt7D85snr8sBbQT%2FXEkBbM0Vp2nRD58%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:25:36.8482377Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '577' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:04 GMT + - Wed, 20 Nov 2024 11:15:36 GMT location: - - https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 29b066b7-bc3d-43c9-b16d-4c610f5e9aca + - 4da37a2b-6c83-4167-9b1f-b1eee56ad52e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095403Z-16998b5679frmpjghC1MAAsv7000000005x000000000hprx + - 20241120T111536Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000steb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/22bd1952-fae9-4cf8-857f-143930c49a58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A04Z&sr=b&sp=r&sig=FedRg4VsP9oGO0%2BYg%2BIG6L3n%2FwHPD2K6yiRePOoSFvM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:04:04.6592953Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/0075834b-4492-42b8-9ca9-f2809534045f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A36Z&sr=b&sp=r&sig=XcCtd%2FBSldIyYt7D85snr8sBbQT%2FXEkBbM0Vp2nRD58%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:25:36.9862218Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '577' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:04 GMT + - Wed, 20 Nov 2024 11:15:37 GMT mise-correlation-id: - - c7626959-f7dc-4067-8409-2bad0ab5740d + - 5eda1dd0-99c9-4d86-bb5f-ec957fed39d4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095404Z-16998b5679frmpjghC1MAAsv7000000005x000000000hpsh + - 20241120T111536Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000stf8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-07T01%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A07Z&sr=b&sp=r&sig=2Rt5TJlhpMzZv7PLz7UPMezWU6Biv8d9UIpCqVD8fT8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:07.1121105Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/824f0c61-7839-4778-a6f9-73a35e22970a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A37Z&sr=b&sp=r&sig=NZ2sN4FeBF%2BPX8ea5KtLmS%2FDragji6svt3WP8%2BhnnM4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:37.345095Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:07 GMT + - Wed, 20 Nov 2024 11:15:37 GMT location: - - https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 21325f42-e1dc-418d-8959-11fa030c1966 + - 69d5d3bf-4fcb-4881-8d34-53c659116a1e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095404Z-16998b5679frmpjghC1MAAsv7000000005x000000000hpt2 + - 20241120T111537Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000stfp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,31 +351,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A07Z&sr=b&sp=r&sig=NIo7avXPXJ%2FPH%2Fpni%2Bx%2FfWroCa48nuFgCRp754sYAEw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:07.4408044Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/824f0c61-7839-4778-a6f9-73a35e22970a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A38Z&sr=b&sp=r&sig=E0VqbVNITbacchz%2B4ylG%2FQkKCFxN%2FK9Bs%2BCi1M%2FAiLY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:38.0373051Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '576' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:07 GMT + - Wed, 20 Nov 2024 11:15:38 GMT mise-correlation-id: - - 81aec0a7-6914-484d-8eeb-46a074973cf7 + - 3f4cb734-a953-4d6c-a39b-8b9a2e7cf71b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095407Z-16998b5679frmpjghC1MAAsv7000000005x000000000hpv6 + - 20241120T111537Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000stge x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,17 +394,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A12Z&sr=b&sp=r&sig=MhBWQDWENflhPWxVa%2Bp6aDwc8HW5JX5s6rgTr3tzrNg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:12.800852Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/824f0c61-7839-4778-a6f9-73a35e22970a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A43Z&sr=b&sp=r&sig=dV1jSCSLdDiwh1Ta2cXLPrOUKjRAnRODS5q%2FVfCXG0A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:43.167773Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -404,55 +413,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:12 GMT - mise-correlation-id: - - a73bfc2f-510c-4b85-89b4-0fa6ec29069c - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T095412Z-16998b5679frmpjghC1MAAsv7000000005x000000000hq02 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A18Z&ske=2024-11-06T16%3A54%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A18Z&sr=b&sp=r&sig=cq%2FGKv6UwscmdahQa1O%2F%2FVqM1b1vFXcYuTjOGSFodho%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:18.1743071Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '574' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 06 Nov 2024 09:54:18 GMT + - Wed, 20 Nov 2024 11:15:43 GMT mise-correlation-id: - - 4dadbd0a-fc81-412a-946c-3492ffa06af9 + - 69a547d2-a3db-446c-bf5d-bfc9906742ac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095417Z-16998b5679frmpjghC1MAAsv7000000005x000000000hq5c + - 20241120T111543Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000stux x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,17 +437,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A23Z&sr=b&sp=r&sig=me6LZ3b4M6cOHPLACVf%2Bhxqcdia6n1h9LwXBU6mPpVA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:23.4573728Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/824f0c61-7839-4778-a6f9-73a35e22970a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A48Z&sr=b&sp=r&sig=av5A7cYl%2BWeYrmK1WI8OyTr8JgdZfG7zt5uGiPcST9A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:48.2691683Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -488,13 +456,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:23 GMT + - Wed, 20 Nov 2024 11:15:48 GMT mise-correlation-id: - - 14ec1b5b-9b6c-4ebd-9d10-97c78e6e30e8 + - 6ea372a3-d338-4110-8440-90922c1a4cac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095423Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqb2 + - 20241120T111548Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000su5k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A18Z&ske=2024-11-06T16%3A54%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A28Z&sr=b&sp=r&sig=kV7YDBXo%2BSsq9EW4xPihMAAhw635RGRnbnxcJ%2BEJSeg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:28.7823599Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/824f0c61-7839-4778-a6f9-73a35e22970a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A53Z&sr=b&sp=r&sig=fMxv%2FPP9gdsJetBWBp9qN9FITW4Z1N7ihgUzJ1D7zJE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:53.3968214Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:28 GMT + - Wed, 20 Nov 2024 11:15:53 GMT mise-correlation-id: - - 36a4f31e-136b-492f-825c-3d67fc489d93 + - 28c7d49b-b939-4be4-bc19-cc9cb2eb1a07 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095428Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqgu + - 20241120T111553Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000sug0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -554,31 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-07T01%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A34Z&sr=b&sp=r&sig=hNLdZw8C1jB3vtfHIaibpWuJlYvn%2Ftc6MEhmsSDgf0M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:34.0694586Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/824f0c61-7839-4778-a6f9-73a35e22970a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A58Z&sr=b&sp=r&sig=VECTlAXGkJpv6OhNetjK28Wd9vqn6YhSQ0vDakbvwK8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:58.591216Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '565' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:34 GMT + - Wed, 20 Nov 2024 11:15:58 GMT mise-correlation-id: - - 5a3ea50b-73c9-4662-ab0b-4c213ee5d000 + - e5471cad-1bf4-4354-9645-6e863289dd7a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095433Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqqy + - 20241120T111558Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000suu9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,33 +658,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A34Z&ske=2024-11-07T01%3A54%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A34Z&sr=b&sp=r&sig=U44V8A5P8%2F2vRToiaRYKunUQG2aAIMFUzQ8ua4uzKxA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:34.6688386Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/56b91d6f-db45-401d-b7dd-9dc36fa1f1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A58Z&sr=b&sp=r&sig=2vtSNJrH9Isn%2BJsTZvWpPLkOUr%2FAcN%2FFJHf974uidz8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:25:58.8755682Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:34 GMT + - Wed, 20 Nov 2024 11:15:58 GMT location: - - https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 9adf9bd6-66a5-4f92-a5a3-2c7d1f6fd02d + - 20cf70f0-a4c2-44ac-9a9b-7eb5e0939be0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095434Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqre + - 20241120T111558Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000suum x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,73 +703,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-07T01%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A34Z&sr=b&sp=r&sig=eo5PX2W5AaKgmTR4pC4rMc8XsxmLOQEkDAYoG5tsypE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:34.9527129Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 06 Nov 2024 09:54:35 GMT - mise-correlation-id: - - 3e84cbe4-e8ef-4b02-80fd-de50ef73f441 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T095434Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqrz - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A34Z&ske=2024-11-07T01%3A54%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A40Z&sr=b&sp=r&sig=qmrxYEvioTbyH%2BEf050z7Yv43oeMcJPBRqxnTIDjUC0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:40.3411382Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/56b91d6f-db45-401d-b7dd-9dc36fa1f1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A58Z&ske=2024-11-20T18%3A15%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A59Z&sr=b&sp=r&sig=nQGHAlk25oqSFVQx5C5l%2BxuRRr53GC5HnbH91%2BwpeRQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:25:59.0203514Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:40 GMT + - Wed, 20 Nov 2024 11:15:59 GMT mise-correlation-id: - - d8f2ae53-0164-44ed-8b8f-5a7b71ff17d5 + - 831b81c2-41f9-478a-a577-54583df498f3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095440Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqxc + - 20241120T111558Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000suvb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,17 +746,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A45Z&sr=b&sp=r&sig=NJY%2BEA6LobLSQrMpeKy7NwLTbOc1u0I6KXXgsX4drHg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:45.6664697Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/56b91d6f-db45-401d-b7dd-9dc36fa1f1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A04Z&sr=b&sp=r&sig=i7E%2Bzs01OwYGNqVTJh5wKm84UEhigrK7WddZyWFSBMo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:04.1241906Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -834,13 +765,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:45 GMT + - Wed, 20 Nov 2024 11:16:04 GMT mise-correlation-id: - - 1227f947-3a6d-4076-a995-99fa3a954af9 + - 24aabc67-c11d-4e0f-8de5-8b8b0377087c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095445Z-16998b5679frmpjghC1MAAsv7000000005x000000000hr2n + - 20241120T111604Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000sv4f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +789,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A34Z&ske=2024-11-07T01%3A54%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A50Z&sr=b&sp=r&sig=OahNIx40bo%2FDEc40zaYvLwmvioHmzS8%2Bfypy6MvCM3U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:50.9544733Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/56b91d6f-db45-401d-b7dd-9dc36fa1f1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A09Z&sr=b&sp=r&sig=suLWO%2FH%2FzDclj4lgN4KfztSwrahHqCPhjji%2Bb1NnBEM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:09.2247241Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:51 GMT + - Wed, 20 Nov 2024 11:16:09 GMT mise-correlation-id: - - a6a15197-4d52-4768-99e3-aa9820645a8a + - 3fab1e60-8c4d-4cd1-aee2-27a9c449906b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095450Z-16998b5679frmpjghC1MAAsv7000000005x000000000hr7z + - 20241120T111609Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000svfb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,17 +832,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A56Z&sr=b&sp=r&sig=onNjphrqaXJzYtIfXyyPIS5Xqlry2s1IACbXBA08ytQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:56.5974799Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/56b91d6f-db45-401d-b7dd-9dc36fa1f1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A14Z&sr=b&sp=r&sig=sIZNwlkHneH9r5MXKQLpHmoMehxlFivOUm7cU9VX18A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:14.3341169Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -918,13 +851,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:56 GMT + - Wed, 20 Nov 2024 11:16:14 GMT mise-correlation-id: - - 61cc0403-cc65-4e9f-8038-38230b9de85d + - 0251d797-5130-41b0-87e0-06438a9eb644 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095456Z-16998b5679frmpjghC1MAAsv7000000005x000000000hrds + - 20241120T111614Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000svs4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,17 +875,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A02Z&sr=b&sp=r&sig=knZ2CNUxfJvqyf0ZeFZ1QptqzV0ptEGvXI7yKocy1ms%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:02.1634382Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/56b91d6f-db45-401d-b7dd-9dc36fa1f1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A19Z&sr=b&sp=r&sig=ZTtPiUM9FEep38fhFl6ELTpQsvaWKtRQfd1w7wd5fq4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:19.4365472Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -960,13 +894,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:02 GMT + - Wed, 20 Nov 2024 11:16:19 GMT mise-correlation-id: - - 35ef8fed-6075-4d05-b947-d92962f63cfa + - fbe0fe9b-2274-4392-8d9f-c0d3c442000b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095501Z-16998b5679frmpjghC1MAAsv7000000005x000000000hrnk + - 20241120T111619Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000sw1g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A07Z&sr=b&sp=r&sig=Ox8pS7fmeRKrcgOnvhw%2BiMW%2FykMMjp2XaBkvtw5S50Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:07.4929064Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/56b91d6f-db45-401d-b7dd-9dc36fa1f1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A24Z&sr=b&sp=r&sig=DrHcHM8fikCzeD38vBfNKk1RNcKcqjHgdZZ83tSmdaY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:24.5438212Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:07 GMT + - Wed, 20 Nov 2024 11:16:24 GMT mise-correlation-id: - - dcbff234-3d36-4b7a-bb69-26ad64f3f096 + - ef52e085-1eca-4884-ac89-33b5429a66b9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095507Z-16998b5679frmpjghC1MAAsv7000000005x000000000hruz + - 20241120T111624Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000swdt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1026,32 +961,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d824664b-f1cd-4629-ae6f-0b62ab64ca50":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"77acd211-b356-4b68-9608-84bd060be92e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"66fd1039-a79e-45cb-9dd5-bc1744487600":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A07Z&sr=b&sp=r&sig=HqZSW7Uf%2BZyvM1OcYz4RpslmfD%2BxOL924wbog3N6tjk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:55:07.8006119Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/22bd1952-fae9-4cf8-857f-143930c49a58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A07Z&sr=b&sp=r&sig=tEgsLaofYqG2F245sRAKEUTR0Nsee74ioKCoPEhLXc8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:55:07.8011427Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A07Z&sr=b&sp=r&sig=wKlBt05JI11vn%2BW%2BhVbxWjd45HhDKHwvpfDbaFQxzto%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:55:07.8012671Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:03.27Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:55:03.055Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"cff2e8f7-a942-400d-8c05-fc74ba0261a7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b16935ec-5c72-4403-b209-0f95ec5c9e11":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"112febaf-db34-4a00-89d9-fda6ce597bdf":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/56b91d6f-db45-401d-b7dd-9dc36fa1f1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A24Z&sr=b&sp=r&sig=i5dVhH1rygpCuGS%2FtyWTSsNVG5vPRNwp0STvCnBYUno%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:24.6374082Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/0075834b-4492-42b8-9ca9-f2809534045f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A24Z&sr=b&sp=r&sig=CKNxGC0g8L8uJn6%2BBOC2atl0Y46EyIk0b%2BLHtXEAhG4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:24.6378047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/824f0c61-7839-4778-a6f9-73a35e22970a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A24Z&sr=b&sp=r&sig=Eg9vb33UznrBPKPuNwPOwOhkUzOQK%2F%2F9amnqy34foEA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:24.6379753Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:35.395Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:19.479Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2767' + - '2872' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:07 GMT + - Wed, 20 Nov 2024 11:16:24 GMT mise-correlation-id: - - 2e2caa56-9806-495b-8ed4-fa2543336ff2 + - 16eda166-1e88-4e20-8430-14ab449bf77d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095507Z-16998b5679frmpjghC1MAAsv7000000005x000000000hrve + - 20241120T111624Z-17b7777dc45d8sqjhC1CO1mpgg0000000w3g00000000swe6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1069,23 +1005,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.3704788Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.3704788Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.929408Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.929408Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:09 GMT + - Wed, 20 Nov 2024 11:16:24 GMT etag: - - '"f9008cfe-0000-0200-0000-672b3ca90000"' + - '"9603f4fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1101,7 +1037,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2D39225F1215438F9DBCD197099B59D6 Ref B: MAA201060514051 Ref C: 2024-11-06T09:55:09Z' + - 'Ref A: 06F3FCA0198047959EECA195F8415B39 Ref B: CO6AA3150219017 Ref C: 2024-11-20T11:16:24Z' status: code: 200 message: OK @@ -1115,32 +1051,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"d824664b-f1cd-4629-ae6f-0b62ab64ca50":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"77acd211-b356-4b68-9608-84bd060be92e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"66fd1039-a79e-45cb-9dd5-bc1744487600":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A12Z&sr=b&sp=r&sig=VtrP2%2FeiUZC4jy5ZKZBX6s%2BYvBSDgM5zm3KrGENCzSY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:55:12.5821375Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/22bd1952-fae9-4cf8-857f-143930c49a58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A12Z&sr=b&sp=r&sig=pUx6LDFN1cex8BtRWnQtjRKp%2BkZF53havXrusY7K9pA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:55:12.5824034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A12Z&sr=b&sp=r&sig=%2F5z3tY6BJhDE82XUYjebs0c%2BTzVp2qrQnHLrvQ%2BMhec%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:55:12.5824937Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:03.27Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:55:03.055Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"cff2e8f7-a942-400d-8c05-fc74ba0261a7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b16935ec-5c72-4403-b209-0f95ec5c9e11":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"112febaf-db34-4a00-89d9-fda6ce597bdf":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/56b91d6f-db45-401d-b7dd-9dc36fa1f1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A19Z&ske=2024-11-21T01%3A16%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A25Z&sr=b&sp=r&sig=67ve6nJySpykgCc%2F1y6Suf83AtYz5xGgQKVIxzpjO%2BQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:25.5328221Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/0075834b-4492-42b8-9ca9-f2809534045f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A19Z&ske=2024-11-21T01%3A16%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A25Z&sr=b&sp=r&sig=THT5daq8ANpz9CPuhxDH8mD%2BtYdbnav8bnZclEUsWWs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:25.5330394Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://edfbjfbrxbno7102y6d1wr23.z17.blob.storage.azure.net/727f237d-048f-4a90-9b08-029885723960/824f0c61-7839-4778-a6f9-73a35e22970a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A19Z&ske=2024-11-21T01%3A16%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A25Z&sr=b&sp=r&sig=NfQ2bqMZjJf71cww73gCBjFNeVKJYOmKwzVoLSjsnvA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:25.5331065Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:35.395Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:19.479Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2783' + - '2880' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:12 GMT + - Wed, 20 Nov 2024 11:16:25 GMT mise-correlation-id: - - a69852c5-263e-4669-9d29-d8e67cd4b717 + - 8b3011a8-1fb9-4e4b-83e4-13d63b84e504 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095512Z-16998b5679frmpjghC1MAAsv7000000005yg00000000ch2t + - 20241120T111625Z-17b7777dc45mwcxxhC1CO188kg0000000w4g00000000wh4d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1158,23 +1095,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.3704788Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.3704788Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.929408Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.929408Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:14 GMT + - Wed, 20 Nov 2024 11:16:25 GMT etag: - - '"f9008cfe-0000-0200-0000-672b3ca90000"' + - '"9603f4fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1190,7 +1127,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B874BF8F95974642824DADF7D6DE48DE Ref B: MAA201060516031 Ref C: 2024-11-06T09:55:14Z' + - 'Ref A: 7628B5FFB2174EAA908D6554664899D4 Ref B: CO6AA3150219023 Ref C: 2024-11-20T11:16:25Z' status: code: 200 message: OK @@ -1206,25 +1143,26 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: DELETE - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: string: '' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive date: - - Wed, 06 Nov 2024 09:55:17 GMT + - Wed, 20 Nov 2024 11:16:26 GMT mise-correlation-id: - - 45eaa08d-0a15-4aae-aeec-f9af1ed401e8 + - b1a7146e-141e-44fa-92f5-6182457cd473 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095516Z-16998b5679fgq548hC1MAAaz340000000610000000007cwa + - 20241120T111626Z-17b7777dc45mjdp4hC1CO17dvc000000030g00000000ce26 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1242,23 +1180,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.3704788Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.3704788Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.929408Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.929408Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:18 GMT + - Wed, 20 Nov 2024 11:16:26 GMT etag: - - '"f9008cfe-0000-0200-0000-672b3ca90000"' + - '"9603f4fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1274,7 +1212,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 61C2156B689943D2B01BC84F1ABF210A Ref B: MAA201060514021 Ref C: 2024-11-06T09:55:19Z' + - 'Ref A: AB8C3E40D7574EA6A0F26AD83372C4F9 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:16:26Z' status: code: 200 message: OK @@ -1288,9 +1226,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -1298,7 +1236,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1306,13 +1245,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:24 GMT + - Wed, 20 Nov 2024 11:16:27 GMT mise-correlation-id: - - 9a51e7ee-28a6-49ff-845c-43959113ea8f + - c6389357-52ac-42c2-b615-6bc6c83f0337 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095520Z-184f6b5dbd852mkvhC1MAA575g000000062000000000471f + - 20241120T111627Z-17b7777dc45j2hfghC1CO16ztw0000000w0g00000000k2ht x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1330,23 +1269,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.3704788Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.3704788Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.929408Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.929408Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:26 GMT + - Wed, 20 Nov 2024 11:16:27 GMT etag: - - '"f9008cfe-0000-0200-0000-672b3ca90000"' + - '"9603f4fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1362,7 +1301,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 84F6FE75E1454109A1C2BB0AB9806A91 Ref B: MAA201060514023 Ref C: 2024-11-06T09:55:25Z' + - 'Ref A: BC2202F89D954FA7BE4CA907E96D845B Ref B: CO6AA3150218047 Ref C: 2024-11-20T11:16:27Z' status: code: 200 message: OK @@ -1376,9 +1315,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://191a6588-5a0f-4496-9ef0-49ccb1fb2c36.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -1386,7 +1325,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1394,13 +1334,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:28 GMT + - Wed, 20 Nov 2024 11:16:28 GMT mise-correlation-id: - - f870bba7-7d22-49b4-876e-0adf80f9790f + - 1480effe-1acb-40d3-bf28-4761eb42c5e3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095527Z-184f6b5dbd8wqhb5hC1MAAgerw00000004xg00000000hdep + - 20241120T111627Z-17b7777dc45dj5bhhC1CO1wt8s0000000w0g00000000kh1e x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_download_files.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_download_files.yaml index 5ac74298da9..e1bb0ce3deb 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_download_files.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_download_files.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:55:44.961123Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:55:44.961123Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:33.8159344Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:33.8159344Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:19 GMT + - Wed, 20 Nov 2024 11:17:05 GMT etag: - - '"fa002d04-0000-0200-0000-672b3d390000"' + - '"960385ff-0000-0200-0000-673dc52a0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4CAF4CFE3FB04136B0E2B66598661096 Ref B: MAA201060514033 Ref C: 2024-11-06T09:56:19Z' + - 'Ref A: F737ED58020E48B9B0F5F007393BCA59 Ref B: CO6AA3150219011 Ref C: 2024-11-20T11:17:05Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier download-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 09:56:22 GMT + - Wed, 20 Nov 2024 11:17:06 GMT mise-correlation-id: - - 18aecf09-4d7f-4b63-b089-812f027583db + - 80ac5e04-3296-48e1-948b-ed1f138e822f strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T095621Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d6w0 + - 20241120T111706Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000026wv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"652f7728-3b5b-4e16-af78-b8cb9db0616c": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"eeb074d9-b4d5-4974-94f8-e885dd0276d2": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "121a1ec9-c034-4383-9844-8b182c4b23f6": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "5bc70a70-86bd-48c8-9b74-9eaf8649a2fb": + "78"}, "e42a45ef-1275-44ab-870f-4cfc265a02b8": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "f0025afd-72fc-4384-ae5c-401d01aef857": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"652f7728-3b5b-4e16-af78-b8cb9db0616c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"121a1ec9-c034-4383-9844-8b182c4b23f6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5bc70a70-86bd-48c8-9b74-9eaf8649a2fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:56:22.705Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:56:22.705Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"eeb074d9-b4d5-4974-94f8-e885dd0276d2":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e42a45ef-1275-44ab-870f-4cfc265a02b8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f0025afd-72fc-4384-ae5c-401d01aef857":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:06.679Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:06.679Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1048' + - '1150' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:22 GMT + - Wed, 20 Nov 2024 11:17:06 GMT location: - - https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-03-01-preview + - https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-03-01-preview mise-correlation-id: - - ca7a810c-c51d-4a8f-ba8d-a7e900edd853 + - 4cf43e13-ffe9-475e-ad90-20d8c0a62d2d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095622Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d6wr + - 20241120T111706Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000026x6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:23 GMT + - Wed, 20 Nov 2024 11:17:06 GMT mise-correlation-id: - - 1282f4cb-f360-4cd2-bceb-1fc6aa3a3987 + - 7d7aba56-e6db-4692-b7de-53b51ba9805c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095623Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d6x9 + - 20241120T111706Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000026xg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,17 +207,18 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4acddf86-d4a6-4cfc-983a-025d66d5eed0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A23Z&ske=2024-11-06T16%3A56%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A23Z&sr=b&sp=r&sig=uEA%2BEuLR%2BK0de13jeJtCM27UIp5bWhU%2BMIPMFB39y%2FE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:06:23.7971536Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/442922f6-73de-4843-b696-b5f809da780d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A07Z&sr=b&sp=r&sig=SFTT32X%2BRxu%2FyI%2F9d%2BTe6xywPUPGDL5MUbdT86brjfI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:27:07.1540365Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -221,15 +226,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:23 GMT + - Wed, 20 Nov 2024 11:17:07 GMT location: - - https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 65609433-6a8f-4736-af59-e3541bf9612a + - 90bdd499-ac9b-4d72-8a07-2b74a9a4f345 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095623Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d6xe + - 20241120T111706Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000026xp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4acddf86-d4a6-4cfc-983a-025d66d5eed0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A25Z&sr=b&sp=r&sig=4UtY94Cr4V8mR5FZXn3iWXjnt6Qf%2BZ16m9kdF5Qd0dk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:06:25.2126209Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/442922f6-73de-4843-b696-b5f809da780d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A07Z&sr=b&sp=r&sig=SFTT32X%2BRxu%2FyI%2F9d%2BTe6xywPUPGDL5MUbdT86brjfI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:27:07.3059936Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:25 GMT + - Wed, 20 Nov 2024 11:17:07 GMT mise-correlation-id: - - bb2e2518-1943-4462-8e84-6165c83788d5 + - f53805d7-8256-404d-8564-2bd0e1d53edd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095624Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d6y4 + - 20241120T111707Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000026xy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A25Z&sr=b&sp=r&sig=aEn17DE5NWyzJ15TDt5n7deoRC3jQFTFYQUVTCHioco%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:25.7353757Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/aa43750f-6fd5-4b9d-ae17-6a569fd2e70f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A07Z&sr=b&sp=r&sig=b4raDDWkyEzi5c%2BRnfcEYK4p34HkwVImzt1SimAp45U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:07.6237384Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:25 GMT + - Wed, 20 Nov 2024 11:17:07 GMT location: - - https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - f5a8f52b-747f-4003-adbc-bc69af910244 + - 09040935-3ff0-4a84-a946-e4d8d12bedeb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095625Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d721 + - 20241120T111707Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000026y1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,31 +351,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A23Z&ske=2024-11-06T16%3A56%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A26Z&sr=b&sp=r&sig=GtuAdBHgqBO3gDyrtmZNYsFeBTzoR2j92k%2B51Vf%2FL1E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:26.0492736Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/aa43750f-6fd5-4b9d-ae17-6a569fd2e70f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A07Z&sr=b&sp=r&sig=b4raDDWkyEzi5c%2BRnfcEYK4p34HkwVImzt1SimAp45U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:07.7703009Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:26 GMT + - Wed, 20 Nov 2024 11:17:07 GMT mise-correlation-id: - - 487d0a4a-93ea-44ca-8d8e-bdc51c4f6673 + - 388f8907-8e21-4b1a-adf8-cb29c3f9c473 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095625Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d72h + - 20241120T111707Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000026yb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,17 +394,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A31Z&sr=b&sp=r&sig=lbU9l2idrkVZRCQRu7uZrF%2FJDzWa%2FuC9zuWLVEmdOec%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:31.3668457Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/aa43750f-6fd5-4b9d-ae17-6a569fd2e70f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A12Z&ske=2024-11-20T18%3A17%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A12Z&sr=b&sp=r&sig=wcuOx8K9KsUNby2S0a%2B8QF5hk7h1Fns1wr%2FddVpavik%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:12.9301561Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -404,13 +413,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:31 GMT + - Wed, 20 Nov 2024 11:17:12 GMT mise-correlation-id: - - 4c277ba7-1097-4407-9a38-2b0fc91fce0b + - 3d17a752-f907-4e1d-83b8-c46fa96b77cb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095631Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d7cc + - 20241120T111712Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg00000000278m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A23Z&ske=2024-11-06T16%3A56%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A36Z&sr=b&sp=r&sig=SU9hnYbMM6QWXsagMlBOOLeK9vah8TMs4ZSndu65Jxc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:36.6813954Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/aa43750f-6fd5-4b9d-ae17-6a569fd2e70f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A18Z&sr=b&sp=r&sig=EwcFuIq4CzcxgQ8Fh%2BuXEc7q9oRXAOPHKjh2IYsyOv0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:18.0604311Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:36 GMT + - Wed, 20 Nov 2024 11:17:18 GMT mise-correlation-id: - - 797a560a-389b-4de7-a630-6c16fac84b2e + - 62500e95-e441-482f-8ede-e166b18a4949 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095636Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d7mq + - 20241120T111717Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000027da x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,17 +480,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A41Z&ske=2024-11-06T16%3A56%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A42Z&sr=b&sp=r&sig=74lIwOnkpu24uJV3BGwWzrajudDbYYC1Hjih3J5UpwQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:42.0353808Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/aa43750f-6fd5-4b9d-ae17-6a569fd2e70f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A23Z&sr=b&sp=r&sig=CE8dMMikH6PYBWui8RKZ2w6YP4ZC3Jq6e97nKcvT9bk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:23.1794005Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -488,13 +499,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:42 GMT + - Wed, 20 Nov 2024 11:17:23 GMT mise-correlation-id: - - 45af4a9c-ee0a-4b76-93b7-6098a5a8bfaf + - da2755ac-68fd-4fc9-b7a2-74b896ecca7c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095641Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d7u7 + - 20241120T111723Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000027ng x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,31 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A47Z&ske=2024-11-06T16%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A47Z&sr=b&sp=r&sig=5Xh%2BWFe44jxe%2BABkDiQTqAmc1O%2FkxYzqpBKU7LAn%2B34%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:47.3555332Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/aa43750f-6fd5-4b9d-ae17-6a569fd2e70f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A12Z&ske=2024-11-20T18%3A17%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A28Z&sr=b&sp=r&sig=aVX5kngsBJbbrKwlm1kO58wZbgkk%2FWCSWRxX4Yj71pI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:28.324718Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '576' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:47 GMT + - Wed, 20 Nov 2024 11:17:28 GMT mise-correlation-id: - - 18b089f5-cc2c-4997-a8ef-8a4d14de4a3d + - 4ea86577-989e-4df7-8a82-0be7d6cbbf27 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095647Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d80v + - 20241120T111728Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000027tc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -554,31 +566,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A41Z&ske=2024-11-06T16%3A56%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A52Z&sr=b&sp=r&sig=MAmXHFR%2FKEj2YRDXrfoDHVp6aKKHrXq1m%2B3vSd54cTw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:52.6439162Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/aa43750f-6fd5-4b9d-ae17-6a569fd2e70f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A33Z&sr=b&sp=r&sig=qzQmxGlRhFgVj75QMBFhV%2BVT9yEoMjmHiPAxXLkLHsU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:33.5142939Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:52 GMT + - Wed, 20 Nov 2024 11:17:33 GMT mise-correlation-id: - - 8d3a1cb6-2778-44bd-bd79-1b22fb0bf69a + - 9f824df5-5750-45c9-8c33-fcbd2ae3acf5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095652Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d86g + - 20241120T111733Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000028am x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,17 +701,18 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A53Z&ske=2024-11-07T01%3A56%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A53Z&sr=b&sp=r&sig=APxo9XXaN2nLgJidivTtC2YHL26Xy1KpXRFRgB9%2BCOA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:06:53.9955026Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A12Z&ske=2024-11-20T18%3A17%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A33Z&sr=b&sp=r&sig=4M2zz0yOTICHcUZQFCJNBum8KTRciTPU7NutO%2BxplQk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:33.8046529Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -706,15 +720,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:54 GMT + - Wed, 20 Nov 2024 11:17:33 GMT location: - - https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - a8377d7d-8bbb-4933-9071-5c3941c897a4 + - 579b7361-561b-42ec-9dd8-d50a1fd1ef37 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095652Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d86v + - 20241120T111733Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000028bc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +746,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A54Z&ske=2024-11-06T16%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A54Z&sr=b&sp=r&sig=2tc7wbyqCyQ0NoErrtS7UIKPH3YkLiDRzvPSp6tvY6w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:06:54.4524288Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A33Z&sr=b&sp=r&sig=G6Sg8lh%2FKNaPSMwoFHx2SB4OZba84GTITnvulU5e7NE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:33.9343307Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:54 GMT + - Wed, 20 Nov 2024 11:17:33 GMT mise-correlation-id: - - 112dfdbb-7032-498e-8c31-0e5e3dfac984 + - e7cc1e9d-7339-4db7-8f0d-f2f407498afd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095654Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d88p + - 20241120T111733Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000028br x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,17 +789,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A53Z&ske=2024-11-07T01%3A56%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A59Z&sr=b&sp=r&sig=x7WS8K8fMJqaWyRtnFrassSLr%2FU5yPoJBcJjMetTmdQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:06:59.8189021Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A39Z&sr=b&sp=r&sig=0YRwQ%2FrabOrsWa2n4dxGofY1RykJgdMfM45KlbwOPjA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:39.0485694Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -792,13 +808,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:59 GMT + - Wed, 20 Nov 2024 11:17:39 GMT mise-correlation-id: - - bd5c3008-fc9a-4bd8-a016-54608430da86 + - 0e684a43-a970-443d-ac4b-8d691a0dd5b7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095659Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d8ey + - 20241120T111738Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000028sa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,17 +832,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A41Z&ske=2024-11-06T16%3A56%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A05Z&sr=b&sp=r&sig=pHHQUSv%2F8MbvBlHj37sValnPdpgr1LKAP61McMyWYKk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:05.1146186Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A12Z&ske=2024-11-20T18%3A17%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A44Z&sr=b&sp=r&sig=N3DJDPzjc6ki8KBa5pb%2FrzVdGHlWA3JgYRrmYuHxnfs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:44.1739371Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -834,13 +851,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:05 GMT + - Wed, 20 Nov 2024 11:17:44 GMT mise-correlation-id: - - c424f700-8902-4cd7-b424-504e56a03e93 + - c39a59dd-6691-4ce7-b2d8-b01e91c9efc4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095704Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d8qs + - 20241120T111744Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg00000000295w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A10Z&sr=b&sp=r&sig=q0TCDFqeiJC9vUnxnuS7R4qBTuLDvWzYthQUOCPSx3Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:10.46713Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A49Z&sr=b&sp=r&sig=6qe%2F5U7iHIodbCnmxQlW3rC3K%2BIN0PgwAj9QZ4Rc6H0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:49.2964543Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '554' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:10 GMT + - Wed, 20 Nov 2024 11:17:49 GMT mise-correlation-id: - - 996183f2-f1fe-445e-8428-63d1d6afe527 + - 3f75b718-ec68-42cf-aeeb-e9857def72d5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095710Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d8xq + - 20241120T111749Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000029ba x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A47Z&ske=2024-11-06T16%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A15Z&sr=b&sp=r&sig=HP1%2BIq1vLJLtlzf8XEoP%2FrC8UHmJmJG5NPZR1FY3E%2FQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:15.7684804Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A12Z&ske=2024-11-20T18%3A17%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A54Z&sr=b&sp=r&sig=1fNZTmU3kYp4WeL0oCJS9hD9Hi1T9pXAu5GJnzv5l7Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:54.422946Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '562' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:15 GMT + - Wed, 20 Nov 2024 11:17:54 GMT mise-correlation-id: - - 5ae75a88-5d02-47ee-b433-42634ea0374b + - 118b0fcd-10e7-42a1-9f35-a3fce22c1df4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095715Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d949 + - 20241120T111754Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg0000000029ky x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +961,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A21Z&sr=b&sp=r&sig=F9gO0ZLTxNJL94eqbxC62q3msP1kDmgvxQiVgQN0lk0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:21.1254961Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A59Z&sr=b&sp=r&sig=cPpustx%2F4HiCWLACgBBc%2BhfdcmSO9e4hnlMhZwmF2T4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:59.5507447Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:21 GMT + - Wed, 20 Nov 2024 11:17:59 GMT mise-correlation-id: - - c2b6d48b-3875-40d3-a223-ba7b85b0142e + - 1c3125d2-d176-4ea5-b70f-c68d3ddfa314 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095720Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d9bk + - 20241120T111759Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg000000002afg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,31 +1004,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A47Z&ske=2024-11-06T16%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A26Z&sr=b&sp=r&sig=Wm%2FsRI9razfjkbpk1Vh%2F4y74DTAziIVVnPNOX9Fiqe0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:26.8273391Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A02Z&ske=2024-11-21T01%3A18%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A04Z&sr=b&sp=r&sig=I2F5WpSaqeT2KtvwZPglx3mXQDvyKyIV10b5AUfSNLI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:04.6811759Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:26 GMT + - Wed, 20 Nov 2024 11:18:04 GMT mise-correlation-id: - - 925cd922-443b-4397-9052-1288737a5cd9 + - a802a3a2-398d-4464-a916-6f467985d3dd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095726Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d9n1 + - 20241120T111804Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg000000002anp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1026,32 +1047,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"652f7728-3b5b-4e16-af78-b8cb9db0616c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"121a1ec9-c034-4383-9844-8b182c4b23f6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5bc70a70-86bd-48c8-9b74-9eaf8649a2fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A27Z&sr=b&sp=r&sig=040aDqm7qwom1zoLK%2FAhsqwtk0lhWGavHBZJxI1spsg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:57:27.1703368Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4acddf86-d4a6-4cfc-983a-025d66d5eed0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A27Z&sr=b&sp=r&sig=IvSiTqXXsEUr%2Bf3DGjNfShRG13ruVoq0M0lSPbkKilE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:57:27.1705784Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A27Z&sr=b&sp=r&sig=%2BGc8TaxO%2FhthrWzosb%2F5GnGEpPuUuCEXxUqAvt9Z5QA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:57:27.1706546Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:56:22.705Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:57:24.812Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"eeb074d9-b4d5-4974-94f8-e885dd0276d2":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e42a45ef-1275-44ab-870f-4cfc265a02b8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f0025afd-72fc-4384-ae5c-401d01aef857":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A04Z&sr=b&sp=r&sig=ftLINJxKt9zH8gKaV16lW4Ph%2FforFMERaw4J6nC9MXI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:04.793088Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/442922f6-73de-4843-b696-b5f809da780d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A04Z&sr=b&sp=r&sig=%2F4fwGPxtf6zKb5Zl35NzXTQZVltX7Gt%2Bw1XuI3P7OmY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:04.7933982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/aa43750f-6fd5-4b9d-ae17-6a569fd2e70f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A04Z&sr=b&sp=r&sig=z0pbbJqnkqTBt%2FkmguOJ632Y%2BtFX2SgDnLKnoz20nLI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:04.793534Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:06.679Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:18:02.501Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2772' + - '2872' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:27 GMT + - Wed, 20 Nov 2024 11:18:04 GMT mise-correlation-id: - - 5ba09a52-c99a-4411-bf20-e32fa349d79a + - 63eb810a-2d4d-4fed-ae5f-afb705f3642b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095727Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d9p1 + - 20241120T111804Z-1846dc7bb4dhk8jqhC1YVR517n00000003gg000000002anr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1069,23 +1091,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:55:44.961123Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:55:44.961123Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:33.8159344Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:33.8159344Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:30 GMT + - Wed, 20 Nov 2024 11:18:04 GMT etag: - - '"fa002d04-0000-0200-0000-672b3d390000"' + - '"960385ff-0000-0200-0000-673dc52a0000"' expires: - '-1' pragma: @@ -1101,7 +1123,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2E3C5548B51E4B8CAC430199F9F801C2 Ref B: MAA201060514045 Ref C: 2024-11-06T09:57:29Z' + - 'Ref A: A02EECE4376A46EC8F58D65A1ADF4064 Ref B: CO6AA3150219049 Ref C: 2024-11-20T11:18:05Z' status: code: 200 message: OK @@ -1115,32 +1137,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"652f7728-3b5b-4e16-af78-b8cb9db0616c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"121a1ec9-c034-4383-9844-8b182c4b23f6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5bc70a70-86bd-48c8-9b74-9eaf8649a2fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A54Z&ske=2024-11-06T16%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A32Z&sr=b&sp=r&sig=hhWOyTUaY6oyj6KHn6Fl6znyZpx2Co%2FV0M7UbQGsKgM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:57:32.409873Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4acddf86-d4a6-4cfc-983a-025d66d5eed0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A54Z&ske=2024-11-06T16%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A32Z&sr=b&sp=r&sig=w6%2FG4%2BwydHDHJk9fiGzyhdrEVEjA%2BXMCFMytnOp8o%2B8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:57:32.4101693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A54Z&ske=2024-11-06T16%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A32Z&sr=b&sp=r&sig=AtnSwsiCiEMcnQdyX%2FuK89LVb%2FH9jiuMgHzVSA5Cing%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:57:32.4104774Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:56:22.705Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:57:24.812Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"eeb074d9-b4d5-4974-94f8-e885dd0276d2":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e42a45ef-1275-44ab-870f-4cfc265a02b8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f0025afd-72fc-4384-ae5c-401d01aef857":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A05Z&sr=b&sp=r&sig=rYNZ0QL7YeQB3fd42IxdKO21arw68uXa7St9bBwwEzw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:05.6681031Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/442922f6-73de-4843-b696-b5f809da780d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A05Z&sr=b&sp=r&sig=0bpLR8PjODftht6xSwGYY3nLB5vYmsVqmJmNo6hQtB8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:05.6684465Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/aa43750f-6fd5-4b9d-ae17-6a569fd2e70f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A05Z&sr=b&sp=r&sig=Gm1AZXxomMHQe1uKwJhUwD1tb1pg8KfZltcztglo4Jg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:05.6685685Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:06.679Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:18:02.501Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2787' + - '2876' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:32 GMT + - Wed, 20 Nov 2024 11:18:05 GMT mise-correlation-id: - - 75f074a7-adb1-4b64-b774-247bdbab9dbd + - 7c4da600-ce64-4818-8b57-6aa17b3d71a1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095731Z-16bf8d9b4c7hxwq4hC1BOM82c4000000065g00000000yrr8 + - 20241120T111805Z-17b7777dc454b925hC1CO175a400000000m000000000vkwp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1158,23 +1181,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:55:44.961123Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:55:44.961123Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:33.8159344Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:33.8159344Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:34 GMT + - Wed, 20 Nov 2024 11:18:05 GMT etag: - - '"fa002d04-0000-0200-0000-672b3d390000"' + - '"960385ff-0000-0200-0000-673dc52a0000"' expires: - '-1' pragma: @@ -1190,7 +1213,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6DE6DB98BAD94A72B774F991B568F024 Ref B: MAA201060516037 Ref C: 2024-11-06T09:57:34Z' + - 'Ref A: 4537D5788F2B480284E0E7E14000A4AE Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:18:05Z' status: code: 200 message: OK @@ -1204,31 +1227,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview + uri: https://f8e3fca2-cc9f-4f6b-883f-ec2497f007b4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A37Z&sr=b&sp=r&sig=yKYkWX6QIeaTV4tki20fOZo6fR1HTP6SOE1vY6GM3tA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:37.7517726Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4acddf86-d4a6-4cfc-983a-025d66d5eed0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A37Z&sr=b&sp=r&sig=ars9MhqQxeTHhbAArtJxmlEvEO7vgeoggiHj4dL%2FCzM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:07:37.751986Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A37Z&sr=b&sp=r&sig=wA8WK08EzXP2fQXi2IbRd0h0EZlM8opaX4qOxNHZ0qc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:07:37.7522076Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A06Z&sr=b&sp=r&sig=NnVJlgv%2B1dIZQmUPi%2BwrDf5hTmiJEYP%2FC5a71ewW1Tw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:06.5520474Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/442922f6-73de-4843-b696-b5f809da780d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A06Z&sr=b&sp=r&sig=kbdYt8RlabHtBDKg58cdZ6uPOzBifvo163N0w7eqn4g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:28:06.5521422Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/aa43750f-6fd5-4b9d-ae17-6a569fd2e70f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A06Z&sr=b&sp=r&sig=gSKjuGlzlfi81WaxDd1q8hfgEMaldhDAvSq80y%2FhmFc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:06.5522363Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1706' + - '1713' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:57:37 GMT + - Wed, 20 Nov 2024 11:18:06 GMT mise-correlation-id: - - be561f0e-77e6-4969-b50e-4d4486b9b8c3 + - 991b8d9d-80fe-443f-b5ac-2b718cb1ceac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095737Z-16998b5679f2sxr6hC1MAAh77000000005zg00000000aark + - 20241120T111806Z-17b7777dc45rkbd2hC1CO19ac80000000vz000000000ut09 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1246,9 +1270,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.32.3 method: GET - uri: https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A37Z&sr=b&sp=r&sig=yKYkWX6QIeaTV4tki20fOZo6fR1HTP6SOE1vY6GM3tA%3D + uri: https://bnakf3y59u8p12qvqkuav8on.z13.blob.storage.azure.net/34cce35f-536b-4ca6-a5b7-adf53ca033d4/df139767-398c-490e-828b-469528059fb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A07Z&ske=2024-11-20T18%3A17%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A06Z&sr=b&sp=r&sig=NnVJlgv%2B1dIZQmUPi%2BwrDf5hTmiJEYP%2FC5a71ewW1Tw%3D response: body: string: "\r\n", "value": - "78"}, "75b77f5b-5e6e-4c28-99af-fd6027c9c0b5": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "3b30e6fa-03f5-4680-a24c-b70003e122b3": + "78"}, "fe9bcac6-6855-487c-8283-716daaed8018": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "14255047-3fe1-4bd3-b798-06db8ce6e143": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0833ffc5-fe34-42d5-862f-1062406728c9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"75b77f5b-5e6e-4c28-99af-fd6027c9c0b5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3b30e6fa-03f5-4680-a24c-b70003e122b3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"file-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:06.867Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:54:06.867Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"5338e22e-603d-4062-860d-2942bff3ffe7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe9bcac6-6855-487c-8283-716daaed8018":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"14255047-3fe1-4bd3-b798-06db8ce6e143":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"file-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:35.291Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:15:35.291Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1044' + - '1146' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:06 GMT + - Wed, 20 Nov 2024 11:15:35 GMT location: - - https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-03-01-preview + - https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-03-01-preview mise-correlation-id: - - d6304475-f957-4670-b18f-c48e9b5dc727 + - 2da2d8c0-3855-4963-89cd-bb8d0df10e6e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095406Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015az + - 20241120T111535Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002t9e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:07 GMT + - Wed, 20 Nov 2024 11:15:35 GMT mise-correlation-id: - - 216602ad-75da-4f5a-a5e8-a9772ce83a90 + - c19081ac-a78f-4a5e-9c6c-2143f5bbdf05 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095407Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015bc + - 20241120T111535Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002t9p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A08Z&sr=b&sp=r&sig=FEzdqoXRN52qtj%2BZ0AyUBI6DjAmsCoPEWv4fLTBo%2B7g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:04:08.0497255Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/03a0fa4c-94d7-4935-a145-0bbd54092507?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A36Z&sr=b&sp=r&sig=EgN2rJaVffhea781D172mXnON6AjjsObK8e5aGIXymE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:25:36.6044324Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '575' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:08 GMT + - Wed, 20 Nov 2024 11:15:36 GMT location: - - https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - c29deb67-7fd0-4a45-bc75-eb7a7e0fe63a + - a3dc39f7-b9bd-493d-bf5a-8ffaa562cadb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095407Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015bs + - 20241120T111535Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002t9u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A08Z&sr=b&sp=r&sig=FEzdqoXRN52qtj%2BZ0AyUBI6DjAmsCoPEWv4fLTBo%2B7g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:04:08.4273323Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/03a0fa4c-94d7-4935-a145-0bbd54092507?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A36Z&sr=b&sp=r&sig=EgN2rJaVffhea781D172mXnON6AjjsObK8e5aGIXymE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:25:36.7340269Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '575' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:08 GMT + - Wed, 20 Nov 2024 11:15:36 GMT mise-correlation-id: - - 9971acef-2802-4fe1-8411-f32db812151f + - 3bf39a4c-c3af-41cd-af13-af7cda941170 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095408Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015c4 + - 20241120T111536Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002tap x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A09Z&sr=b&sp=r&sig=ODP6EC51PiwagmtT%2BoT1AkSYh1ug5bZqtdiRI1Obn4w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:09.0346918Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/d53fa642-051d-4c0e-af23-41f330017991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A37Z&sr=b&sp=r&sig=TdEP6qRO77GxrZPPT%2BUufqfBbo%2BX%2B%2Buplg6S3%2FtH7iM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:37.0726668Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:09 GMT + - Wed, 20 Nov 2024 11:15:37 GMT location: - - https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - cc19036e-62aa-4b1b-bbec-d14fe2feb250 + - deff155a-8b85-44f6-86ca-bb303fbb32a5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095408Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015cc + - 20241120T111536Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002tav x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,31 +351,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-06T16%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A09Z&sr=b&sp=r&sig=a2xzLEIt%2FJHcU66nb3P7MDL95ws4uhlSaOM%2F2Ncq51A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:09.51967Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/d53fa642-051d-4c0e-af23-41f330017991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A37Z&sr=b&sp=r&sig=5kKWuPnnWb1YdraAiUeBwatme74E29NaQ5V6xVXkDDo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:37.9940823Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:09 GMT + - Wed, 20 Nov 2024 11:15:37 GMT mise-correlation-id: - - cfeb3fad-3429-47ca-9035-c281c0627e1b + - 6543345b-6df0-41f4-a745-60ed280546f9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095409Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015cu + - 20241120T111537Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002tb2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A14Z&sr=b&sp=r&sig=bdEulPVLa3DpBnMSRnjBXCp%2FjznGFlNfVJ6u%2BuwX3y0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:14.9106582Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/d53fa642-051d-4c0e-af23-41f330017991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A43Z&sr=b&sp=r&sig=hX34Uv8w0qhBk3OCC6IpccT8B6RSJsJ4x5eIXjf32%2BQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:43.1271387Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:15 GMT + - Wed, 20 Nov 2024 11:15:43 GMT mise-correlation-id: - - 2301b96d-23fd-4b4e-822b-d248c7557a5a + - a3bf4c7d-a179-4e18-b441-eabec61e086c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095414Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015kd + - 20241120T111543Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002tfe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A20Z&sr=b&sp=r&sig=YrX7Y0%2F5uZue4YjzBjFCDtDs6dok3VDlf%2BI%2FxVoeV2c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:20.2800204Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/d53fa642-051d-4c0e-af23-41f330017991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A48Z&sr=b&sp=r&sig=dLb%2F9udV0trtjDaSmmV72F8GKcZeSIw5IkL%2F5koSOho%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:48.2381497Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:20 GMT + - Wed, 20 Nov 2024 11:15:48 GMT mise-correlation-id: - - 4ce40a94-695c-4637-bb37-e26f4437116a + - 50cd1574-2fb4-4a28-8263-33ac2280951e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095420Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015rr + - 20241120T111548Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002tnr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A25Z&sr=b&sp=r&sig=fGDifBdCVUNrKK9Au66oQdsUfBNt7GAIqOU375OwRZQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:25.6197286Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/d53fa642-051d-4c0e-af23-41f330017991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A53Z&sr=b&sp=r&sig=KY%2BHykleSmIh5jIIGT6Dpjo1qPsv6A84R02mDV0%2FVBI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:53.3491367Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:25 GMT + - Wed, 20 Nov 2024 11:15:53 GMT mise-correlation-id: - - ae003d60-91e5-4478-b9ab-624dedc529d5 + - d430cfca-5f74-4d21-98c2-00ea60ebfd68 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095425Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015vf + - 20241120T111553Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002tt4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,73 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A30Z&sr=b&sp=r&sig=qHmkG8nESrviJ%2BeynNa1vzz2qstmYjETV0aVlesTXyY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:30.9067776Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/d53fa642-051d-4c0e-af23-41f330017991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A58Z&sr=b&sp=r&sig=7WN1%2BsaEf08m%2BpUB08tDunJZK3EeeLNvZve9xZhrABI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:58.4556361Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:31 GMT + - Wed, 20 Nov 2024 11:15:58 GMT mise-correlation-id: - - 2d874859-1148-4ac0-995e-294ba1f42cb8 + - 0ec25168-696c-4038-8133-1590bd8b6036 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095430Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g00000000161m - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A36Z&sr=b&sp=r&sig=yDLFT%2BsEEAit%2F9A5aNNgwM0hbMfUUj%2F%2FOtD%2FppC%2BX8A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:36.2355491Z","validationStatus":"VALIDATION_SUCCESS"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '578' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 06 Nov 2024 09:54:36 GMT - mise-correlation-id: - - 9a4457e7-dde1-4c90-9abc-f181755f09e5 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T095436Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g00000000169u + - 20241120T111558Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002twq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,33 +658,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A37Z&ske=2024-11-07T01%3A54%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A37Z&sr=b&sp=r&sig=qvBQXkJ%2BRgWda5LwgSTuEL5%2FKRVI1KIMyxJgHYz7KxM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:37.930437Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A58Z&ske=2024-11-20T18%3A15%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A58Z&sr=b&sp=r&sig=NRlmX8Mtqh%2FlL9I5Tn2UveQxShnJNSoo3WKguFQaPjg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:25:58.7723549Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '559' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:38 GMT + - Wed, 20 Nov 2024 11:15:58 GMT location: - - https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - c3c65011-3f7a-48c9-be3b-80c8d4571f6c + - 5f883c7d-1168-441b-8b88-52a241c5af2e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095436Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000016a4 + - 20241120T111558Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002twt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +703,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A58Z&sr=b&sp=r&sig=unh0%2FjE3jI36joEfGoMvW3Awoj8HCPqEnynhIZyh6KM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:25:58.8745056Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '557' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:15:58 GMT + mise-correlation-id: + - 28b98318-d411-44d1-98e5-1e291a7be8b6 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111558Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002twz + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A38Z&sr=b&sp=r&sig=4gay84Z9oScHCzEaXyk97fwmvKja9%2FVs1vv8KNXbSVo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:38.3124579Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A03Z&sr=b&sp=r&sig=k9MXHp%2F52ErsYfbo6vyC0y4dKWGYFr5KrfHxDNfdsQo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:03.9861484Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:38 GMT + - Wed, 20 Nov 2024 11:16:03 GMT mise-correlation-id: - - 6bd39fab-138b-4f8f-9c1e-1585c0485335 + - e5e237f3-0f33-43dc-bbf4-4c319f8b37ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095438Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000016d8 + - 20241120T111603Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002u3r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,31 +789,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A43Z&sr=b&sp=r&sig=GYWaSwmvfLeE8J4CEgfuQZsUaswViPkKoAOMFjwTgto%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:43.7359488Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A09Z&sr=b&sp=r&sig=l4xfzWwFHb7YIxvJmDZ3Qh45XtUob8xD5qnx8aMI4oY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:09.1048682Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:43 GMT + - Wed, 20 Nov 2024 11:16:09 GMT mise-correlation-id: - - 6045d4f2-5bca-48aa-8433-1c2e4006f13b + - 6c4767dd-4e1a-4eb5-8e34-1b32cb561106 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095443Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000016n7 + - 20241120T111609Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002u90 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A49Z&sr=b&sp=r&sig=JeYNVYUZ%2BDHBao5zfWXBH%2FG9H8vSvsL4J83ui7th5XE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:49.0532875Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A14Z&sr=b&sp=r&sig=Q%2FFegrM3DJze%2FhD7XNvz9z%2F0VR6Bjx49NDy%2FMOL64Tc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:14.2202609Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:49 GMT + - Wed, 20 Nov 2024 11:16:14 GMT mise-correlation-id: - - d07797d2-51c6-4f2e-8d14-d69a8686f946 + - 0340f6fb-75c2-44cf-8dc8-2075bfcf1a5b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095448Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000016ud + - 20241120T111614Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002ud6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A54Z&sr=b&sp=r&sig=BgQlcmXPZJl6Bcwc6o%2BBoc8GLlOVvTHph7d6zMZ0bfI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:54.3437624Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A58Z&ske=2024-11-20T18%3A15%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A19Z&sr=b&sp=r&sig=%2BnegVZZwH8H7v%2Bn0bJyrXW1xjJpowI5pCkLAQ1nbJSs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:19.3418277Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:54 GMT + - Wed, 20 Nov 2024 11:16:19 GMT mise-correlation-id: - - 1a6d1b51-1e76-46ad-9974-207126666267 + - ba10a46d-2f79-49f0-865f-bc21356dfac9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095454Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g000000001703 + - 20241120T111619Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002um7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A59Z&sr=b&sp=r&sig=h46pL2KGm08HDBvn6jmGqqbAnspxHr7o6%2B5PZD85Iak%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:59.6271363Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A58Z&ske=2024-11-20T18%3A15%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A24Z&sr=b&sp=r&sig=OxjsC9CAvULEoPYXs%2FaWmuMvIaOtu98dynN9Yo%2BIvTU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:24.4532281Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:54:59 GMT + - Wed, 20 Nov 2024 11:16:24 GMT mise-correlation-id: - - 650f9eba-c1d5-410c-865c-1e560e77073e + - eb0587af-eab1-4ff5-b088-4cc253bbfde5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095459Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g00000000175p + - 20241120T111624Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002usa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +961,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A55%3A01Z&ske=2024-11-06T23%3A55%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A04Z&sr=b&sp=r&sig=rXaih51fLYFk1oJAWi8qq6Fe40aVsAnlfYmcGKL3Bgo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:04.9196901Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A29Z&sr=b&sp=r&sig=aaM%2BH0w5KQ6QLuLFCzApMgS09jhNNMtJQJxLsOnKv5Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:29.5623118Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '554' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:05 GMT + - Wed, 20 Nov 2024 11:16:29 GMT mise-correlation-id: - - b68fc0ab-7100-4471-b339-48154ae99969 + - 12e9db49-1e08-4ebf-87cd-1da0320e338b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095504Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000017cc + - 20241120T111629Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002uw0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,32 +1004,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0833ffc5-fe34-42d5-862f-1062406728c9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"75b77f5b-5e6e-4c28-99af-fd6027c9c0b5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3b30e6fa-03f5-4680-a24c-b70003e122b3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A05Z&sr=b&sp=r&sig=yDbnTMYE%2BQ0G5F6ISKxZB6ua%2Bo2KaWE%2F%2FD6EYpSiwF4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:55:05.2080872Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A05Z&sr=b&sp=r&sig=9ylN8heyiTRO9Pp2Z8TPI5vOASS4FfF8xf1cEKSe8z0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:55:05.208608Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A05Z&sr=b&sp=r&sig=%2B7XG0aA8Itic%2BlgmB16B0HKQMWLZU%2F1cYNVumaPD88k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:55:05.2088397Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"file-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:06.867Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:55:01.908Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A34Z&sr=b&sp=r&sig=A5Xc6dB2OEnpSi4cTpQDIvRldo0qCBb1uQQbmD7hvdg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:34.6778971Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2771' + - '553' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:05 GMT + - Wed, 20 Nov 2024 11:16:34 GMT mise-correlation-id: - - e274ed1e-0bf2-47d8-9404-f35c3c7a5c5c + - 8f8ee337-3824-4f7a-b4e3-2567dcb965ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095505Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000017cq + - 20241120T111634Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002uz7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1027,23 +1047,67 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"5338e22e-603d-4062-860d-2942bff3ffe7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe9bcac6-6855-487c-8283-716daaed8018":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"14255047-3fe1-4bd3-b798-06db8ce6e143":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A34Z&sr=b&sp=r&sig=QO3oTzfdQmWe72WGfdOhvavZPHOCT3wbNi9108f5Nmg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:34.7800077Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/03a0fa4c-94d7-4935-a145-0bbd54092507?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A34Z&sr=b&sp=r&sig=6lFLC1Z7BIiU5Q%2BhHwRi%2B6CR3hXuDc7opsXYVNukiSw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:34.7804248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/d53fa642-051d-4c0e-af23-41f330017991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A34Z&sr=b&sp=r&sig=QZ22diE8ZMtgYz12ectGydOFdUsqU%2F9IH%2FbJ38i0iJU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:34.7806235Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"file-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:35.291Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:32.512Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '2865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:16:34 GMT + mise-correlation-id: + - 36d2e8bd-7121-463e-ba42-76349704c345 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111634Z-1846dc7bb4dhk8jqhC1YVR517n00000003g0000000002uz9 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7407233Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7407233Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:06 GMT + - Wed, 20 Nov 2024 11:16:34 GMT etag: - - '"f9009afe-0000-0200-0000-672b3caa0000"' + - '"9603fafe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1057,9 +1121,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: E5CEAC49088D4043B299628238132141 Ref B: MAA201060515017 Ref C: 2024-11-06T09:55:06Z' + - 'Ref A: B97AFFED5FFA44EB921E8ABFF53F31B1 Ref B: CO6AA3150217033 Ref C: 2024-11-20T11:16:35Z' status: code: 200 message: OK @@ -1073,32 +1137,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"0833ffc5-fe34-42d5-862f-1062406728c9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"75b77f5b-5e6e-4c28-99af-fd6027c9c0b5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3b30e6fa-03f5-4680-a24c-b70003e122b3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A09Z&sr=b&sp=r&sig=iydCteXFxNQoTWpeLJi3I7ZbKyClrYFnkeq2mLKgVJg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:55:09.7632762Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A09Z&sr=b&sp=r&sig=VyUoDY7HMS88xXbChSL0Q0HGIS010scHxu1OzjElNzo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:55:09.7636315Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A09Z&sr=b&sp=r&sig=tLR2iElbenLEHRONzO8HDUs8pDd9uzYsfofjeROeiUg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:55:09.7637682Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"file-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:06.867Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:55:01.908Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"5338e22e-603d-4062-860d-2942bff3ffe7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe9bcac6-6855-487c-8283-716daaed8018":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"14255047-3fe1-4bd3-b798-06db8ce6e143":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/539270ed-e47d-462d-af60-9234ac883d35?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A35Z&sr=b&sp=r&sig=Sxi1%2B3ZjCQWh6Vh9nUCo8Z2AswXwSVQdzsssA%2FbAUo8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:35.7280469Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/03a0fa4c-94d7-4935-a145-0bbd54092507?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A35Z&sr=b&sp=r&sig=y6F2qSGpMvOTozcYkySvBlzUxU%2FaZAeECs7J5z0A%2F%2FI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:35.7283194Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/d53fa642-051d-4c0e-af23-41f330017991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A35Z&sr=b&sp=r&sig=824%2BI7KTl4gnsl%2FYSljSlTIUujQHIKXzN6Lhg9DItVQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:35.7284195Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"file-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:35.291Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:32.512Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2770' + - '2883' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:09 GMT + - Wed, 20 Nov 2024 11:16:35 GMT mise-correlation-id: - - 99f35876-d460-44c5-b2df-1e06bca9478d + - 96eb0a07-63df-42e5-987c-5cf5576bbe4c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095509Z-16bf8d9b4c79v4bbhC1BOMgnfn000000069g0000000071g8 + - 20241120T111635Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000b64 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1116,23 +1181,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7407233Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7407233Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:12 GMT + - Wed, 20 Nov 2024 11:16:35 GMT etag: - - '"f9009afe-0000-0200-0000-672b3caa0000"' + - '"9603fafe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1148,7 +1213,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CEF5B41DCAF44CDFA00975FD3ED8436D Ref B: MAA201060516035 Ref C: 2024-11-06T09:55:11Z' + - 'Ref A: B60DAE9946B044429081AFD44E96EEA0 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:16:36Z' status: code: 200 message: OK @@ -1164,25 +1229,26 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: DELETE - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: string: '' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive date: - - Wed, 06 Nov 2024 09:55:14 GMT + - Wed, 20 Nov 2024 11:16:36 GMT mise-correlation-id: - - ed13f3d5-5634-42eb-bdb2-4ea2de0ef0f6 + - 7c4b1dff-74fb-41b7-98d6-af2bf85ee722 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095513Z-16bf8d9b4c7btxwlhC1BOMk7540000000660000000004kgr + - 20241120T111636Z-1846dc7bb4dz5kmbhC1YVRrpen00000003r0000000002uhr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1200,23 +1266,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7407233Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7407233Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:16 GMT + - Wed, 20 Nov 2024 11:16:37 GMT etag: - - '"f9009afe-0000-0200-0000-672b3caa0000"' + - '"9603fafe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1232,7 +1298,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 58F498FC41774B48B325A1DAD8BDD8CC Ref B: MAA201060514049 Ref C: 2024-11-06T09:55:15Z' + - 'Ref A: D5E68DD7C9324187AD6E61D18702BE62 Ref B: CO6AA3150218009 Ref C: 2024-11-20T11:16:37Z' status: code: 200 message: OK @@ -1246,31 +1312,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A37Z&ske=2024-11-07T01%3A54%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A17Z&sr=b&sp=r&sig=zg50fZdS0xZ4zBwHdXh55RldXVY1RYcVAowaEH7eRMI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:05:17.9369031Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A37Z&ske=2024-11-07T01%3A54%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A17Z&sr=b&sp=r&sig=nK22pZUYSRAgG0tFgTvM6LrvwK4blALaAaL84ew3230%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:05:17.9370111Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/03a0fa4c-94d7-4935-a145-0bbd54092507?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A58Z&ske=2024-11-20T18%3A15%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A37Z&sr=b&sp=r&sig=kqj3rG%2B4QKHjGzhAt6l2yVpf0jbg3Y5wAVpqnQ2FcI0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:26:37.8218903Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/d53fa642-051d-4c0e-af23-41f330017991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A58Z&ske=2024-11-20T18%3A15%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A37Z&sr=b&sp=r&sig=mOjP9vLpAt%2Fs%2Fay0vNQV9R9upg6owUL0KavwhdhR3zs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:37.8220143Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1150' + - '1154' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:18 GMT + - Wed, 20 Nov 2024 11:16:37 GMT mise-correlation-id: - - c5e9cc3e-f0a0-43ee-8486-b8a89d5ff6e1 + - dfe12645-fa9e-4e04-9faa-ac69996ce9b1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095517Z-16bf8d9b4c7686pmhC1BOMwzfw00000006hg00000000wsgb + - 20241120T111637Z-r16f5dbf676x7kfghC1YVRdw9g00000003mg000000002c32 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1288,23 +1355,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7407233Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7407233Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:20 GMT + - Wed, 20 Nov 2024 11:16:38 GMT etag: - - '"f9009afe-0000-0200-0000-672b3caa0000"' + - '"9603fafe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1320,7 +1387,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1F785ABCD9D14166B8E516662DFEBAE6 Ref B: MAA201060515021 Ref C: 2024-11-06T09:55:19Z' + - 'Ref A: 9F9CC3450DA94C499B4EA22A4BE65822 Ref B: CO6AA3150219027 Ref C: 2024-11-20T11:16:38Z' status: code: 200 message: OK @@ -1426,33 +1493,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A55%3A01Z&ske=2024-11-06T23%3A55%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A24Z&sr=b&sp=r&sig=Byef0gviph617%2BcaXf8pK7yAiif1eYWRmMhmh3yIdmQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:24.1197532Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/7b6a0b28-63e4-4d4b-8b51-f381715ebde6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A32Z&ske=2024-11-21T01%3A16%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A39Z&sr=b&sp=r&sig=gTmt5lwDz9mL4MytTz0FgSxV2hQUhR9Tb%2BT%2BScqMQgY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:39.3569181Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:24 GMT + - Wed, 20 Nov 2024 11:16:39 GMT location: - - https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 0d638c21-9420-4a63-8157-cf3fffef8cfd + - 46f6576e-2e34-487a-9644-eb3388e08c22 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095522Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nphf + - 20241120T111638Z-r16f5dbf676bctdshC1YVRhn7w00000003yg000000003uay x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1470,73 +1538,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A24Z&sr=b&sp=r&sig=%2FrxEXnyxfqfjhRIgSl663Rv5zQVHhSdxPnemTfAoJMg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:24.398838Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/7b6a0b28-63e4-4d4b-8b51-f381715ebde6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A39Z&sr=b&sp=r&sig=TdmTaDHxPWiHCsBTCN8jy%2Fkjo1vo1%2FUVSkHoKJ66sk8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:39.4760109Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 06 Nov 2024 09:55:24 GMT - mise-correlation-id: - - 37351cb5-9266-4e79-8666-0f5e6838ae9b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T095524Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001npv5 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A29Z&sr=b&sp=r&sig=xsTC2XI7AstgJZC1jU3T4wNeKj0H3Eew2rkPdxxIpRk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:29.7429746Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '556' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:29 GMT + - Wed, 20 Nov 2024 11:16:39 GMT mise-correlation-id: - - a032eb45-8a65-4d87-8282-b9a408d27f6d + - 38e75087-5b48-4715-93df-019761eb8a76 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095529Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nqqq + - 20241120T111639Z-r16f5dbf676bctdshC1YVRhn7w00000003yg000000003ubf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1554,31 +1581,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A35Z&sr=b&sp=r&sig=TWt48Sz2tWh7c%2Fs88NAJVhJUZJCWDJbAJ4w7gwmZz3Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:35.0256188Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/7b6a0b28-63e4-4d4b-8b51-f381715ebde6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A44Z&sr=b&sp=r&sig=3WcenGnLs3CwlST0b4NLuerqqNUePKBSHRzRN2%2B0dPg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:44.5998068Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:35 GMT + - Wed, 20 Nov 2024 11:16:44 GMT mise-correlation-id: - - 14a8a1f3-22f3-4812-a7a4-caaeb9119359 + - 53fad0e7-7fdb-443d-9de8-b8b71f6192e5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095534Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nr99 + - 20241120T111644Z-r16f5dbf676bctdshC1YVRhn7w00000003yg000000003ue0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1596,31 +1624,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A55%3A01Z&ske=2024-11-06T23%3A55%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A40Z&sr=b&sp=r&sig=PBDZwZKI4543waWi3PxaMW5hXSQbX6Gb5idNj8urcPM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:40.3383308Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/7b6a0b28-63e4-4d4b-8b51-f381715ebde6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A58Z&ske=2024-11-20T18%3A15%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A49Z&sr=b&sp=r&sig=Qn67za3lCOXCw3ew6Kul0IHSdF%2BqoWk5RO32%2BInMmW0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:49.7266061Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:40 GMT + - Wed, 20 Nov 2024 11:16:49 GMT mise-correlation-id: - - 4d641433-efb0-461c-9885-3b4feb3fa0ce + - c2abb778-c6f4-4db2-abb5-6176a1a28edb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095540Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nryn + - 20241120T111649Z-r16f5dbf676bctdshC1YVRhn7w00000003yg000000003ugf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1638,31 +1667,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A45Z&sr=b&sp=r&sig=YcWQHGwJzHEbGd8B07haZMl6aGdhMbia4GQCV0VfIqk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:45.6364971Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/7b6a0b28-63e4-4d4b-8b51-f381715ebde6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A58Z&ske=2024-11-20T18%3A15%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A54Z&sr=b&sp=r&sig=mpMYbYCZhvp1%2B4rN61g2HL%2FhWnV19Vdh3p1qZcEmBgc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:54.8501889Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:45 GMT + - Wed, 20 Nov 2024 11:16:54 GMT mise-correlation-id: - - 60abea91-98a0-497b-a02f-bfb13184ce4f + - 68490633-d566-4397-a81a-ac842653157a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095545Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nsmr + - 20241120T111654Z-r16f5dbf676bctdshC1YVRhn7w00000003yg000000003ukc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1680,31 +1710,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A50Z&sr=b&sp=r&sig=2%2B05BYoRncisLhgr8k1aYjUHAtUrEAxK3pQFBqXJ%2FTI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:50.926994Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/7b6a0b28-63e4-4d4b-8b51-f381715ebde6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A59Z&sr=b&sp=r&sig=aNewTzlB1ksCzeaHu3hRJNluKtr6PKTcB40qkMmFGNI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:59.9903067Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '559' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:51 GMT + - Wed, 20 Nov 2024 11:17:00 GMT mise-correlation-id: - - bebd3d47-4677-46c1-a11f-af6c5a56ebd8 + - bd4aadd9-6bf6-45f1-8887-01517829b204 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095550Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nt80 + - 20241120T111659Z-r16f5dbf676bctdshC1YVRhn7w00000003yg000000003upe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1722,31 +1753,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A55%3A01Z&ske=2024-11-06T23%3A55%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A56Z&sr=b&sp=r&sig=WrVil3nobXZsR3mCAeRdDXgSqFBhSKkuQjotfQQxvW4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:56.1964286Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/7b6a0b28-63e4-4d4b-8b51-f381715ebde6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A05Z&sr=b&sp=r&sig=THT0b0xPAXGmoHWFzRarsC9CLrG3XY36ro3iv7tNY3U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:05.1105077Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '554' + - '553' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:55:56 GMT + - Wed, 20 Nov 2024 11:17:05 GMT mise-correlation-id: - - 6d7ee67c-d47c-4769-90b8-e0bc2a4fccb9 + - 0f28bf2e-255f-4599-90e1-e7a99d0c05ca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095556Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001ntxu + - 20241120T111705Z-r16f5dbf676bctdshC1YVRhn7w00000003yg000000003us4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1764,23 +1796,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7407233Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7407233Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:09 GMT + - Wed, 20 Nov 2024 11:17:15 GMT etag: - - '"f9009afe-0000-0200-0000-672b3caa0000"' + - '"9603fafe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1796,7 +1828,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 11F27F9A61DE463CA9546732DF2A5147 Ref B: MAA201060515029 Ref C: 2024-11-06T09:56:08Z' + - 'Ref A: 960C359B33B14C0E84B4A022516C8FD1 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:17:15Z' status: code: 200 message: OK @@ -1810,31 +1842,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A12Z&sr=b&sp=r&sig=o%2Ba%2F0eeaLFtPU59rYXqn0iCsV0acdtflHQ%2BN2O5Hcok%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:06:12.1889963Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A12Z&sr=b&sp=r&sig=3KyzIdd2JdIs5yXTi4%2B08Oft7y6AREe7PRACCm6KUfQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:06:12.1891325Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A12Z&sr=b&sp=r&sig=rECACYtDoW6XM7n4NEAeMGfB%2BCGcjWp3NmxKdQFy%2BPQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:12.1892643Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/7b6a0b28-63e4-4d4b-8b51-f381715ebde6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A16Z&sr=b&sp=r&sig=Q9kSiq%2BwlNMjpYNIwO7Z%2FQXgVwbDrQWMLlBmZEEgTTA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:16.0099145Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/03a0fa4c-94d7-4935-a145-0bbd54092507?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A16Z&sr=b&sp=r&sig=vd3E7eaKBuYgbLxf6QdbhnArBFwRxy54%2Fi3qO21Bn9s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:27:16.0099918Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/d53fa642-051d-4c0e-af23-41f330017991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A36Z&ske=2024-11-20T18%3A15%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A16Z&sr=b&sp=r&sig=HY6cDA8cww3iJ0pJs12zrHn3zi1fUj5lHaTJ99Q8WTA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:16.0100546Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1717' + - '1708' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:12 GMT + - Wed, 20 Nov 2024 11:17:16 GMT mise-correlation-id: - - 78200fbb-2015-48d5-ab73-a481514951e6 + - 8aa1c74e-a934-4103-a6b9-48f795f10931 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095611Z-16bf8d9b4c79v4bbhC1BOMgnfn00000006a0000000002x1g + - 20241120T111715Z-1846dc7bb4dkr9fthC1YVR8qhs00000001u0000000000uuh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1852,23 +1885,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.7407233Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.7407233Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:15 GMT + - Wed, 20 Nov 2024 11:17:17 GMT etag: - - '"f9009afe-0000-0200-0000-672b3caa0000"' + - '"9603fafe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1884,7 +1917,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A6F7A77CD5B8440E9C47DD9179AC3E54 Ref B: MAA201060516025 Ref C: 2024-11-06T09:56:14Z' + - 'Ref A: D955BD3424374ED495EE4B6610C1DF43 Ref B: CO6AA3150219025 Ref C: 2024-11-20T11:17:17Z' status: code: 200 message: OK @@ -1898,31 +1931,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://1c0c41fe-bd12-4a37-8d98-175617275f67.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A18Z&sr=b&sp=r&sig=Bm%2Befses3N7F9cqjYMsg9cX%2FxGTCtltdlARp34Ai%2F6k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:06:18.0738693Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/7b6a0b28-63e4-4d4b-8b51-f381715ebde6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A18Z&sr=b&sp=r&sig=DdTMQkvEaCiMjiKBPalu1%2ByBwWm6k3pZD59BBQNkkrQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:18.07188Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '553' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:56:18 GMT + - Wed, 20 Nov 2024 11:17:18 GMT mise-correlation-id: - - 9a0c65ff-1550-4ef9-a5a6-0b07436a5fd6 + - 31059da7-7825-471a-9212-188bd96d8934 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095617Z-16bf8d9b4c7j768bhC1BOMn2hc00000001gg000000000kmx + - 20241120T111717Z-1789fbbbd78lrwt9hC1PDX9nu00000000gu000000000e48d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1940,9 +1974,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.32.3 method: GET - uri: https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A18Z&sr=b&sp=r&sig=Bm%2Befses3N7F9cqjYMsg9cX%2FxGTCtltdlARp34Ai%2F6k%3D + uri: https://cj33ztmn248dltmh31r40t8a.z5.blob.storage.azure.net/c7f6b4e0-3d02-4763-b121-fb5dc3f89eee/7b6a0b28-63e4-4d4b-8b51-f381715ebde6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A43Z&ske=2024-11-20T18%3A15%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A18Z&sr=b&sp=r&sig=DdTMQkvEaCiMjiKBPalu1%2ByBwWm6k3pZD59BBQNkkrQ%3D response: body: string: "\r\n", "value": - "78"}, "a595f756-02e3-4739-bad3-b39706a10d24": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "268f082f-d403-43ed-a4a8-371f4abfe00a": + "78"}, "1215185b-717b-42fb-9224-8458f9d78d44": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "c7e6231b-d419-423c-a2c2-00a21b88e471": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fd109fdb-92c4-44fd-b9ba-1844b32a2424":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a595f756-02e3-4739-bad3-b39706a10d24":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"268f082f-d403-43ed-a4a8-371f4abfe00a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:27.469Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:58:27.469Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a96a960f-636d-415c-be9f-422c9937a4e5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1215185b-717b-42fb-9224-8458f9d78d44":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c7e6231b-d419-423c-a2c2-00a21b88e471":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:18:22.983Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:18:22.983Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1044' + - '1146' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:27 GMT + - Wed, 20 Nov 2024 11:18:22 GMT location: - - https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-03-01-preview + - https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 9021b289-56fe-4353-be4b-97dfa8b94e12 + - b9b55b92-656f-48d1-8252-b08d618d4749 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095827Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kruz + - 20241120T111822Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000031q4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:27 GMT + - Wed, 20 Nov 2024 11:18:23 GMT mise-correlation-id: - - 12748175-f7e9-401d-ae6b-8e2765d6fabb + - 766ffdac-0fe6-4d01-bbe6-362b8d94f3bd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095827Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000krww + - 20241120T111823Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000031qc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/a6078034-e682-4e21-b1ba-9b5e63842b4c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A28Z&sr=b&sp=r&sig=GmsuvsZMEWCbLoxom1plwMElk2Ehf4NQS9lLCjSwP4E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:08:28.5020321Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/ccc2aa5e-a91c-4734-a0fd-d58e3970da92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A24Z&sr=b&sp=r&sig=MavGAo9jTdxIOX5%2BXiOfPjL9kJDbFV%2Fszh1j8FEV3sE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:28:24.3420571Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '571' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:28 GMT + - Wed, 20 Nov 2024 11:18:24 GMT location: - - https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 426db562-a2e3-4eac-a0a2-b7c586978e00 + - 71869eca-f84c-49dc-b517-c56d6761a31b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095828Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000krxq + - 20241120T111823Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000031qf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/a6078034-e682-4e21-b1ba-9b5e63842b4c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A28Z&sr=b&sp=r&sig=GmsuvsZMEWCbLoxom1plwMElk2Ehf4NQS9lLCjSwP4E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:08:28.8776505Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/ccc2aa5e-a91c-4734-a0fd-d58e3970da92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A24Z&sr=b&sp=r&sig=MavGAo9jTdxIOX5%2BXiOfPjL9kJDbFV%2Fszh1j8FEV3sE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:28:24.4813589Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '571' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:28 GMT + - Wed, 20 Nov 2024 11:18:24 GMT mise-correlation-id: - - 0ba23ee3-3639-477a-9360-55516693ac7c + - 95f72664-9e3e-4e1a-a7c9-be9647a7e084 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095828Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ks0k + - 20241120T111824Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000031rd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,17 +306,18 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A29Z&ske=2024-11-07T01%3A58%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A29Z&sr=b&sp=r&sig=XDOQQI%2FFiCuDvFMePopg92FWN0bFqgoIta5y39cM1RA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:29.5206588Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/a8462f44-4d16-4281-8ebd-5ba41d20252a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A24Z&sr=b&sp=r&sig=k1IeMytiw4ZFE3z%2BllaQlDiAT11iAUlxoaf4RyGC9To%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:24.8076728Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -318,15 +325,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:29 GMT + - Wed, 20 Nov 2024 11:18:24 GMT location: - - https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - b2a06605-3a0d-4630-aad3-a0b904e56ebf + - 3d4506ca-28c1-495b-87b5-614de9c343b1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095829Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ks1k + - 20241120T111824Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000031rk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,17 +351,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A30Z&sr=b&sp=r&sig=CwqlfZHp%2B9PShdJUDOoye6sMbv68RoC3cMEnwzwDvPM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:30.3387842Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/a8462f44-4d16-4281-8ebd-5ba41d20252a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A24Z&sr=b&sp=r&sig=k1IeMytiw4ZFE3z%2BllaQlDiAT11iAUlxoaf4RyGC9To%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:24.9451568Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -362,13 +370,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:30 GMT + - Wed, 20 Nov 2024 11:18:24 GMT mise-correlation-id: - - 05c46c1e-b3fa-4660-9984-98a00a335f22 + - 336f5280-a49f-48f8-bc1a-c4c576176125 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095829Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ks3m + - 20241120T111824Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000031rp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A35Z&sr=b&sp=r&sig=wbYMCwDmYulb7%2B3E80nwwJ2wmTyBI8uCObVH1jfMNe0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:35.6603298Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/a8462f44-4d16-4281-8ebd-5ba41d20252a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A30Z&sr=b&sp=r&sig=Vicjf4Yr0taB%2FMLseDzUxP9fsWoVOfzD3h0WC%2BTZ2Sw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:30.2312417Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:35 GMT + - Wed, 20 Nov 2024 11:18:30 GMT mise-correlation-id: - - 299ff23e-9b52-4a5f-8740-6e825abaa2b0 + - 79f7c315-6574-4d32-8adc-d54ef052dc7f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095835Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ksrd + - 20241120T111829Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000031vk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A40Z&ske=2024-11-06T16%3A58%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A41Z&sr=b&sp=r&sig=FIOxXnYeTTIAxqfWGcq%2BmTEjffxquWOcXm%2FE6BNEYgo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:41.031428Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/a8462f44-4d16-4281-8ebd-5ba41d20252a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A35Z&sr=b&sp=r&sig=8xBbk9wSyt8FiVu%2FwLnMo82R6CMqmbI7wkJtNHlgr00%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:35.347187Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '571' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:41 GMT + - Wed, 20 Nov 2024 11:18:35 GMT mise-correlation-id: - - d2e29aa4-9c9e-44a7-abc1-6ca2655b752b + - 55cde7a2-070a-4056-b7d6-d65dbd80f52f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095840Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ktb7 + - 20241120T111835Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000031yz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A29Z&ske=2024-11-07T01%3A58%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A46Z&sr=b&sp=r&sig=hY4mY58rCnZ517Lno21yZC%2BabekYrHohmrzemLEqFX4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:46.4407188Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/a8462f44-4d16-4281-8ebd-5ba41d20252a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A40Z&sr=b&sp=r&sig=XRsDd9YvVlWT15T%2BFxWTQPMXMmR9gAZ2fmy%2FVKJKRu8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:40.4571484Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:46 GMT + - Wed, 20 Nov 2024 11:18:40 GMT mise-correlation-id: - - 47516480-ea99-46d0-9c8b-605dd7e6d836 + - 982b7e5b-8ce1-4623-8737-fea9d9d41067 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095846Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ktwn + - 20241120T111840Z-r16f5dbf676v2djshC1YVRqhhn00000001ng00000000322e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,31 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A51Z&sr=b&sp=r&sig=1CuO3wl53astfY9NcHu%2FAEPizx90MnuS%2F2MayxdHDHs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:51.7449357Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/a8462f44-4d16-4281-8ebd-5ba41d20252a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A45Z&sr=b&sp=r&sig=ptCPiPmZEE33dFwT3cKZVh6wzx97ebzCxyfZnvh0aOk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:45.7776148Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:51 GMT + - Wed, 20 Nov 2024 11:18:45 GMT mise-correlation-id: - - 3ce571b1-69e4-4dcd-9e06-6d21fc23a1d9 + - ec7e17bc-432a-4a77-803d-a48394cc36a7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095851Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kudp + - 20241120T111845Z-r16f5dbf676v2djshC1YVRqhhn00000001ng00000000325n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -554,31 +566,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A29Z&ske=2024-11-07T01%3A58%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A57Z&sr=b&sp=r&sig=MpsF3mNWGi2w%2B%2F4qbZHVmqpvRbZ84ZDlEYJiSfHi%2F9I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:57.0336984Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/a8462f44-4d16-4281-8ebd-5ba41d20252a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A50Z&sr=b&sp=r&sig=RfY7hquYlF9eXPXk9FH%2BlKLZFs0OuZrxRtKtnSdXn2Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:50.894045Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:57 GMT + - Wed, 20 Nov 2024 11:18:50 GMT mise-correlation-id: - - 7865dec5-2a90-4828-9830-b58a86c2444f + - 99bd7d75-e8eb-4a70-baba-0a87b70b2931 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095856Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kuye + - 20241120T111850Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000032a3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,17 +701,18 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-07T01%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A58Z&sr=b&sp=r&sig=aF4CqM%2FOOtChMZWVxA7sUkUHs%2B4yvgfdbc4uto1Wxsc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:08:58.2816642Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/508ca06f-2a59-45ff-bc87-2797a0f5e4de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A51Z&sr=b&sp=r&sig=w%2Bi%2BKYvNvYbTsSB6CnZM45NuWp6pSEZcP2u6HDQM5Hg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:51.3604805Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -706,15 +720,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:58 GMT + - Wed, 20 Nov 2024 11:18:51 GMT location: - - https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 24d12624-0749-484a-b5f4-511d6a319be0 + - 976c5e0e-75ff-454c-8619-534df751ebd2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095857Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kuzg + - 20241120T111850Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000032a6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +746,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A58Z&sr=b&sp=r&sig=CoUoMshKtuxvH0m3bFnEggA6XtjhgNXLDZtRuEwL0Lo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:08:58.8931557Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/508ca06f-2a59-45ff-bc87-2797a0f5e4de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A51Z&ske=2024-11-20T18%3A18%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A51Z&sr=b&sp=r&sig=2Wc7b8BpqB3r0AvO%2FSedZ1r7uN7%2BF6%2F1HkeffmM6HDk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:51.5000143Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:58 GMT + - Wed, 20 Nov 2024 11:18:51 GMT mise-correlation-id: - - 67d3c6bb-593b-458e-9449-f173b061ca77 + - f40065e7-55d7-4924-ade0-84d61660bc18 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095858Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kv3h + - 20241120T111851Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000032au x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,17 +789,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A04Z&ske=2024-11-06T16%3A59%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A04Z&sr=b&sp=r&sig=qFeoZVBoLM7sT6dP7HCi1PIp0aP4b4ST8YX7FOlBU4U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:04.2188064Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/508ca06f-2a59-45ff-bc87-2797a0f5e4de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A51Z&ske=2024-11-20T18%3A18%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A56Z&sr=b&sp=r&sig=TgLTlUCjHNoG0sEU80g8ByEzvr9CKz0CjOwCYgyw1I8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:56.6215957Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -792,55 +808,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:04 GMT - mise-correlation-id: - - 17d42bc8-f4f7-4fc1-b9af-ab18fa88d7cb - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T095904Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kvn7 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A04Z&ske=2024-11-06T16%3A59%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A09Z&sr=b&sp=r&sig=Yt7caTPAhFOORILrMDjAJEb0ysypjQ2GNZQIyz0%2By9o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:09.5580352Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 06 Nov 2024 09:59:09 GMT + - Wed, 20 Nov 2024 11:18:56 GMT mise-correlation-id: - - f9ad66eb-7b34-4950-8137-3b1e27bd2cda + - c804295e-68dc-4bec-8882-97f296cfac86 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095909Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kw4f + - 20241120T111856Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000032ep x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A14Z&sr=b&sp=r&sig=R6JFUpo3SM039fs4EOltuPCzgp%2B2G4helpEJKb5pMgM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:14.8909585Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/508ca06f-2a59-45ff-bc87-2797a0f5e4de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A01Z&ske=2024-11-20T18%3A19%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A01Z&sr=b&sp=r&sig=QBWCpqoNQIPpqx5MAecZ3pahKEYkE8o9BFAZ4Jb9lgw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:01.8015487Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:14 GMT + - Wed, 20 Nov 2024 11:19:01 GMT mise-correlation-id: - - 1141d26b-89ed-4c09-9ee2-a8ffdbc11ed3 + - 7d1d1651-751f-42b6-9ae8-3ae00f469acf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095914Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kwnw + - 20241120T111901Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000032hy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A20Z&sr=b&sp=r&sig=5JRRKfUyh3b8xNDynVa7qlyjFMDQMtHOys7lq0r5PbA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:20.1715567Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/508ca06f-2a59-45ff-bc87-2797a0f5e4de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A01Z&ske=2024-11-20T18%3A19%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A06Z&sr=b&sp=r&sig=uJvzmfQ%2Br1qAS%2BrhKW0QmZv5PuDM17n6qRxqLaGaPCE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:06.9222075Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:20 GMT + - Wed, 20 Nov 2024 11:19:06 GMT mise-correlation-id: - - e294b14d-fb11-492d-96a4-6ce155d793f5 + - 534e20f0-6d85-4f4f-9405-8fc9f619f641 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095920Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kx68 + - 20241120T111906Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000032p4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-07T01%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A25Z&sr=b&sp=r&sig=NCkNWJrhXqq0zbCbmcNAi1PV8Rgra2Iw9xTKAsDrZ5g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:25.5571396Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/508ca06f-2a59-45ff-bc87-2797a0f5e4de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A12Z&sr=b&sp=r&sig=%2FKRkalVyXtW2vRWyKck6dPkRA235baaUhZ3MvjP1FhM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:12.0434246Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:25 GMT + - Wed, 20 Nov 2024 11:19:12 GMT mise-correlation-id: - - 0e773abc-12b4-4f75-aabe-139817b8e170 + - 75e4aec5-f7d9-4936-8874-dc56e7ae190c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095925Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kxtq + - 20241120T111911Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000032se x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,17 +961,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A30Z&sr=b&sp=r&sig=6TSe9sQZh2l4dzw5N%2Bk6ESJ22ZoAqQc0%2FwbkgXcwDBM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:30.8726159Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/508ca06f-2a59-45ff-bc87-2797a0f5e4de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A51Z&ske=2024-11-20T18%3A18%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A17Z&sr=b&sp=r&sig=RCNbwptk%2BbERlFD9gOPtgr4CaxDMZ6eHUP%2BbD0VE6xQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:17.1595302Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1002,13 +980,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:30 GMT + - Wed, 20 Nov 2024 11:19:17 GMT mise-correlation-id: - - d6e7ff6b-e90f-4061-bc39-29932849e581 + - bcb0355a-3948-488f-a161-80bc0f019b63 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095930Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ky8y + - 20241120T111917Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000032v3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1026,32 +1004,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fd109fdb-92c4-44fd-b9ba-1844b32a2424":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a595f756-02e3-4739-bad3-b39706a10d24":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"268f082f-d403-43ed-a4a8-371f4abfe00a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-07T01%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A31Z&sr=b&sp=r&sig=NRZpPYeeOmmJx3tqm3bqZ%2B%2FW67Cag2pVpl1RvlvJ6HI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:59:31.2043538Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/a6078034-e682-4e21-b1ba-9b5e63842b4c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-07T01%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A31Z&sr=b&sp=r&sig=ngNrWN6ck7lWTAuIXvd6hSs6wO2HxZ6eouxoiWv2VoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:59:31.205083Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-07T01%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A31Z&sr=b&sp=r&sig=yvmbSHorNfp%2Bb%2FyXqFbGxUTFR8jUsTnjz%2BfzGFI0rAE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:59:31.2054125Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:27.469Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:26.179Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a96a960f-636d-415c-be9f-422c9937a4e5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1215185b-717b-42fb-9224-8458f9d78d44":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c7e6231b-d419-423c-a2c2-00a21b88e471":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/508ca06f-2a59-45ff-bc87-2797a0f5e4de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A17Z&sr=b&sp=r&sig=yE08qsmEgJjITgx4KZKa1TI6JFURPMLs2OTHySAObIQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:17.2743486Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/ccc2aa5e-a91c-4734-a0fd-d58e3970da92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A17Z&sr=b&sp=r&sig=lpVSwfJy%2B9%2FdINQGos%2BLTbmlD6v%2B759cDGDa54LT3uY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:17.2755143Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/a8462f44-4d16-4281-8ebd-5ba41d20252a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A24Z&ske=2024-11-20T18%3A18%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A17Z&sr=b&sp=r&sig=iQOIS7Upob1PME15Aq9Qgpy3wJPm%2Ff1oEcbIMknNqMY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:17.2756846Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:18:22.983Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:19:16.148Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2767' + - '2870' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:31 GMT + - Wed, 20 Nov 2024 11:19:17 GMT mise-correlation-id: - - ea87e8be-2055-4cd3-9f4b-64970457834c + - 0e5104c9-922b-4f4f-b632-85582d405f5e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095931Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kya8 + - 20241120T111917Z-r16f5dbf676v2djshC1YVRqhhn00000001ng0000000032v8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1069,23 +1048,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:57:49.8633644Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:57:49.8633644Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:17:50.3947202Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:50.3947202Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:33 GMT + - Wed, 20 Nov 2024 11:19:17 GMT etag: - - '"fa003b08-0000-0200-0000-672b3db50000"' + - '"97037900-0000-0200-0000-673dc5730000"' expires: - '-1' pragma: @@ -1101,7 +1080,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7240A7BFCCD34F72954FAA63F3270662 Ref B: MAA201060516037 Ref C: 2024-11-06T09:59:33Z' + - 'Ref A: 5C515230C2FC415B881AB6B01CF13F26 Ref B: CO6AA3150220035 Ref C: 2024-11-20T11:19:17Z' status: code: 200 message: OK @@ -1115,32 +1094,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"fd109fdb-92c4-44fd-b9ba-1844b32a2424":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a595f756-02e3-4739-bad3-b39706a10d24":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"268f082f-d403-43ed-a4a8-371f4abfe00a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A36Z&sr=b&sp=r&sig=fZ7JuCPjYnBv%2BLc1eK5vDObfAAKhdFTUlf3RvBBfXO8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:59:36.3177353Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/a6078034-e682-4e21-b1ba-9b5e63842b4c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A36Z&sr=b&sp=r&sig=G1Msg4D%2BCO9pZYpCh%2FoKwSLO15Z2xtK8LZhqbdky0zY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:59:36.318134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A36Z&sr=b&sp=r&sig=743hInCPqN8r3VWUGfPIKuha%2FYX6zOPNsD%2Btro%2FN1H0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:59:36.3182991Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:27.469Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:26.179Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"a96a960f-636d-415c-be9f-422c9937a4e5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1215185b-717b-42fb-9224-8458f9d78d44":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c7e6231b-d419-423c-a2c2-00a21b88e471":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/508ca06f-2a59-45ff-bc87-2797a0f5e4de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A16Z&ske=2024-11-21T01%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A18Z&sr=b&sp=r&sig=w44HR4hBJkN31oNX0ET2PFybMKrC3C%2FUki2JIXtvEUU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:18.2797256Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/ccc2aa5e-a91c-4734-a0fd-d58e3970da92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A16Z&ske=2024-11-21T01%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A18Z&sr=b&sp=r&sig=dFd5Vlup5sDEXPNONg4VOJQ%2FUT8gkQlbDoKi0fTVTnY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:18.2800673Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/a8462f44-4d16-4281-8ebd-5ba41d20252a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A16Z&ske=2024-11-21T01%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A18Z&sr=b&sp=r&sig=pyqvCK35pq7ufUkhUD0Glfw9wGfD%2Fp1vTWuUYhKdqF8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:18.2802105Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:18:22.983Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:19:16.148Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2781' + - '2878' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:36 GMT + - Wed, 20 Nov 2024 11:19:18 GMT mise-correlation-id: - - a896e2bf-29fd-4fcf-b4ba-e29efbcec134 + - c50e224d-c34d-4803-a87c-7ac5735dd830 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095935Z-16bf8d9b4c7x9rmfhC1BOM2c9800000006c000000000eeqw + - 20241120T111918Z-1846dc7bb4d86bswhC1YVRhm3s00000003sg00000000651c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1158,23 +1138,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:57:49.8633644Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:57:49.8633644Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:17:50.3947202Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:50.3947202Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:38 GMT + - Wed, 20 Nov 2024 11:19:18 GMT etag: - - '"fa003b08-0000-0200-0000-672b3db50000"' + - '"97037900-0000-0200-0000-673dc5730000"' expires: - '-1' pragma: @@ -1190,7 +1170,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 24EAD1382E9A41EA8ADDB4E223EDF25E Ref B: MAA201060515045 Ref C: 2024-11-06T09:59:38Z' + - 'Ref A: B370402A76804F738A0CB26222842202 Ref B: CO6AA3150218047 Ref C: 2024-11-20T11:19:18Z' status: code: 200 message: OK @@ -1204,32 +1184,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://72dd7fdb-1aa6-435a-9806-f952a28a7f85.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"fd109fdb-92c4-44fd-b9ba-1844b32a2424":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a595f756-02e3-4739-bad3-b39706a10d24":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"268f082f-d403-43ed-a4a8-371f4abfe00a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A41Z&sr=b&sp=r&sig=Lv%2B3rf7wAjhnPRVJjfxvtmYb4UhJeyabEIexKTDDO28%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:59:41.1093918Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/a6078034-e682-4e21-b1ba-9b5e63842b4c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A41Z&sr=b&sp=r&sig=f9a7sbOYM%2B18IuuJ6Ouun82jOXGxAwcREFoPgbBK5FY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:59:41.1096282Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A41Z&sr=b&sp=r&sig=E5MG54otM7claEE98PsoRFz0fIP8Xyt7qWd0MiAGzOU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:59:41.1096926Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:27.469Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:26.179Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"a96a960f-636d-415c-be9f-422c9937a4e5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1215185b-717b-42fb-9224-8458f9d78d44":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c7e6231b-d419-423c-a2c2-00a21b88e471":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/508ca06f-2a59-45ff-bc87-2797a0f5e4de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A01Z&ske=2024-11-20T18%3A19%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A19Z&sr=b&sp=r&sig=3ksTMWVtAplAvOiA2GWGGLkK4bSmmvkpdf3OapMLsmw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:19.1913941Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/ccc2aa5e-a91c-4734-a0fd-d58e3970da92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A01Z&ske=2024-11-20T18%3A19%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A19Z&sr=b&sp=r&sig=uSpzbzLH7Do%2Fto2kUCcBhaQN6K%2Bk%2BdIX6PVktQZJtmA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:19.1916648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://etwha3d1vbipymvf8k6hw8zm.z48.blob.storage.azure.net/5f5ac084-aa4b-4709-b7ea-5fc06aa4121a/a8462f44-4d16-4281-8ebd-5ba41d20252a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A01Z&ske=2024-11-20T18%3A19%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A19Z&sr=b&sp=r&sig=P0ZxgV8zbARjfJsQlzBpo2ENrRVSTfv1Pe86pVWfdp8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:19.1917529Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:18:22.983Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:19:16.148Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2774' + - '2878' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:41 GMT + - Wed, 20 Nov 2024 11:19:19 GMT mise-correlation-id: - - b5d22c6f-58fa-46a7-bb34-33badf1d46db + - 60c93716-71db-4971-823f-bba28dff3481 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095940Z-16bf8d9b4c74rffhhC1BOM0zgn000000064g00000000y6ss + - 20241120T111918Z-1846dc7bb4dv858phC1YVR50x400000003t0000000005979 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_create.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_create.yaml index 943e9820068..ea403e7fd7d 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_create.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_create.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:01:22.9289537Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:22.9289537Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:11.4986955Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:11.4986955Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:59 GMT + - Wed, 20 Nov 2024 11:20:43 GMT etag: - - '"fa002015-0000-0200-0000-672b3e8a0000"' + - '"97037701-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0353FDACA1CD425D9F1B2808EF31A2C7 Ref B: MAA201060514051 Ref C: 2024-11-06T10:01:58Z' + - 'Ref A: 71672779E01A4D11BAE753D0DB6FBA67 Ref B: CO6AA3150220051 Ref C: 2024-11-20T11:20:43Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier create-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:02:02 GMT + - Wed, 20 Nov 2024 11:20:43 GMT mise-correlation-id: - - 9e248c32-d37b-4500-a583-d8e78401fc51 + - e8e3102a-e5a1-4a58-a1e7-2a546f1cdc4c strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100201Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v0ru + - 20241120T112043Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000buh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"30c2ca72-3f0f-4af6-abb9-913513892422": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "f0c5b6b9-a234-46f7-a47f-a85b0aad0f57": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "d1241845-22df-41ed-95ac-972418ce4191": + "78"}, "e4de6cb2-b07f-4769-96c3-e2ec1c71b922": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "e05341e8-2b30-450c-9f9c-45d5d3806a1c": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:02.419Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:02.419Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:20:44.042Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:44.042Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1046' + - '1148' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:02 GMT + - Wed, 20 Nov 2024 11:20:44 GMT location: - - https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-03-01-preview + - https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 5c046141-7a55-4960-83bb-cf73f05bf4c2 + - 3288c12c-6a1c-4576-be27-fb93377ef0d4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100202Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v0ve + - 20241120T112043Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000buy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:02 GMT + - Wed, 20 Nov 2024 11:20:44 GMT mise-correlation-id: - - fa816d2f-4961-4657-9912-5e24a9dfee50 + - fa4b6a98-f4d8-4259-b0d8-ee0f3c7c5e91 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100202Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v0xu + - 20241120T112044Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000bvk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A03Z&sr=b&sp=r&sig=K5tpmNEYDIA%2FiXD7RVZy%2Ff8SvCC%2BXmG7tGDYHVnxBh4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:12:03.4226511Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A45Z&sr=b&sp=r&sig=sEjchtucm3RTf00P84DofQunTXK0EV%2FFc3bmoSLLmlA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:30:45.2691234Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '577' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:03 GMT + - Wed, 20 Nov 2024 11:20:45 GMT location: - - https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 18192ad4-7370-44df-8af7-1545a993c22b + - cb3814ab-1c11-48ef-a78f-43688fe0bfe0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100203Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v0z9 + - 20241120T112044Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000bvr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A03Z&sr=b&sp=r&sig=K5tpmNEYDIA%2FiXD7RVZy%2Ff8SvCC%2BXmG7tGDYHVnxBh4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:12:03.7376492Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A45Z&sr=b&sp=r&sig=sEjchtucm3RTf00P84DofQunTXK0EV%2FFc3bmoSLLmlA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:30:45.3993461Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '577' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:03 GMT + - Wed, 20 Nov 2024 11:20:45 GMT mise-correlation-id: - - 599b3a96-5ece-4687-b9f7-92c42602da52 + - b076b78e-9346-498d-8479-c5b89ccffe6f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100203Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v11t + - 20241120T112045Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000byf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A04Z&sr=b&sp=r&sig=tnbPoRc4pKtOMsMQiHyUZgkVJGXDALrD8e6WwL4PAoU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:04.2735858Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A45Z&sr=b&sp=r&sig=5p4NI3ecG5Qg5Y%2B8VMAYsSLRaK8R1z%2B8onWJBAgsZio%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:45.6296259Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:04 GMT + - Wed, 20 Nov 2024 11:20:45 GMT location: - - https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 4d3bdc87-3631-41b0-8645-f14e4a65412a + - bad1116d-4a94-45ec-8dbb-8e863b8627aa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100203Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v12x + - 20241120T112045Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000bz1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,17 +351,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A04Z&sr=b&sp=r&sig=J9gS7OjONrIlHONSvGkNDjWppclywUjps58waP%2FO%2Bgs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:04.5954888Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A45Z&sr=b&sp=r&sig=5p4NI3ecG5Qg5Y%2B8VMAYsSLRaK8R1z%2B8onWJBAgsZio%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:45.7653913Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -362,13 +370,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:04 GMT + - Wed, 20 Nov 2024 11:20:45 GMT mise-correlation-id: - - cdf296d9-7ab7-4ac3-bcf6-185e58ae80dc + - f2ea2299-9b69-4a59-aa6a-e7a333421176 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100204Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v15r + - 20241120T112045Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000bzg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A09Z&sr=b&sp=r&sig=aeJPa0Oy3L6GZmsSNyG49zck%2FWr08WpSiydCWDmdUsQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:09.8594196Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A50Z&sr=b&sp=r&sig=ktnLJMpCPNQo3%2BMxnAT1Vy43cbLqS4IhJXTT2V1%2B404%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:50.9230589Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:09 GMT + - Wed, 20 Nov 2024 11:20:50 GMT mise-correlation-id: - - b926000b-2ce7-4f8a-a915-d22ceb85a524 + - 7d05b597-6e92-488b-b181-b3804ccef0b6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100209Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v1up + - 20241120T112050Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000c7w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A15Z&sr=b&sp=r&sig=F42y57nCbLye7VWxoBm2FYI9VD5GYcUj2a7kL1pUooA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:15.1406911Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A56Z&ske=2024-11-20T18%3A20%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A56Z&sr=b&sp=r&sig=5DVSZYjg4yhIGoolr6RZWEi%2BZwaFEPpYFzYTMaYdv7c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:56.7693639Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:15 GMT + - Wed, 20 Nov 2024 11:20:56 GMT mise-correlation-id: - - 8cee52a6-9708-4874-a96f-bab1aee6dc85 + - 1d385cb7-9e2e-4168-8441-1e72fbc9cd2b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100215Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v2me + - 20241120T112056Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000ce0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A20Z&sr=b&sp=r&sig=8x26KQbxfPdM1IIjDKAo4NA6S%2BMtldEB4kl5i%2BuG7No%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:20.4538411Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A01Z&sr=b&sp=r&sig=JUplcY6uxfodbavLZ%2BETyaZSf4yooHoSoThyAZJf9o8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:31:01.8659391Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:20 GMT + - Wed, 20 Nov 2024 11:21:01 GMT mise-correlation-id: - - ff46c108-0f75-43ca-922e-4857a1b228e0 + - 3a7b4a90-163d-4779-8266-a3e7f3222073 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100220Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v3d8 + - 20241120T112101Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000cqf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,31 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A25Z&sr=b&sp=r&sig=TCJ%2FcJGyhGqL129FlT%2BpoComK7uyRViUF1HH%2Fr%2B%2B34g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:25.7543641Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A56Z&ske=2024-11-20T18%3A20%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A06Z&sr=b&sp=r&sig=FDz3Lq1iGbW%2FJFI9KMwu1By7h%2FHuHa2xniN7KoFiliU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:31:06.970249Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '576' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:25 GMT + - Wed, 20 Nov 2024 11:21:06 GMT mise-correlation-id: - - 6d953f63-6091-45a9-a9c5-442883ca5117 + - a373eaac-c57d-4340-8cf7-1ff9b185e5cc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100225Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v47k + - 20241120T112106Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000d0r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -646,17 +658,18 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A26Z&sr=b&sp=r&sig=0SLUDFwW681YcBBtjqj7J5geS6kkKs6yC%2B2jYfJnAoo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:26.3565676Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A07Z&sr=b&sp=r&sig=%2F9GwH5lX2AU8Zg6nRm3dcGV5Q9dChyezvNl1w0jHMsc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:07.2076663Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -664,15 +677,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:26 GMT + - Wed, 20 Nov 2024 11:21:07 GMT location: - - https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 11e40489-dfed-4841-bd16-cd6857419ce4 + - ba92d7f0-63a1-41a0-b8ae-90f300f2ae0f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100226Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v49c + - 20241120T112107Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000d0y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -690,31 +703,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A26Z&sr=b&sp=r&sig=gqS2l6%2B4lGEqMFgWmcyg%2BrSH40GuvrpiYR%2BZ%2BWQfzlI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:26.6693451Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A07Z&sr=b&sp=r&sig=%2F9GwH5lX2AU8Zg6nRm3dcGV5Q9dChyezvNl1w0jHMsc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:07.3085792Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '564' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:26 GMT + - Wed, 20 Nov 2024 11:21:07 GMT mise-correlation-id: - - acf311c5-708a-4779-9f5d-d5478b0b835a + - d48b6ef3-6392-478a-9f3e-0623ecc569c7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100226Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v4cg + - 20241120T112107Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000d1s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +746,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A31Z&sr=b&sp=r&sig=Z2jxvotkK3s0XBg1W5Qr6DR0G3FJ%2Fowz%2BhVsg%2BQq3TQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:31.9458832Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A12Z&sr=b&sp=r&sig=seX7pwjzH2GwNbLEwkIWtDVwEIWlpVHRWHZ3VRdNtps%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:12.4104905Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '562' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:32 GMT + - Wed, 20 Nov 2024 11:21:12 GMT mise-correlation-id: - - e8bdc95b-7136-4e3d-a7c5-aecfffd1c7ee + - fad802ee-8f27-4bfe-8a40-ad0362adce19 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100231Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v56b + - 20241120T112112Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000dbv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,17 +789,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A37Z&sr=b&sp=r&sig=TiL%2F47MQVk4PY1jLPpj4rhNEdyemUI5h6xm4aufGWpE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:37.2181146Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A17Z&ske=2024-11-20T18%3A21%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A17Z&sr=b&sp=r&sig=v%2FxEO1tEuxUBHkoBlvbN4pG5U8WsImPyJNg5IVANPdo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:17.5495389Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -792,13 +808,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:37 GMT + - Wed, 20 Nov 2024 11:21:17 GMT mise-correlation-id: - - aff34593-5f6d-46ca-9d33-f8253335e9e2 + - bba30a22-20ce-42e7-a86f-5955ec52bbf0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100237Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v5v9 + - 20241120T112117Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000dnv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A42Z&sr=b&sp=r&sig=we5OWrsUYpf1FLrifB8fEsKH%2FjZij2%2F1HYpe4ZlPvq4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:42.5135462Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A22Z&sr=b&sp=r&sig=NiOODL%2Fbd2jU%2FniBlbRMV6Z36BTByE80lj68rOJ%2Bv90%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:22.6608059Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:42 GMT + - Wed, 20 Nov 2024 11:21:22 GMT mise-correlation-id: - - da4e7449-25fd-4d1d-873b-ea2b7a6e0d8f + - 21a286b1-0c16-4b3b-bf95-721de1acbab5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100242Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v6gk + - 20241120T112122Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000dyh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A47Z&sr=b&sp=r&sig=5uPGQFujhiLJ9Si%2B1hDtP3oNE%2F83n%2BVl2B74T5JpLwQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:47.8318423Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A27Z&sr=b&sp=r&sig=pSlGI%2FJ3gOec%2B3BOVod%2FyBg8baK9bFLG3m6G1%2BCsbDM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:27.7665429Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '562' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:47 GMT + - Wed, 20 Nov 2024 11:21:27 GMT mise-correlation-id: - - c5a1fe42-3f6b-4b28-a492-7d64ddcef06d + - 34de38d8-2c74-4102-a5f7-268923d85660 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100247Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v78t + - 20241120T112127Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000e7h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A53Z&sr=b&sp=r&sig=s9pOw%2FoctJwvTLwxvJkRZ5r2Eifn05zueM3Sjn%2Fs0Tc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:53.2091756Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A32Z&sr=b&sp=r&sig=C7leyIDDL1gdXVutJjd%2F0HMs5GbzqKZT1PDCNFDpbJU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:32.8673902Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:53 GMT + - Wed, 20 Nov 2024 11:21:32 GMT mise-correlation-id: - - b98e73c5-d602-4f7a-aee2-ce87281b6f49 + - 6fa1d9dd-87f9-4c52-b6b8-252c06a22fea strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100253Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v80f + - 20241120T112132Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000ekh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +961,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A58Z&sr=b&sp=r&sig=c12mryo8Cy2deJHWPtx8SbuhEXEaWfR162IgUEybljA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:58.4914109Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A17Z&ske=2024-11-20T18%3A21%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A38Z&sr=b&sp=r&sig=9KD%2FuCxxX1d9pZEAoYtSpSSiS3X7JzezQzEr9KXw7lE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:38.0278113Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '554' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:58 GMT + - Wed, 20 Nov 2024 11:21:38 GMT mise-correlation-id: - - df8dfe42-1baa-4f85-8a0c-b5595903dbeb + - 8312d266-499c-4304-a062-1497c6d478e7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100258Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v8rs + - 20241120T112137Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000exd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,32 +1004,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A58Z&sr=b&sp=r&sig=gj%2FUyMTbTr6sg1aGTpZg6UgkUgW2r4Xw2M5kwqosil4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:02:58.7657987Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A58Z&sr=b&sp=r&sig=ugFB8SCdkzSbM8sz%2BypL71vmH8ejjmyezFCptvcUS38%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:02:58.806326Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A58Z&sr=b&sp=r&sig=bSQoGoHd04iCG8QtVAiPRFpiPiNr71hCNQamE846Ni0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:02:58.806424Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:02.419Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:56.759Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A38Z&sr=b&sp=r&sig=r0PTCz5hA0eu%2FGJaFjpnVGAyirRKZddrSqxmPJwR8T4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:38.1213099Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A38Z&sr=b&sp=r&sig=VtVwTc%2F8znBOhgFhZcdRUfulB%2FEYweg%2Bp1zBXY9l2T4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:38.121724Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A38Z&sr=b&sp=r&sig=0jpcK3qwuDg4UWESDyBNg4vNY67EL0Lrb8f181qV6vQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:38.1218945Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:20:44.042Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:36.565Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2762' + - '2869' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:58 GMT + - Wed, 20 Nov 2024 11:21:38 GMT mise-correlation-id: - - b52dd6c4-474d-4a3b-bff2-2f7d05b15163 + - 5423b6bb-eee3-433c-8548-d8e7967aa10e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100258Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v8st + - 20241120T112138Z-17b7777dc45dj5bhhC1CO1wt8s0000000w60000000000ey0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1027,23 +1048,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:01:22.9289537Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:22.9289537Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:11.4986955Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:11.4986955Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:01 GMT + - Wed, 20 Nov 2024 11:21:37 GMT etag: - - '"fa002015-0000-0200-0000-672b3e8a0000"' + - '"97037701-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -1059,7 +1080,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3F86182FC8FF415EA01FE201A9E942D0 Ref B: MAA201060516045 Ref C: 2024-11-06T10:03:00Z' + - 'Ref A: 412015C3F9E546D888D4B5637E45B944 Ref B: CO6AA3150218019 Ref C: 2024-11-20T11:21:38Z' status: code: 200 message: OK @@ -1073,32 +1094,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A03Z&sr=b&sp=r&sig=GyjTAFdFII2i88UjPxd7pGN68z6pSdSj3POu6E0Pem4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:03.3126107Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A03Z&sr=b&sp=r&sig=8dKnh4%2FqWPna4x9UNhPyPFMpc6W%2FYFP2zOII0om%2FXoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:03.3129242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A03Z&sr=b&sp=r&sig=Ks1K2k62yDpvu9AOc9FDxMWjWOJh1A%2FZBpwMmraIlRo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:03.3130461Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:02.419Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:56.759Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A38Z&sr=b&sp=r&sig=pew2GUiInh8IZ6xxuD%2F%2B0pgMmIJNwBSGKL9Lmx9B58M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:38.9039382Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A38Z&sr=b&sp=r&sig=E%2BRDcs3E82%2FgMHHfR9aikmvO6Za2SvK3jLqEscW8ecg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:38.9041733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A38Z&sr=b&sp=r&sig=ktJprwFUUByIgQhcJ%2FwPqEaDXRnOFf5P2ZqbgBA7wAs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:38.9042389Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:20:44.042Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:36.565Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2780' + - '2884' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:03 GMT + - Wed, 20 Nov 2024 11:21:38 GMT mise-correlation-id: - - 82da35f8-68db-48a5-b401-b532b77bfb80 + - 93276858-35d4-4877-8656-ec583b9479fa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100302Z-16998b5679fgq548hC1MAAaz340000000630000000003kat + - 20241120T112138Z-17b7777dc45v8nvnhC1CO169a00000000w5g00000000pung x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1116,23 +1138,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:01:22.9289537Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:22.9289537Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:11.4986955Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:11.4986955Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:04 GMT + - Wed, 20 Nov 2024 11:21:39 GMT etag: - - '"fa002015-0000-0200-0000-672b3e8a0000"' + - '"97037701-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -1148,7 +1170,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8487F463E68E4310A6E234C08E1DEC10 Ref B: MAA201060513033 Ref C: 2024-11-06T10:03:04Z' + - 'Ref A: E9D5DAC2F7174105BA823F89BBD1846B Ref B: CO6AA3150220021 Ref C: 2024-11-20T11:21:39Z' status: code: 200 message: OK @@ -1162,30 +1184,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with given name \"create-test-run-case\".","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:03:07 GMT + - Wed, 20 Nov 2024 11:21:39 GMT mise-correlation-id: - - 3e609ffe-965f-4239-899e-aa5e6aa7bcbf + - d4a49b24-aaed-420b-a869-e9e4145d7804 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100307Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000f9gt + - 20241120T112139Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000ag3y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1211,31 +1234,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=dnh%2FCtmjO%2B6otIojw0G2uyzteZO%2FGLwDBncE6gQL2AM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.389018Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=EIabpyjY1pBZVh3E%2F6YrPEtIwPzKeVqm8a7EhQ5NWAI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:09.3885606Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=hxYmO%2BJOu8aDP7dwx5yJqGkAN%2BFY7XDUeVjb6FssV3E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.3891426Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=sDpiHVM%2B3n5LdfQ2hmCDOdacCkNMf8%2FI1CmDnsRWLok%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.3893099Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=RDOzVC%2BCuwYupgXsyWZr4w0iNzQaj4qCNIGDHUv8au0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.3894614Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A09Z&se=2024-11-06T11%3A03%3A09Z&sr=c&sp=rl&sig=KZ8Oew%2B0FoHvrw9%2FR8I9hix7qwOjk7gSNQUqg7oID3c%3D","expireDateTime":"2024-11-06T11:03:09.3896248Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"ACCEPTED","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.293Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=R1B3hoEzloL4ttrrbINOD4cS%2BOG4MEu41zRDnX%2FI2F8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.6432093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=QpcieCcnTZ%2F4RI71Y7sQksClFc4zfgxE8uRkbiO24XM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:41.6429579Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=%2BBqjhC5rS9%2Fquky7OORJ2LDXukVnsBs6CzJkK%2FtpDwQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.6433004Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=mJ%2FZ5aon%2Fzr%2FPiUdPrSy3Q%2FUwMP8oIaJ6%2BKA7x6Sz3A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.6433849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=XLow1pexmRE1MqI09gCd8WBUx8ivfnLrVtIusxjOGW0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.6434723Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A41Z&se=2024-11-20T12%3A21%3A41Z&sr=c&sp=rl&sig=I4IZ%2FrEhMqpFp739KEZMmx9c5M%2FJ3gPJLioCwGIjmnw%3D","expireDateTime":"2024-11-20T12:21:41.6435598Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"ACCEPTED","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:41.633Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4919' + - '5026' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:09 GMT + - Wed, 20 Nov 2024 11:21:41 GMT location: - - https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2022-11-01 + - https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2022-11-01 mise-correlation-id: - - f5cf2c1a-9fc7-41b2-b11a-cb513a9c0554 + - 88ef1e05-e61c-4574-b1ae-f3a69ead6c0e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100307Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000f9hd + - 20241120T112139Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000ag4a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1253,31 +1277,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=XPG1XgugPdvYcCay6Mg%2BchROqAcKd4ihU7AzytqMonM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.768137Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=f%2BxlJZTX4WgkdYhnrXAMM9SIU8jwwkrzQyQiXDkX7fU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:41.7676325Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=HsKdhh%2FOpjjGhi3N4II62X6L4rRKzKmEEa0c4vqmN2Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.7684912Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=nE%2BoXnOOvzKu9ybMMDmX1F9xePAnN91b6kiclLPPuSI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.7686888Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=DmPB8W4DhDCCKPwWv1Rc6Ii6CgJ3oTSFE1H4v7iW9GA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.76888Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A41Z&se=2024-11-20T12%3A21%3A41Z&sr=c&sp=rl&sig=PXh0H7aRvl9Yo4l6bdBwOJ4gce4XietExpEZnCxSoNQ%3D","expireDateTime":"2024-11-20T12:21:41.7691151Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"ACCEPTED","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:41.633Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '5005' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:21:41 GMT + mise-correlation-id: + - 49da02c6-4980-48d6-8719-af2ef46fc7a9 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112141Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000ag8v + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=ay2S91Uvf9WUijalG37iUdEr5%2FEq57uClCuP2g8kQ0c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.8499135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=vXe72t2wnR8Fw9AJY8OeHNyDqPFOnZuqdL58Srhv0nM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:09.8494911Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=HmC3d61TEPV5TmQMXv6eBoQoiIDPiTjqcS0z6obI0uM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.8500992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=Nt7pQPijjlvr%2FwuISzqcx4crfrSosW%2FfeNV7EoMRDqI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.8502528Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=vfsQat5kvINrmoTImm0PJYQemQI868bcVeCj2oGHx5g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.8504076Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A09Z&se=2024-11-06T11%3A03%3A09Z&sr=c&sp=rl&sig=jp7qYkKxSD%2FNob0SNu%2FBdCD7nwiaYP6oSaBEdwpnPHo%3D","expireDateTime":"2024-11-06T11:03:09.8505277Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"NOTSTARTED","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.665Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=b2xBN5vKx%2Fo6qrOUPoP8L8pIkYX0yvS%2FSw3vUKnbGW4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.9054334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=UCXQaO%2Bp52zOZD%2FkyBIPyET%2BHQ8STE99jQSWpniox%2Fc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:46.905041Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=1DNUBBjUz8pTzJ%2FYC9HzvHvGR8Gp%2BocE0FujOV1R3AQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.9056025Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=OyQxqntetmFt5crb22WBynAPuWy%2BVdTqLMS6hM8472A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.9075767Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=4coVw3CqCcixuzw6Piv28ziVAwPv4UB4YCFzdtGm42M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.9077513Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A46Z&se=2024-11-20T12%3A21%3A46Z&sr=c&sp=rl&sig=U8yHXBBdO%2BmgDGROhqMumonKc0Y9h6HZpcywx8er7%2Fk%3D","expireDateTime":"2024-11-20T12:21:46.9079065Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:41.957Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4953' + - '5068' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:09 GMT + - Wed, 20 Nov 2024 11:21:46 GMT mise-correlation-id: - - 9f58bd1d-85a6-4247-a1de-819ee975e405 + - 0bbed305-c671-466c-b818-0a12d5ba4fa7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100309Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000f9m0 + - 20241120T112146Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000agm2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1295,31 +1363,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=BlvfNIaROAvwXGQZ2u6B7Eoq5Xryr160ogCe8M9TKcY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.1541568Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=uV%2FNFbbK6o9ooFnY2QQQkGWmOf15h1Uin6S8aQn2%2BMU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:15.1534584Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=WjpUJ2gkBsu5aOUqIHT1%2FNnYB%2BLZrmDciJG9uhcDKoE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.1543771Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=6G%2F351NvfMxqpZ28v5xG6ViG0DnuGK06jf2lvKG2fBg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.154591Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=%2Bk4dUbXboUr%2FpJVgkTyXyz5IvggVbWY%2BNHwj8uBQhZQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.1548201Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A15Z&se=2024-11-06T11%3A03%3A15Z&sr=c&sp=rl&sig=dr0YtZCf4z5x0WLxUjCR7NYhU5mowx7iNxJCcPmoUEo%3D","expireDateTime":"2024-11-06T11:03:15.1550302Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=7NV0q2yd3YPTbhaNnWKC3z7VwFWkkQyLk740soW2f4o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.0167711Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=NqdN9C5x3KlZDvJeav2yXyZqwXFOXYUSzhV%2FrQ%2Bj2PE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:52.0164416Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=mNqEqhpYTS9Tb9Coy%2FAEcq6OKhHlzwka%2BCPlMAOkZTM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.0168711Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=BHg%2BRV74IRM7IXYumDCPue03iHN4JsxQB38Hzu6sldc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.0170336Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=xPmQAKsjQzIg9Zbi5kfYaF8i%2BKBdavqOB6HN3jMXfC8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.0175986Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A52Z&se=2024-11-20T12%3A21%3A52Z&sr=c&sp=rl&sig=3gurGDDodHlZh6wRM5JCp7SSXl%2FZTOY40KqEbKzumlY%3D","expireDateTime":"2024-11-20T12:21:52.0176931Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:41.957Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4960' + - '5061' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:15 GMT + - Wed, 20 Nov 2024 11:21:52 GMT mise-correlation-id: - - 43bf73cb-06b0-4d6f-a05f-f556f0858f76 + - b48a134d-c012-4cb4-b778-608853de9396 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100314Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000f9sd + - 20241120T112151Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000agxn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1337,31 +1406,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A20Z&sr=b&sp=r&sig=IZM6paodiBbTv7Cv1CKrSNw%2BxuLx04xLrPeePaW65Ls%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:20.471408Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A20Z&sr=b&sp=r&sig=EfJk2qLqkW1L99rCqJBm%2BeBHr1NSlbGtgnEePTPvzzE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:20.4708489Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A20Z&sr=b&sp=r&sig=2hA55ASwm%2B8XZ3zmiRQfkwoMIYIVfdz73gbQcfD4zDQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:20.4716202Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A20Z&sr=b&sp=r&sig=xUHahfbAdFqFFhPyZZ6%2Fur%2FCZF%2FCa1PnjuyDikjUwVU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:20.4718399Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A20Z&sr=b&sp=r&sig=Qr%2BJTF%2B54qIwDfsMWG0K5fDVeZM0JWMwN5AVTbrCYR8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:20.4720477Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A20Z&se=2024-11-06T11%3A03%3A20Z&sr=c&sp=rl&sig=VX7tvRIa4rOR5KwvRDU8LYt78tv6OHs8wHMERhwN27M%3D","expireDateTime":"2024-11-06T11:03:20.4722302Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=7GTxMf%2BDZYSMiYoik%2FsCkMDVP6kwV3ZRAm%2B6CEfx09M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.1554754Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=jUSsAWzLe1w4%2FnHy16IET7uI726kBWA8Tq6ltHsYjF8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:57.1549366Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=Ruj85S29xaZOwjGQbxitgE4qHA%2BkwgpvnuGGOQInHnU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.1556991Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=Q1TfBRsjQUjTKhGeaR4PAe%2Bm26XhV%2BP73nvM%2FFcHntg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.1559318Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=nB1OOKkLj9Z4MAvQhWpjGPD362cN9PX%2B54TZ9XH%2BAZs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.1561511Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A57Z&se=2024-11-20T12%3A21%3A57Z&sr=c&sp=rl&sig=UWqpNAKz2EjA%2F9PT01QHLfk%2FQo%2FlzQoHoQctVK%2B1jew%3D","expireDateTime":"2024-11-20T12:21:57.1563756Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:41.957Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4960' + - '5075' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:20 GMT + - Wed, 20 Nov 2024 11:21:57 GMT mise-correlation-id: - - cbb758df-d0f5-4ec5-ab34-84bbd30e5eae + - ab0effed-ca9f-4f9e-9c95-4a4e69d268cc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100320Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000f9y9 + - 20241120T112157Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000ah78 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1379,31 +1449,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A25Z&sr=b&sp=r&sig=2ceLJJ1vcRk8rPJWN6AfG5jwmt%2BzlGXYdDV4R0NMMrw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:25.7889664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A25Z&sr=b&sp=r&sig=kY1X1P8%2Fva%2FP6jAGRza9wFapiveAGuu%2F0VQaju8H1Lk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:25.7886262Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A25Z&sr=b&sp=r&sig=00bY4wWGt74ImKeEpE4Wqz7zauTJ1T%2F1H%2FD%2BxXB9VEQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:25.7890652Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A25Z&sr=b&sp=r&sig=Y5B6FrHW%2BXoodtuVismrFLGpA1FSxrECif3JR8%2BQ6ok%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:25.7891633Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A25Z&sr=b&sp=r&sig=guz4kWcv9ahTliwcPCO3oSnN0%2BpWXfMgylobwVwpkTw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:25.7892584Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A25Z&se=2024-11-06T11%3A03%3A25Z&sr=c&sp=rl&sig=rn0ZkoVoL4udn9TBalhlLGXWdnzHvlEowAjV6AvsOCA%3D","expireDateTime":"2024-11-06T11:03:25.7893521Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=sdaXlhEM8ePPJBW6n9e15pxNRsgnXbH2NCb8qVq8lgk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.2585136Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=pEkcEeStxsRw4n3J0cJl8Z%2FKvFfFYNn4EphJHCaQBIE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:02.2582402Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=9YNYoTPH1FhoDKWV5Doj%2BXk6uHIlwiQusO8cIs2FvKE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.2585968Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=1QjIFpWBrh3RxWHA39swmg3R9lOyEaBNtjks5MAhYVk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.258688Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=enfhc9tx9VOkukdPae7Pjy3QFwtKUgqwXJhefx5OGgo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.2587774Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A02Z&se=2024-11-20T12%3A22%3A02Z&sr=c&sp=rl&sig=jIaawxVQ7RfxVjXT1IeBWU2hKYsR741cnjQNOP%2FxhVA%3D","expireDateTime":"2024-11-20T12:22:02.2588649Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:41.957Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4965' + - '5052' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:25 GMT + - Wed, 20 Nov 2024 11:22:02 GMT mise-correlation-id: - - f6bb1e15-fd94-435c-a4c5-855fecbe5717 + - 7c61bbd2-55e3-47e3-993e-22c970505893 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100325Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fa3a + - 20241120T112202Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000ahh1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1421,31 +1492,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A31Z&sr=b&sp=r&sig=d1H3%2BmRDHymc2hQXAOuo4b9eIuPjFnARFTipg1aL2PY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:31.1262414Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A31Z&sr=b&sp=r&sig=krGbxV0coUROAXL%2BsP6oTyQc4pGKEjtBfvsFiGT%2FuDA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:31.1257261Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A31Z&sr=b&sp=r&sig=%2B%2FWNOIBvqbs0iz2V%2Fh%2FjzHID2aemXTxeH5DiTwo%2B6S4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:31.1264345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A31Z&sr=b&sp=r&sig=9JOV3IVxWzwlZS0SGLwSl7593a9Pb8gXGMeCTeb1QMI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:31.1266484Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A31Z&sr=b&sp=r&sig=Ql7l8dhJg1cf4%2F9jejTrEJr2STW5fui6TQApTF44mWg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:31.1268374Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A31Z&se=2024-11-06T11%3A03%3A31Z&sr=c&sp=rl&sig=SYuZsUHeo1Wn3VSp57suEYiqy4Nf9hUJdkDedwlyM9w%3D","expireDateTime":"2024-11-06T11:03:31.1270175Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=9xliBtunLRylny5vKlsN6uehPlyfZyPaXzyRoFd8HDU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.3899135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=s1Ik9P%2FF8BpRWzSCQMmBfK%2B4SJhVoMOk6DQXQlr9uXg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:07.3890659Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=55t7bZEhVdADXiTHdRIqSRlG7pFtG36cZq7gWhyKqM8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.3902276Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=4FJxAqPd%2B7FuDNZFGJarillLiwlF7GpendXI%2BTIOiTY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.3905637Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=8UmMphZ0IMPJfZVPbGZVuwiCe5OmsTzkmZTUOI09BYA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.3908733Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A07Z&se=2024-11-20T12%3A22%3A07Z&sr=c&sp=rl&sig=3cHkOfFujTqlHWieqynI8eTYd9H49Fk0fxONSBBX%2FVo%3D","expireDateTime":"2024-11-20T12:22:07.3911895Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:41.957Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4963' + - '5057' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:31 GMT + - Wed, 20 Nov 2024 11:22:07 GMT mise-correlation-id: - - dcf4c258-abc3-46f4-bacd-7d699e561f69 + - 06c557b2-a082-4ba6-87ce-f2723a26808f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100330Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fa94 + - 20241120T112207Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000ahx0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1463,31 +1535,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A36Z&sr=b&sp=r&sig=W4MIO8j5XCClAc7jqgF0UCMeIR9pTD0zsDV7kUjMo34%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:36.4498913Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A36Z&sr=b&sp=r&sig=1C0AL35txoQxYVx7d8w2xrqdwygxJXnee9%2F8xcxtK%2Bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:36.4494664Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A36Z&sr=b&sp=r&sig=jDJn4CSW45p7AoagnFGUeeb7h4wJrvqYEQTKqUQIt4Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:36.450068Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A36Z&sr=b&sp=r&sig=MNn1uCcIPS%2FkVs%2F6jRk%2FAenIMhtOjBhjqdwMJMOSB58%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:36.4502672Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A36Z&sr=b&sp=r&sig=oOFUrchbMVg1OjtHUGeACRO1SGUvPY5%2BqguQipEgPJ4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:36.4504476Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A36Z&se=2024-11-06T11%3A03%3A36Z&sr=c&sp=rl&sig=OUVYgsQJzBRtEz6vAmXDKsnYxwYHMf4FBMq1kKeCAKg%3D","expireDateTime":"2024-11-06T11:03:36.450615Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=2H8iF3NgwUTm2yG3%2FAFB753s6Di3um%2BjcuXhc5QVFak%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.5048905Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=WiswmhiciaSfsEK2qeFX2B0elmTj%2F7gYApSZmJOMVXw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:12.5045166Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=CG%2F%2Ff2ZJnnYs5DLufg2qyx3ZBox7SDQlX7eXBLGpXp0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.5050125Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=nbJOqMruSrOmLzBex%2FrjVJ1JXMbG8cKXOIjm6ZXXJlE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.5051576Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=Elt7E9Od1VT748V5hbwoCNjcIletjN6QZPjFN9Tv5Ek%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.5052988Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A12Z&se=2024-11-20T12%3A22%3A12Z&sr=c&sp=rl&sig=Dyec%2BsxGMME94elehZebWkQNXbmzNgN62JxkyrxgGHQ%3D","expireDateTime":"2024-11-20T12:22:12.5054429Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:41.957Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4955' + - '5061' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:36 GMT + - Wed, 20 Nov 2024 11:22:12 GMT mise-correlation-id: - - 9547bf94-fc2c-4a0c-8881-6dfa005e677e + - 612c06ee-959a-4818-a9b7-9e68a1e8c9a3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100336Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fag5 + - 20241120T112212Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000ak5x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1505,31 +1578,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A42Z&sr=b&sp=r&sig=jXXICmyKIy2Yum3jlbN4l2J25eJgaFlRJKEwVQjorWI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:42.0058461Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A42Z&sr=b&sp=r&sig=Fi5rNAmUP4c%2B%2FFtayt4mn%2Bn6ozNb7NLH7AAXeP%2BL5ck%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:42.005587Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A42Z&sr=b&sp=r&sig=QtlvMwhS388HUSMQQxU5VHadYychWaSNUBlCskDKYzY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:42.0059471Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A42Z&sr=b&sp=r&sig=FDRUOv8nZrqmg2SnW0q8r0x%2BzHRZ05QS12Cq0GeqSuo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:42.0060376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A42Z&sr=b&sp=r&sig=Sz8xw4FL9fueCwasAHQTfQV3qBjr%2B%2FXNHYOZz41D5dg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:42.0061256Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A42Z&se=2024-11-06T11%3A03%3A42Z&sr=c&sp=rl&sig=KWwSLJz0kqpSHsjOiAu%2Fip%2BlEN046joOIKyrBhuEMOk%3D","expireDateTime":"2024-11-06T11:03:42.0062193Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=XHWNe6L8seng6g%2Bj6yB1N0ELow9yocWUsgXFRlHlRGU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.6080831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=KQmbS9I4c5J9WVJkpglYp0HmzBLU0WVbMuGixjQZz8c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:17.6075867Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=XEOSb6h3rajJccbeCKHKfjgiCKGe0ksVCl4F9xFho2A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.6082985Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=gn4TUgHUxY%2BybRo%2BAjEE9nyWFKP4V%2BRSl9uC%2Fcjr1jA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.6085174Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=i3xF5UHrjwIETV1WHTjxJvsccQ7jbDE%2BbzgTtIUyg%2B0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.6087275Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A17Z&se=2024-11-20T12%3A22%3A17Z&sr=c&sp=rl&sig=Uij4UnV65IrUlBU18bGFWyoTq9hXqMbdJt6JShM5rBI%3D","expireDateTime":"2024-11-20T12:22:17.6089229Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:41.957Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4962' + - '5061' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:42 GMT + - Wed, 20 Nov 2024 11:22:17 GMT mise-correlation-id: - - e4b5d3da-9424-4d46-b968-27a05226f334 + - 25a224a3-85aa-4b47-862d-718787fac015 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100341Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000farn + - 20241120T112217Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000akf9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1547,31 +1621,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A47Z&sr=b&sp=r&sig=H7VOXXCzJ0jnj4MhbNh22ppacqbxUHomegjDB4i9En4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:47.3540167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A47Z&sr=b&sp=r&sig=v8JdLp5fpAz39q%2B8UPViEV%2FBJnqxYQTbkpm7MXc6PiI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:47.3537139Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A47Z&sr=b&sp=r&sig=CrGQokfpAGPPNkI0sMEMP0GwvBc1jkuRhFCUEahs%2F%2BE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:47.3541324Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A47Z&sr=b&sp=r&sig=v6dtIq6PtiLoLao7EI0gvabffyfTcLyOrBWr09pMtIA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:47.354231Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A47Z&sr=b&sp=r&sig=%2B8sn2YB78EzU%2F02sriJJPY%2F%2BIalOz12DCNLJ%2BlkhP34%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:47.354323Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A47Z&se=2024-11-06T11%3A03%3A47Z&sr=c&sp=rl&sig=SSdSrSompLmdYCm2StyxdpalA6OviKnoyBIfFttUV1o%3D","expireDateTime":"2024-11-06T11:03:47.3544109Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=LvVLgGANi5fbo1wJRdlEJkq4dn%2FdNhdOyBJt7hXDjuo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.7126201Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=RxVBiprfDuNUYK2zCZHg1mxCyaC%2Fk%2BiWUvDPldzBKGc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:22.7123503Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=9Z3bzg7dOQ83K0nb5r3oxNupAWXqqX31uRIXu0ssRnE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.7127207Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=9LOP%2BZ5UzPIzAoNoODlccxjyNIFFqqJ28t6QPuINFzY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.7128114Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=SEmzJRESCPTUDNlq6vv3K7oSnDI0E8VVleVjoiv%2FveU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.7129026Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A22Z&se=2024-11-20T12%3A22%3A22Z&sr=c&sp=rl&sig=2ORTgRz%2BcXTGnKSviY0mpG72NSXKMIBOLeER6Ca8yHM%3D","expireDateTime":"2024-11-20T12:22:22.7129896Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:41.957Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4961' + - '5059' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:47 GMT + - Wed, 20 Nov 2024 11:22:22 GMT mise-correlation-id: - - 06b91d9b-f5c6-4847-81a2-f25ee62ab6a2 + - bc152aae-1327-45a9-b368-cc27394f435b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100347Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fawn + - 20241120T112222Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000akyc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1589,31 +1664,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A52Z&sr=b&sp=r&sig=%2Fab6h0X03RwYuQqWtGlsigGS0ksHUA8VHWnn7%2ByByQM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:52.6530891Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A52Z&sr=b&sp=r&sig=42nqmUzbvHIhvI0fLApUGautN5WhbyGTa20QAlpxZ%2Fo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:52.652661Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A52Z&sr=b&sp=r&sig=c5xnlGQC53J0hw5g7sNdhaX25PnSY3vxjhHxqPmFL%2FQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:52.6531663Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A52Z&sr=b&sp=r&sig=72Bn2ekbJ5lvuYfwsiGqYxwGJzJIqSH1oCavNDmPCQU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:52.6532433Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A52Z&sr=b&sp=r&sig=b0sLmAJ2vEwbp7IVEbLp8Z%2FsR5OedwvyYDUYq9Gad9k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:52.653329Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A52Z&se=2024-11-06T11%3A03%3A52Z&sr=c&sp=rl&sig=qZPmFqD3c5ZI8N9qM%2B3Jc7Gsm9k7fzuFJ6OA8i%2BBf%2Fg%3D","expireDateTime":"2024-11-06T11:03:52.6534029Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"CONFIGURING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:49.167Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=R%2Fo9Vv1VBfydXBEspYInIEBsb2%2Bi4HCM8R3sZtvJBG4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.8563561Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=RDaaPCNDQ7PtTHSNTRxOIx4%2BxKfS6aw2by02S695QQo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:27.8558477Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=h0FQ2RzDB4FW%2FOECZCjYn%2BIFiPbtkJUge8FoVvEQE9U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.8565601Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=ZeSTo%2Bk3jLXo7JPLeDNWDi9JHEgQbIWI%2FrLnaRsul58%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.8567407Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=fRbghu%2F78ADKWZUsDWMQgY1qC%2FKKGrtCfrpfb9XJnDs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.8568659Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A27Z&se=2024-11-20T12%3A22%3A27Z&sr=c&sp=rl&sig=mCadbyCO5YMlMSYM7siV1OvljkhhSp8FkppdBATC83E%3D","expireDateTime":"2024-11-20T12:22:27.8570342Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"CONFIGURING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:27.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4958' + - '5064' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:52 GMT + - Wed, 20 Nov 2024 11:22:27 GMT mise-correlation-id: - - 6b79cec5-4792-4229-8a52-592e21546479 + - 1492ad6b-bb3c-43ad-9df3-589c2f76bf00 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100352Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fb47 + - 20241120T112227Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000am8x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1631,31 +1707,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A58Z&sr=b&sp=r&sig=CEbYXoLx69DW6uzTE6DHWnWknC7ewxfti3DmQtgMUPU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:58.0098387Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A58Z&sr=b&sp=r&sig=Y5%2FzRIjXKfgiP%2FLR5tEu6d%2BPjM2koNJs2f852g4HPfc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:58.0093423Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A58Z&sr=b&sp=r&sig=mlu9hutlrpYV2%2B%2Bv2wgpA94XHQS7b1wPSqroNx7KKIQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:58.0100388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A58Z&sr=b&sp=r&sig=R0ArELagvgWTGmwu2gUsFnOgvPJJIlgDIP%2BXS5hTNno%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:58.0102186Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A58Z&sr=b&sp=r&sig=w6JvIvUnWvSj6vBumPWxVViTTWSOG3AH3rauBWDtd3U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:58.0104119Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A58Z&se=2024-11-06T11%3A03%3A58Z&sr=c&sp=rl&sig=%2Bnr4HvyePocBz0YNifbX54DrbNg%2BMoOmBN1LBoE5%2Fd0%3D","expireDateTime":"2024-11-06T11:03:58.0105885Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=txgDt1GG1ldaLhu0viwbqVMuEONcIwA5PVExfG9%2F6ok%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.2569641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=82izE7dxB7BGqJXE1xHYllcEkhpVo8tOcnBflcp8cT8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:33.256741Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=Kpd4tQy8cTM5ZKYAr5VZ9sIv7XunKFvH3rwvtobwob8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.25709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=LG3V%2FYKBoPH4nhugHoR270LhbkhiiXEsRclW5hsh%2Fjs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.2574124Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=djB1K%2B8amX7OqwVdJgZYn0O1WFeWx4u%2FFVPN2%2B%2BOnMg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.2575017Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A33Z&se=2024-11-20T12%3A22%3A33Z&sr=c&sp=rl&sig=WKN2EIzvGu9HLFnfeOGoAOs40a03GXj7G2FnJUIavwk%3D","expireDateTime":"2024-11-20T12:22:33.257599Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4960' + - '5054' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:58 GMT + - Wed, 20 Nov 2024 11:22:33 GMT mise-correlation-id: - - 7120a968-5701-4d28-a2ea-b8b7a8ae9083 + - a6e059f0-21f8-41ab-a07d-8a8be6a9d5d7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100357Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fba9 + - 20241120T112232Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000ammm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1673,31 +1750,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A04Z&sr=b&sp=r&sig=xXZjrzmrVxgYq3Qx0pw0oBKHh23%2BJCGTFtZ5hgCTUig%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:04.0657934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A04Z&sr=b&sp=r&sig=Yc8T8qyRMP43zTRutB1BCCcIeZuYTrw8v5RUHxmprKg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:04.0640824Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A04Z&sr=b&sp=r&sig=Og6eD5Qk%2B7ShohopHvzMrLJOCpBELOPC5pPGh7aRtW8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:04.0661697Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A04Z&sr=b&sp=r&sig=mbyzb1%2BLy%2Bd0j2MjMOarYifZOkN9cPSPlKUZ87BHe9A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:04.0664922Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A04Z&sr=b&sp=r&sig=UgZmzzG32%2BuFlCs8KmZDii2HAaKYom7g40C5KXOI04c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:04.0668534Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A04Z&se=2024-11-06T11%3A04%3A04Z&sr=c&sp=rl&sig=B%2B2D8Go6JWFRIe5pOjUhfGiuDvf7WGgeXKdkJjC1Q80%3D","expireDateTime":"2024-11-06T11:04:04.0670715Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=LcGhvFGN88foD2JyMrX%2FpaqX23A0vNJXQQA8Ygetrjo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.3654679Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=GA%2B4%2Fv7%2Fw9JDxSHctMptnVXXVB%2BGUpjVukj8gcsKZsc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:38.365043Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=DXHJiUV0xj3rafmc8hRudivOJwu5KWSTuLuLeARY6tk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.365638Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=4AVWvxEAdXv%2Ft5VmbLRdDKy49gPckVjt5j2hVfZHjxo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.3658059Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=OdvNj0wIZI6iCJh0%2FaqoQQpqdopVXy4nP7D00AFEDio%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.3659768Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A38Z&se=2024-11-20T12%3A22%3A38Z&sr=c&sp=rl&sig=O1hAY5jGu4TZKrJyfQyip%2BoDD7pH1zHtNwc3v20Agr0%3D","expireDateTime":"2024-11-20T12:22:38.3661395Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4954' + - '5058' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:04 GMT + - Wed, 20 Nov 2024 11:22:38 GMT mise-correlation-id: - - 4cd1741a-ff0c-441d-9c18-9869e217cb59 + - 4797703e-7c9d-424b-b96d-52ef48554326 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100403Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fbfq + - 20241120T112238Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000amyt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1715,31 +1793,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A09Z&sr=b&sp=r&sig=7tm1bHA7gET9nfAQXTsgAuWHKQEAqvaPC4tIyCV5TO8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:09.3832977Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A09Z&sr=b&sp=r&sig=%2BshX5EPND1aXV%2BYG12LnTwNijEuPjA7r5q%2F4nv%2BLG3M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:09.3829965Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A09Z&sr=b&sp=r&sig=EKRuCQvJerV7hb%2BScXwE0mVi310zveAnRn4kdCjItqA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:09.3833901Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A09Z&sr=b&sp=r&sig=C%2BIoHt4LzBE1X%2F6lYI7HasVf7CrP4CcxVOZov2Z%2BfYk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:09.3834797Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A09Z&sr=b&sp=r&sig=ifwo3n8CcOh7PcHRr4Vp5WcdNOstWtVXON6BSpVL%2Fr8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:09.3835702Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A09Z&se=2024-11-06T11%3A04%3A09Z&sr=c&sp=rl&sig=l4kmrHVCKoz3DyF6EiuhN%2BHLabMHNHjaTjHWBbUVoko%3D","expireDateTime":"2024-11-06T11:04:09.3836668Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=72YBNNMJvdUKEbozRqb5ST%2FYaKbqTyrRplSoOEVO3uQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.4774599Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=gbXiFJ%2BK1JcYt1dphasFqDwqQZj7UbdEoxAk5BQmG9Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:43.476997Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=WwJ6BblKWFj2oDlsiy1%2BmlTN5PdJR5sqrOkGaA0fJlQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.4776503Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=%2B5qOKG1eDGChX5tPaXiP%2BuA7I2HmP0v%2BA07qo7iy3kA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.4778299Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=XCO76nGn064lcrs4iSL3lQKzrF0pUAqDAYwRGrNN1FA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.4780255Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A43Z&se=2024-11-20T12%3A22%3A43Z&sr=c&sp=rl&sig=yb6J7oawNEYwFT1Zl3SMmm4LDazsnVDBbU3bcRPMcQg%3D","expireDateTime":"2024-11-20T12:22:43.4782229Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4962' + - '5055' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:09 GMT + - Wed, 20 Nov 2024 11:22:43 GMT mise-correlation-id: - - 2648b5bb-9e9c-4880-afc9-141cf6574fc3 + - fd3e79f3-640e-49f1-af8c-8b4d4a18f671 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100409Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fbpr + - 20241120T112243Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000anb2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1757,31 +1836,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A14Z&sr=b&sp=r&sig=lbN9ZcBb71pYgLeLy4W4%2F%2FrSypL55mcAY79q4mCR03M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:14.6905526Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A14Z&sr=b&sp=r&sig=diXKXjeGH4El9cqgHQIVanVd5AKKXhO4ktlUssLQta0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:14.6900764Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A14Z&sr=b&sp=r&sig=Zl7NpMYqsg7ljP5dGlazU7izq4kVSGWjMz9qeJ3AWzk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:14.6907221Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A14Z&sr=b&sp=r&sig=iFSdLAzPyDQYD4KnAVsAKwiynP4vFB82d%2FsxrpLboYs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:14.6908959Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A14Z&sr=b&sp=r&sig=BoV%2FRhh6zuEloVyYwsVGqi5ACF35ogu7YtGM9%2FC1cPg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:14.691062Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A14Z&se=2024-11-06T11%3A04%3A14Z&sr=c&sp=rl&sig=vdCCTbj28%2FZVyZCkmha6By2a58knJGPyVmRgFj%2BVUu8%3D","expireDateTime":"2024-11-06T11:04:14.6912356Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=da69ktwCIIBgSyjXcDk8DCx9BwybbUcGBT7NJQdenvA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.599848Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=lIfg6wfWqoju17n4LzlJkeGBCu%2B%2FSiaoVJIBC9aVVBU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:48.5995809Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=tiZZC2n%2FN3J4A4yZYQeMYGwleB88f4I%2F63TnTb%2BHCmA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.5999493Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=OBmWqz8dwW6iB9ARqSfz5toyFic7iX0EFFjxY4AO5IA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.6000372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=1rx6XSh%2F%2FgWLkhsB4p1MHBXaBB7L%2FYzKJuGOHvRQNAI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.6001263Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A48Z&se=2024-11-20T12%3A22%3A48Z&sr=c&sp=rl&sig=nI1K3YZ8RBy6SBluLZTBFaG63FBPmO96ErV1b%2FRlf0A%3D","expireDateTime":"2024-11-20T12:22:48.6002137Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4955' + - '5061' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:14 GMT + - Wed, 20 Nov 2024 11:22:48 GMT mise-correlation-id: - - d6f45538-85df-44b4-8971-4cdb7856b16a + - e57dfe96-5eef-4a72-a2d2-8ef18abe8722 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100414Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fbub + - 20241120T112248Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000anrh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1799,31 +1879,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A20Z&sr=b&sp=r&sig=yOuv80e99K34TQRnVtjQ%2BKHwYncTJjBGANAKrbAX00c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:20.6131845Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A20Z&sr=b&sp=r&sig=MsJGVn%2F6ouqJPMJir7F4JWy1ZGRdoTH31HmKiWmcbIE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:20.6125183Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A20Z&sr=b&sp=r&sig=CPmzPnX8KmOk8F5at6M9vsFUZqU9sqzipMPOf4tpCd8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:20.6135235Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A20Z&sr=b&sp=r&sig=Hb5MAd%2Bv9FRFM9qwDG7t16KWs%2BHh%2BEVyzyfmsEX%2BeeY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:20.6138696Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A20Z&sr=b&sp=r&sig=CETerPTYV%2FguNuBEp8hlQWMcPH8LVDQapclV6HesBU4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:20.6153387Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A20Z&se=2024-11-06T11%3A04%3A20Z&sr=c&sp=rl&sig=iLcoQBsy8LzJ6BD7ZvzZ7omqgOkoZwKpk6%2FBfhiiC9A%3D","expireDateTime":"2024-11-06T11:04:20.6157805Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=XGcm2borteaLWhHO5Rix1l0XlS6MUeWHJ3OTLVgL8Ic%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.7083763Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=ZBbhCiXwwyRU6lwTTamjmW8ql14nGzO29n7yaDG%2Bmqg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:53.708171Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=HyXGW%2Fh9zFBXUqVCoiXpyYKr0rchNgR6l70nFFM8qUI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.708459Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=5weojMbunkxdWcv236%2By0KWOyQDe2hUX9u1g4WZrIi0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.7085388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=xQf9sTyITE3tcK04c5XwZIBFkgUaQgIwCpOR%2BCSffy8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.7086185Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A53Z&se=2024-11-20T12%3A22%3A53Z&sr=c&sp=rl&sig=o68X%2F5ymiAFgp2Tt8AX7sk8UpD0UyDwsplU4rxsOmU4%3D","expireDateTime":"2024-11-20T12:22:53.7086962Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4958' + - '5052' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:20 GMT + - Wed, 20 Nov 2024 11:22:53 GMT mise-correlation-id: - - 7104be65-9a1b-4fc8-961c-7d050a4520ec + - b5ec5f32-6b9b-45d8-ad62-2795a5a8da17 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100419Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fby4 + - 20241120T112253Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000ap5y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1841,31 +1922,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A25Z&sr=b&sp=r&sig=rXAm5u23KfLvHq3qrQXYG%2FFCQngwcwOLqC%2FRTmMG5Vc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:25.9912421Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A25Z&sr=b&sp=r&sig=%2BWTalKgrczrxhtutgBw77MtnEo2%2B8UDSxY2WY8Ne4Vg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:25.990857Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A25Z&sr=b&sp=r&sig=kMZ7FbxGoPMvRBe%2B8bYMjG3d73Xl6XzH8%2BNBaP04mJk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:25.9914033Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A25Z&sr=b&sp=r&sig=5St6D7c%2FrXUuSG6ASHh9rboYRn2IkkkLS%2FsDXmrLSXI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:25.991587Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A25Z&sr=b&sp=r&sig=Ihf0vVBI2i2FtbX4TClHa0qYEXJ0oyfzx09c6mp08Lg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:25.9917389Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A25Z&se=2024-11-06T11%3A04%3A25Z&sr=c&sp=rl&sig=CaTqmtWFHoew7HUPEUsyi7OgQvTniw2SIhvADnlc%2B5o%3D","expireDateTime":"2024-11-06T11:04:25.9918602Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=%2F8EwmW%2FpBpLo2x9Q%2FEhLs7p25B2C9yNZOuDJKL4oGuE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.8076188Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=jwTJqODem4tvru7thhZbrm39T9vSoEmQC1QmSAEcF84%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:58.8071608Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=JVP9A3GJc9vAIx8fTaCAhiQyubdoHlhcZwNPWGYqAz4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.8078047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=FQNx7Srfpt6SIzPBbTJ2JKWRlDUzlDtXR3DTrOKR%2FVA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.8079703Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=Tg5LL1JKspKgiqFxHV5ooN9KWWHQPeypqlQORnaXIV4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.8081268Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A58Z&se=2024-11-20T12%3A22%3A58Z&sr=c&sp=rl&sig=TQWGiJS02nc8IlHssEgACHlpFsqU9dqqIptyhF3gqCQ%3D","expireDateTime":"2024-11-20T12:22:58.8083827Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4958' + - '5052' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:26 GMT + - Wed, 20 Nov 2024 11:22:58 GMT mise-correlation-id: - - 99f3f082-0691-45ec-846a-b017be49a582 + - f5ee879f-0b48-49d2-9b76-91354799be04 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100425Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fc26 + - 20241120T112258Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000appg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1883,31 +1965,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A31Z&sr=b&sp=r&sig=IQCKxc7waacD7lv36jkLNc88GOEwSaQn1XiaO07DO7I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:31.3057636Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A31Z&sr=b&sp=r&sig=nsyV8h9KajHiuPxax3ApYAkwhBUUXW2QPccKtBFO0pk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:31.3052306Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A31Z&sr=b&sp=r&sig=pd2c0ajRhE%2F4CIz7fGUj0Y%2F0M6CjBfcaai%2F0jTUq%2F2E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:31.3059538Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A31Z&sr=b&sp=r&sig=ktp3akqeO9wAXG4PqmScf%2FdrWwUDH6wYPJRmZYIrUlE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:31.3061285Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A31Z&sr=b&sp=r&sig=v749ZdypQwV%2F3FK%2BeLN9yvFbE5GStrGwfTtdZsljhHY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:31.3063035Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A31Z&se=2024-11-06T11%3A04%3A31Z&sr=c&sp=rl&sig=mZFW0HCiYt3hOUmkp72d4zAIHFdldOnEMhoxTozjOME%3D","expireDateTime":"2024-11-06T11:04:31.3064768Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=rVJcmoi9k2HRvbzfRIM7lutbdZaRiB3LZZ%2BJ%2FUKf%2FU8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.9143693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=inxZj5UOvsIs8ifWEQ61VKzXuWYtGyj%2Ff3zRPudir%2Bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:03.9140558Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=pBY8xBYWn22Ls8q2Vn%2F%2BZOpZoM%2F0fS0YZpNPvKn0nj8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.9144661Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=R01TLPDD1EO1chiNbOxZqhll4X2RPS3I7hdSQU2YTmc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.914563Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=rjwLW4NQIDtFSBU29K%2Bl9ievEw0lC%2Bd%2B01ULmanF3ro%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.9146592Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A03Z&se=2024-11-20T12%3A23%3A03Z&sr=c&sp=rl&sig=0hRL8pR67HddBlnSwiK4d8NO4tzbim%2BAbs9MabU9tFI%3D","expireDateTime":"2024-11-20T12:23:03.9147514Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4956' + - '5067' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:31 GMT + - Wed, 20 Nov 2024 11:23:03 GMT mise-correlation-id: - - f3beda4b-3308-458c-a01e-cb455f255a97 + - 7448827a-fa09-434a-9c02-a5fc0135d27b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100431Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fc4p + - 20241120T112303Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000aq2r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1925,31 +2008,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A36Z&sr=b&sp=r&sig=QKGSL0HNxz2oB9Za8grt27CBcCL1xUNMSTXHmis4ZvA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:36.616855Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A36Z&sr=b&sp=r&sig=TXxXZDar5L4HnadNk2%2FVf2UKSlGjd0vbtc5HyLV%2B080%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:36.616347Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A36Z&sr=b&sp=r&sig=loabYhK5HzHtZ%2BKxoTLhj80dMPogygIu%2B8rsNCJWNMg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:36.61698Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A36Z&sr=b&sp=r&sig=YxUDnhoBecl2F9nVIzUYc2SWT45gtJw9IPiBAUx313I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:36.6173196Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A36Z&sr=b&sp=r&sig=YmuGrxy%2F4K%2FXgmepj8HFrJ2bNzqpcjbILKjgudA%2BcXQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:36.6174327Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A36Z&se=2024-11-06T11%3A04%3A36Z&sr=c&sp=rl&sig=Fcn65%2BMyxyH2E7sSc1xsjhaja6%2FzMQZz6yO4g9U5kK8%3D","expireDateTime":"2024-11-06T11:04:36.6175667Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A09Z&sr=b&sp=r&sig=H8iPMIiaScUZN8xYku4%2BWf%2FdmnXKExAaSM6Thy8T418%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:09.0211874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A09Z&sr=b&sp=r&sig=uD0lfZvZZuUV3A9WkSsdYzEg%2BxVGeJ1FXv4%2F%2BTsdI6o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:09.01998Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A09Z&sr=b&sp=r&sig=LJ%2BDYZH975brayqdoEmvTOqUa4H4MVZJhE1zik5n9Jk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:09.02164Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A09Z&sr=b&sp=r&sig=iYv%2B2RHK6cAQs9RfLn2DcrWObhFcTExQ1Ohd57eR%2BMU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:09.0218262Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A09Z&sr=b&sp=r&sig=z%2F%2BGPQcg%2BrYqW6t%2F7j0K63D5luVbyWJd9oEdPXsccv8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:09.0220204Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A09Z&se=2024-11-20T12%3A23%3A09Z&sr=c&sp=rl&sig=%2Ff9ESvrz755K28soFk3L2ZD3EYy940zdcOtlLCo8t5I%3D","expireDateTime":"2024-11-20T12:23:09.0222827Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4956' + - '5066' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:36 GMT + - Wed, 20 Nov 2024 11:23:09 GMT mise-correlation-id: - - a46b25e0-a658-457e-8b76-ae1c6f9d6a76 + - 88738707-cfbd-45aa-995e-f92cf4763b2b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100436Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fc7t + - 20241120T112308Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000aqg9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1967,31 +2051,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A41Z&sr=b&sp=r&sig=n4r4nbDRtbAKg11yvgcjM%2BhaPRN6r0wSKSCRlnTsICQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:41.9454427Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A41Z&sr=b&sp=r&sig=hx1SHKzDgxCWTBQG3FzY%2FmeRulJNnKfzlnkxdjZ5LDY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:41.9449705Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A41Z&sr=b&sp=r&sig=VDlmCG9kHi8bEErL9UvBZ6yAIKUMN5nmQugKW0TD80o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:41.9456292Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A41Z&sr=b&sp=r&sig=ktCXMVG1ke%2B2SSLLVhWhTKTnKayoY39zFJKEiho4YqU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:41.9458788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A41Z&sr=b&sp=r&sig=%2F4Y8QU%2Bddott7BkkFjm4Y8JYzpzL6VyWou%2Fbf3UW%2FaQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:41.9460604Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A41Z&se=2024-11-06T11%3A04%3A41Z&sr=c&sp=rl&sig=yjwezr1nAOQW6ZRCliZkvvchjFDh60h7v4iTOiFSEYg%3D","expireDateTime":"2024-11-06T11:04:41.9462434Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A14Z&sr=b&sp=r&sig=6MatG7ZYLhPVg7DD8yYKYV0k3yUx9QGHl9Q8pD9BSNs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:14.1227085Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A14Z&sr=b&sp=r&sig=rJK5s3J8naBPa4%2F6XPnW%2F56gysE%2Bgj7LwwLU%2FL0Fitk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:14.1224607Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A14Z&sr=b&sp=r&sig=9a3gk9ewO8hDoNbp%2F4jp7Xvw8dH6Th1PjxyZ9AkXVm0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:14.1227858Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A14Z&sr=b&sp=r&sig=g9AyJGt9aMCmnLmuGrisXXdbvVikmaD9Ou%2B1bHWCSms%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:14.1228451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A14Z&sr=b&sp=r&sig=vhZ3HHlQzvVeDh0d9EEVA9PQwoeGhNwsED93qZq%2B2l4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:14.122894Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A14Z&se=2024-11-20T12%3A23%3A14Z&sr=c&sp=rl&sig=7KILMIpymQp2rt9tikQb8cp%2BACz2vEcuWPCc45bsK4M%3D","expireDateTime":"2024-11-20T12:23:14.1229403Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4956' + - '5059' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:41 GMT + - Wed, 20 Nov 2024 11:23:14 GMT mise-correlation-id: - - 4360f70f-8eca-4087-bdba-9ef0d5795fbc + - 06e5dc46-e2ee-452e-9fc5-1eae856f39ec strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100441Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fcbp + - 20241120T112314Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000aqym x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2009,31 +2094,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A47Z&sr=b&sp=r&sig=11rddFu3j4%2Fr4f55aKpWlRUL6sCKmtPhsVGE1bjbaNY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:47.2621367Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A47Z&sr=b&sp=r&sig=Z9ztaIbQAUkTl0cLPOzpAayv%2BNV%2FF9ywwHKiap7VAlU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:47.2616891Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A47Z&sr=b&sp=r&sig=eBjthBDqJaWoxX%2F2PPFahvQWOH3Q3066YFw%2BcSKgtm0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:47.2623101Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A47Z&sr=b&sp=r&sig=H9B5zVWoH7DKiV8daimoYOeoQ1zwt0fV93HSn0zA6BY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:47.2625063Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A47Z&sr=b&sp=r&sig=7JOOgnjxJLmO9S%2BBqIdqRRptChH0xSZqp7h9WCLjb9s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:47.2626853Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A47Z&se=2024-11-06T11%3A04%3A47Z&sr=c&sp=rl&sig=MAghNdSFrDmxvdy5LV42Jhj9P%2BmsA0YOfGGQbeRU14Q%3D","expireDateTime":"2024-11-06T11:04:47.2629398Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=XZPla6nXxG29uNR36RP6wbCdWY75crcoqMi%2FPafNK5w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.2363163Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=mlC0wkhOlwe1FerH147dMwyGBV1vCMSDOzLI0NDq27k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:19.2360307Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=qXQdftw6duq7dI2YCJf2y24u60HI3Symqbcm6Pa%2BIcs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.2364148Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=YX1Ijq12LkQUDZATLDbfMvUey%2FDk2vL%2BhFtiYK4I9ao%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.2366976Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=tgICckvgS0xP3kro0NsgdZ5OzBVt3%2BVICdzcNjQNQfY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.2367903Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A19Z&se=2024-11-20T12%3A23%3A19Z&sr=c&sp=rl&sig=UCAhiTi%2BkxlHZQIhSWfbx4A39ENNybtwxIzW62lePQk%3D","expireDateTime":"2024-11-20T12:23:19.2370679Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4956' + - '5056' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:47 GMT + - Wed, 20 Nov 2024 11:23:19 GMT mise-correlation-id: - - bebdb867-a8d4-4226-9dd6-96cebb1fbae0 + - daf1d3f9-c3a5-431f-9276-b12466d62ee1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100447Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fcf6 + - 20241120T112319Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000arc8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2051,31 +2137,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A52Z&sr=b&sp=r&sig=vLiZ705mXJjt4AycuQ2ycePnp5kWLosqFhvv9iFCcSU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:52.5833564Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A52Z&sr=b&sp=r&sig=6Bp2oEgv8O2XbyDHNAyfn%2Bgz9vHzX%2BUT78j0whpa5Xs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:52.5827644Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A52Z&sr=b&sp=r&sig=7wAr8vbMAehkqhRy%2BVpHwtE1NaFj7NnjU%2FDiKa3Rgtc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:52.5836055Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A52Z&sr=b&sp=r&sig=iXoyYC%2FLlwNqxBuZKE%2F33DAjZrpmN4gfGmy0D1m6o4g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:52.5838514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A52Z&sr=b&sp=r&sig=fpdrbxTdqAj8%2BkxaxuMJxz%2BX1KRD8uC%2BAUTx6sbzTYE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:52.5840991Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A52Z&se=2024-11-06T11%3A04%3A52Z&sr=c&sp=rl&sig=huNVUaw%2BSrfwHOAtBddv93occ6EZA7a%2B0UCxRdATUbs%3D","expireDateTime":"2024-11-06T11:04:52.5843703Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=lyQp04pkQzjVsn%2BBInBpxIAxshk3L6DKcjLgJyWtbzo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.6655435Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=U1UDsA%2BR%2FYVfkGylOf%2Bos4pq60TyxAE550OyYRgfDi4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:24.6651213Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=aGXORO%2BWSZJPVEh2z8m6LEUdLyoyrij6vpwJHOA3NDQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.66577Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=XYzr61pC0vQb8K876JXoYJ68rLSJyxiiqDQasTrfu8s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.6659536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=EQuBBVGHXC5%2BOwAMjuGRw6e%2BpAjObciSPDbtz4fLMbs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.6661353Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A24Z&se=2024-11-20T12%3A23%3A24Z&sr=c&sp=rl&sig=to%2FL7%2B%2FxszFJ%2BzhBWACVxCH3b%2FsisCAFJTWEf4kzHis%3D","expireDateTime":"2024-11-20T12:23:24.6663414Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4964' + - '5066' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:52 GMT + - Wed, 20 Nov 2024 11:23:24 GMT mise-correlation-id: - - b7bdd880-e248-453e-9afb-354ba5b18d8e + - 7d9483ae-c0bc-48c9-a646-0b47b158770b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100452Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fckm + - 20241120T112324Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000arty x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2093,31 +2180,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A57Z&sr=b&sp=r&sig=snXY5bFxIUtjbddMWvkMbv9iWnU1nnmHmN4KbabAQh4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:57.8935147Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A57Z&sr=b&sp=r&sig=A8EeQx32805xQrYWrFV08iY%2FxjG1inVjAnnzqg81fmc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:57.8928992Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A57Z&sr=b&sp=r&sig=wgsLlGrc0X%2Fe8aA1u3HvzuWKHB03SKl5ygRISrfpCws%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:57.8937013Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A57Z&sr=b&sp=r&sig=%2F43Z2BDl4xqk%2BUW0I26wFgkX6CixpByOV9MxDhQ54CU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:57.8938858Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A57Z&sr=b&sp=r&sig=zCqMH9jLO6R6S8w9wsiP%2BSwlAsmmHUIIztxqS0RjDbc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:57.8940642Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A57Z&se=2024-11-06T11%3A04%3A57Z&sr=c&sp=rl&sig=wlotdUZI4xgWi7uABY2D4dr6LdGR5ACG%2FyWjKngmr%2B0%3D","expireDateTime":"2024-11-06T11:04:57.8942689Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=fStq9D2LZBuG5ruJF1L0MFIsMEu97mNhMNRQH1ryIXI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.7779203Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=2vL%2BTlUvbmizY1rrgxRN8mmWpfhIAxQeFya55L0sDX4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:29.7776176Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=fD6usAkDsTXHItGwyZNq%2BqJSX1QeOdNINBMyER5H8gA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.7780597Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=k0Xbxnair7VHlpZWlaIWvvC7evYIwDEUFYQtyEXmHcw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.7783002Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=OtCL3sjNPZzdnC1Rced4CxC7dhSRRC063K905Qn5d0A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.7784411Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A29Z&se=2024-11-20T12%3A23%3A29Z&sr=c&sp=rl&sig=S4X9mjTCA%2F6Azl75%2F0OW1SCQuAdGaTEzOI4Kko%2B%2Bb4E%3D","expireDateTime":"2024-11-20T12:23:29.7785729Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4956' + - '5056' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:57 GMT + - Wed, 20 Nov 2024 11:23:29 GMT mise-correlation-id: - - 132fdb8f-dd6b-4238-b325-67e74e78897c + - ff1a625f-8362-458d-a94f-af56a5661650 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100457Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fcpz + - 20241120T112329Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000as8n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2135,31 +2223,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A03Z&sr=b&sp=r&sig=XrEFba5AZfRZ9Pv8OoPowuE9FlQtCG%2BQKrweSmWMrWg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:03.1923467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A03Z&sr=b&sp=r&sig=w93zz6WM2QezhXs6%2Fugo585a9Hzw0np3HQ62yODyO3w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:03.1921102Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A03Z&sr=b&sp=r&sig=o%2F9qKggsCvKvJWUAkjgzUwEdmggxutJ9XfKUU%2B68hns%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:03.1924161Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A03Z&sr=b&sp=r&sig=xk5ForaYlSwx7RtsWa6JgCHQzWrqBdmnhGifJgmFHh8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:03.1924957Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A03Z&sr=b&sp=r&sig=4%2B5yTkIFGNDAnXvYi0pZfPrMIr8NnNgjN0%2BeI8CUf1Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:03.1925723Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A03Z&se=2024-11-06T11%3A05%3A03Z&sr=c&sp=rl&sig=3bNnJO9fxKVNFyuk7ElpRFgIowvanRlB0xy2P51LJJI%3D","expireDateTime":"2024-11-06T11:05:03.1926461Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=9RaQVn1SjXDIaUJSAnR5f87yHR0rrKj%2BqFhH%2B4EA9tA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.8826887Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=YaFolS%2F4hXRzurZpEFWGbAl1Zp%2FAFXRxBnNaZPvvfSg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:34.8823411Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=MnNhuOIp%2F%2BsAcuazciIRxhUMsk1GxgBjuAmoz2tC5HI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.8828212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=8W3YqPS0Hlu0YibzdnjucwnFH8bli3eGbO6nAhA3whk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.882949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=TQ2%2BPdxIDOnBq7Ek3p7HiDnh9vG3bk8bAg1%2BmjjToDA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.8830787Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A50Z&ske=2024-11-20T18%3A20%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A34Z&se=2024-11-20T12%3A23%3A34Z&sr=c&sp=rl&sig=AO3Oa186EmIz%2FjCgys2%2BtKmRitgeLlcipxECHjc7IWk%3D","expireDateTime":"2024-11-20T12:23:34.8832075Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4954' + - '5063' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:03 GMT + - Wed, 20 Nov 2024 11:23:34 GMT mise-correlation-id: - - 355ce580-2878-4399-ae4e-9ae85b928f99 + - a3ec710d-ce81-4075-86ca-24b72471dd16 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100503Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fcvz + - 20241120T112334Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000asrm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2177,31 +2266,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A08Z&sr=b&sp=r&sig=2GLC3Gpg0TgIF1ek8hYwzc4xwAf6od3CxKKzM3tHmo0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:08.493652Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A08Z&sr=b&sp=r&sig=ZZzmLaeyH%2Bvyl9Ho17Yp7VmoQXAcabRta0fb990d7mo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:08.4929585Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A08Z&sr=b&sp=r&sig=mgVBssyHLDIJu%2F7I5tOTgpnVYQ2OUUDAiKuM%2FrF6YNc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:08.4939968Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A08Z&sr=b&sp=r&sig=jsWopX3ka684DZ6NORESgyMRDnFaS2%2Bq5BQJnSeplj0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:08.4943253Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A08Z&sr=b&sp=r&sig=PWDPUr1OgSFh9W%2F2VBJHYkwV6dWNF0nX0qfelycJIqw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:08.4955717Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A08Z&se=2024-11-06T11%3A05%3A08Z&sr=c&sp=rl&sig=87qD8ZkhOlBykNmtEoUH2BWPOEK2uBTc4z9OoRAy3Ug%3D","expireDateTime":"2024-11-06T11:05:08.4958027Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A41Z&sr=b&sp=r&sig=urcNvqttTBsA71F9%2BJu40TurvyidZlG0URcOCaryP2w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:41.1167993Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A41Z&sr=b&sp=r&sig=x6bnXD79kfo%2BI6yy%2FX2RH0jKz51%2F6Ks%2B09znkuThyhw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:41.116433Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A41Z&sr=b&sp=r&sig=RBtf54Hvm83%2BqRH%2Fj1ThrMSm9QUKTZZjCnRstHOqb00%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:41.1170079Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A41Z&sr=b&sp=r&sig=9diLysvfIGOfjSyf%2FdxWIBH8dsBBNdnEH%2FrIkHZglBQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:41.1171782Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A41Z&sr=b&sp=r&sig=ct64BLscC2CnCg%2FCnQ0wEz59RHMNx01MAELN%2BdpO3rs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:41.1173407Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A41Z&se=2024-11-20T12%3A23%3A41Z&sr=c&sp=rl&sig=GUUw%2B1l3zDfLl5vqfa4tp9I4L8MVvsyoW3Fkg3znC94%3D","expireDateTime":"2024-11-20T12:23:41.1175075Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4951' + - '5067' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:08 GMT + - Wed, 20 Nov 2024 11:23:41 GMT mise-correlation-id: - - 7e6ed771-28fe-4380-ae05-5d5df17bfcb2 + - b53173ac-62cb-4f52-b21b-5aa131b388d1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100508Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fcyu + - 20241120T112339Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000at5z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2219,31 +2309,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A13Z&sr=b&sp=r&sig=M%2F7RoHmldr4UD6qxBj%2BThEAIbl%2FG%2FN5g0xSFJl8ccFs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:13.8046904Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A13Z&sr=b&sp=r&sig=1F5CbJley8BeNCn147AzmPlpEST3ndgtyiIfn2agwe8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:13.8041791Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A13Z&sr=b&sp=r&sig=VhFmwM8owDNiSOse7MV8ArxIFjEBgNOhfkpRQ4KpEtY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:13.8048956Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A13Z&sr=b&sp=r&sig=%2BxirlOKjU0viT1hnFz%2FLK3%2BUYCMofmhC8XZ7nOl9K6M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:13.805112Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A13Z&sr=b&sp=r&sig=4WjXOfNNoyoQXyWBOc7JQPEpePnAGwgBhrvn7dR2d8g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:13.8052965Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A13Z&se=2024-11-06T11%3A05%3A13Z&sr=c&sp=rl&sig=QIQOe64cwyhED8tIIjxOSEyigf300IuSEqFBJfKi1SU%3D","expireDateTime":"2024-11-06T11:05:13.8055002Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A46Z&sr=b&sp=r&sig=ysotzyFvGDXQnK0QiQzW%2BT7GDaiLPUkxqsWuzyoJxTk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:46.2252648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A46Z&sr=b&sp=r&sig=3minRnZ7lFxHfOyaG9Cdb8%2B%2BWCS2OqOjOVWquhnmPDo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:46.2249971Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A46Z&sr=b&sp=r&sig=lJPudB9Wyb3teSzKg%2BLSwg%2FGIZRJzfz3%2BVZpyXaKRHU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:46.2253604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A46Z&sr=b&sp=r&sig=%2BYOQUo6a7rCi7IL5QxnZpAeroCgYummfqohsfBOnPMQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:46.2254503Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A46Z&sr=b&sp=r&sig=u2XorM85kF7XPR4U1NxPdmrANG%2Be3R2qv9Qg6U%2FHnBY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:46.2255289Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A46Z&se=2024-11-20T12%3A23%3A46Z&sr=c&sp=rl&sig=8fkudpKFYto52Tu2u9h2Jp2p6cUcp9TFUYHN5zAGQjk%3D","expireDateTime":"2024-11-20T12:23:46.2256183Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4955' + - '5062' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:13 GMT + - Wed, 20 Nov 2024 11:23:46 GMT mise-correlation-id: - - 55a7b90c-4f8f-4dc2-9140-1c5fb98507bf + - 0f319420-903f-4f60-bdf4-a943995fe6a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100513Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fd4z + - 20241120T112346Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000atmw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2261,31 +2352,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=GDOBhFQlu2zf1mtVVc4HJunPoaGzkYr5idKu0VkP328%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.1137977Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=TqTd66NsCFekM4T7CL4G8QGEiSJqy3jtg9ThpfhqnK4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:19.1067151Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=yKUbN4r%2FxgV0BNxte8eSIBSgPjYTwyOgChToeVuQRvg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.1139025Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=iB%2BxvoJaQktsHrqeXAyZVfopesbQu%2FiQ1tu969B%2F5tk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.1139949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=U4UjOqsPPFKfETTrUcztw%2BFGsxZ4w4FY8VfsF7VNWkU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.1140853Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A19Z&se=2024-11-06T11%3A05%3A19Z&sr=c&sp=rl&sig=fUlDQSMiEBOqE4kYqlWTbIl9TeuX9W8XQ6YrJrZnF8I%3D","expireDateTime":"2024-11-06T11:05:19.1141782Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A51Z&sr=b&sp=r&sig=CZPKr0hQ62k2kZb%2B8nR5iS1O1L3QuLDrcYmE4W05ZEY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:51.3367017Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A51Z&sr=b&sp=r&sig=KJ7JKXEacVmMbcAM9CWneAthU8x%2BPczaEq5JXpo1bGA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:51.33626Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A51Z&sr=b&sp=r&sig=cDX9LKn5E9T03G6RzEZRmSakRxolxzy1w4zMc7e7Jog%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:51.336872Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A51Z&sr=b&sp=r&sig=6Hh8i8PjMfoBzYqfM9f6ICgn1xrPap0ZNilIHpMLfdQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:51.337038Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A51Z&sr=b&sp=r&sig=SQVMZsJa71i6h3LZFFSLHHRt3EuBUFVcH08ffS4PoTI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:51.3372056Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A51Z&se=2024-11-20T12%3A23%3A51Z&sr=c&sp=rl&sig=RsAs%2FF%2B10tXJ4l6DFEosonbPRfRB1Sge%2FDvClvGOC3o%3D","expireDateTime":"2024-11-20T12:23:51.3373727Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4952' + - '5050' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:19 GMT + - Wed, 20 Nov 2024 11:23:51 GMT mise-correlation-id: - - 7eec779a-d9fe-402d-b6d8-733ede97d944 + - dfce70a6-5a8d-435c-88fc-d810670b1a5c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100518Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fdac + - 20241120T112351Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000au1e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2303,31 +2395,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A24Z&sr=b&sp=r&sig=AqRWz9kXab4e8BQkLAbZveuKdXG3YIVfOQdxueTNcIg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:24.4309423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A24Z&sr=b&sp=r&sig=oMLlL675NIjPkJn037auTaWaWShB4gQfSjAA%2B6%2BYZuU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:24.4304497Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A24Z&sr=b&sp=r&sig=H4%2F1%2FPBIPAXoEfyM8q7f8rwSmr2rwdwaIYUIXkkHBYo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:24.431157Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A24Z&sr=b&sp=r&sig=VFELi3QUIfVsEXkykdXZLOkt575u3Snhlf8f2FsuaYI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:24.4313575Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A24Z&sr=b&sp=r&sig=MP%2Fd0zAsKOsTyF1w0R81p579VWuZa0EElZCoghsBTHw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:24.4315683Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A24Z&se=2024-11-06T11%3A05%3A24Z&sr=c&sp=rl&sig=KnJXaq%2FsquAydG86wNvwozCEI7iobrIU27BYCOvJpxA%3D","expireDateTime":"2024-11-06T11:05:24.4317354Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A56Z&sr=b&sp=r&sig=DR9sQbWzMc2aDdfwcKiletAdb%2FAIDamqpVdfYvud3Kg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:56.4471377Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A56Z&sr=b&sp=r&sig=Qa5t56TKNNcTIGFvoSpvs8T61U01toYGR9fyi0LVB%2Fs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:56.4467767Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A56Z&sr=b&sp=r&sig=LXJeKw5qiOa3HVuv6mm6OFXN3kLH2yTP3lZ2iUyCrNE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:56.4472622Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A56Z&sr=b&sp=r&sig=8%2FdBHSoRj%2BwobPzralJFEfilsN%2BFMNB31uOPG8FXVRk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:56.4474712Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A56Z&sr=b&sp=r&sig=oKMeDZVzUSqibZoJczpXC4lHwkx7UoNWp8lOOZuJXLo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:56.4476292Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A56Z&se=2024-11-20T12%3A23%3A56Z&sr=c&sp=rl&sig=B5ugfvI%2BupEOhAKnynG5nR6KI0lZvgmhzsO%2F4XygzpE%3D","expireDateTime":"2024-11-20T12:23:56.4477517Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4953' + - '5058' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:24 GMT + - Wed, 20 Nov 2024 11:23:56 GMT mise-correlation-id: - - 4d705459-d594-40ea-ab01-07c231e6e827 + - 60b31133-3ade-4f82-a75c-11358edf5f66 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100524Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fdev + - 20241120T112356Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000aud7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2345,31 +2438,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A29Z&sr=b&sp=r&sig=oC5rVL%2Bwv3hvYV2mDdz8OKsIw3WSLVhn7idXZWSm5gs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:29.7335897Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A29Z&sr=b&sp=r&sig=53MQv3kGCkr5O7muV%2BDxY2ez3ZDc0sRfEHZ7bmhwYsg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:29.7333016Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A29Z&sr=b&sp=r&sig=WDe%2Bxy%2BxBCrZyv6sReM2nsBYWVZiqNYAa1xUWXsEvf4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:29.7336789Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A29Z&sr=b&sp=r&sig=eKG%2B6UBx4jp8cAoz%2FMNqUQFIh8uQWO7B02TeQooS3LM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:29.7337683Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A29Z&sr=b&sp=r&sig=LXGx%2BiPRDXwNzydYtEXha55FSsBePVDEhABf%2FvQyhbw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:29.7338563Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A29Z&se=2024-11-06T11%3A05%3A29Z&sr=c&sp=rl&sig=LzjS4OddYIoaIIr%2BrJzCMAoULURRD1%2FscMPS%2FznyYXE%3D","expireDateTime":"2024-11-06T11:05:29.7339431Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A01Z&sr=b&sp=r&sig=sjOfNmhzLK%2FZeb0%2FL41XafgzTs3F6vr3LI%2F5QKgqHGU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:01.5496709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A01Z&sr=b&sp=r&sig=qQUjSpuhTyZjextZ9mwzgIOmV8MSGlLF1DOYvKQrO7w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:01.5479368Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A01Z&sr=b&sp=r&sig=Hbj9eiWrFiZcQW19LfJq3cmVs7p3IRBZIGfqbovyFCo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:01.5497722Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A01Z&sr=b&sp=r&sig=0w1jsTvwRkFG9T7eJIhi0qP8SN%2BfyzaQll8jneVAPLY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:01.5498681Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A01Z&sr=b&sp=r&sig=MnXTbqHmMPGswtwkFwi4G30Jfxsf7eCDhXN7MlG%2BpKQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:01.5499619Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A01Z&se=2024-11-20T12%3A24%3A01Z&sr=c&sp=rl&sig=yHerG0oFLGPqEOjuTOIKsipV2De2HxCkRLDn9EG1zMc%3D","expireDateTime":"2024-11-20T12:24:01.5500595Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4964' + - '5054' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:29 GMT + - Wed, 20 Nov 2024 11:24:01 GMT mise-correlation-id: - - a506659a-8606-4d2c-9ade-78f5abe3690a + - 1b2939dd-5426-4804-902e-9004f23f3a24 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100529Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fdk8 + - 20241120T112401Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000auvh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2387,31 +2481,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A35Z&sr=b&sp=r&sig=mwxwtZHq7N5WW4VDfEvsVhUZKZrRbXdVZji58poQEyk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:35.0416253Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A35Z&sr=b&sp=r&sig=SJWqm9rb1rEoMWFTiHnfEsIGz9IlrHVJiohw9wnscTQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:35.0412788Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A35Z&sr=b&sp=r&sig=mwJlcWZrdPuvndZ4naHWG%2FzCf5XxjfiUp5jpQy%2BhTno%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:35.0418008Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A35Z&sr=b&sp=r&sig=KLfdvF1pwys9SHatOjeLy%2BR17eVLWUynNVChNVVHGWg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:35.0420545Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A35Z&sr=b&sp=r&sig=Pj8vRLsFjrjS5ZtnozpzBN%2FlvGQX088uOog1tIyj70M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:35.042281Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A35Z&se=2024-11-06T11%3A05%3A35Z&sr=c&sp=rl&sig=r3IXHm4%2B%2FtVu7awoWR0dM7xRC8KVNoD0ZYQ8Lpm8ypA%3D","expireDateTime":"2024-11-06T11:05:35.0424144Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A06Z&sr=b&sp=r&sig=bcFzd%2B6RpcRNeWMOMjLiG%2FA28e9i9GV7WCOiaDmQivI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:06.6606553Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A06Z&sr=b&sp=r&sig=b8pAqWiAdZk1i3cKe3jtbf5rkqUu0WmZf2NItGQPq5M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:06.6595116Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A06Z&sr=b&sp=r&sig=KrX6KzKLjItU5wgNyt2CDt%2F3H6STPDPIl9oAbR%2Bs0%2FY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:06.6609709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A06Z&sr=b&sp=r&sig=Nn6Slz97nypKUzKBSOv1yP44EP2CYXDsCqJxk5cNoQg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:06.6613199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A06Z&sr=b&sp=r&sig=Opl%2BdNkj%2BuFz4c976N2yXCgk3BNso39vP5aCztJuYxc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:06.6616362Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A06Z&se=2024-11-20T12%3A24%3A06Z&sr=c&sp=rl&sig=Q%2FPLutexokpt%2Bwe43%2Bx%2BMWtwhCF47iHnLsO1wo67IGo%3D","expireDateTime":"2024-11-20T12:24:06.6618509Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4953' + - '5066' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:35 GMT + - Wed, 20 Nov 2024 11:24:06 GMT mise-correlation-id: - - 9f69b78a-c2ab-44b3-8397-032a98ccdda8 + - 63f6686e-cd5e-4a5c-9d83-1f1d182ec42a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100534Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fdre + - 20241120T112406Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000av8h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2429,31 +2524,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A40Z&sr=b&sp=r&sig=lUsZyZ%2BkNfdumxdVsSXFKhCAXPi%2BB7%2FW5AkYQiedAqA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:40.3511592Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A40Z&sr=b&sp=r&sig=odMAkgw47%2BXyixP8gyA6qbiI2O%2Bf0aZquUB6IIyLXG4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:40.3506535Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A40Z&sr=b&sp=r&sig=gs1vSe8nb9CtxcdD%2BqYoiJ6merRlIxKXWqV5YP0aK%2B8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:40.3513631Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A40Z&sr=b&sp=r&sig=kKibrak6iqd9XHEZgT%2BAWrvZHvyjpcWmaHaNaPLB27Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:40.3515728Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A40Z&sr=b&sp=r&sig=%2B76r60m7sq3WOOtSC0hvTuuxHhxo%2F18p%2FqwyPEqYC%2Fo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:40.3517692Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A40Z&se=2024-11-06T11%3A05%3A40Z&sr=c&sp=rl&sig=X%2BKH7YcH24hJ2plVMWlcE0%2FEY%2FgYimT%2FGUdipEkGnPE%3D","expireDateTime":"2024-11-06T11:05:40.3519837Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A11Z&sr=b&sp=r&sig=8e5CpTsVSawtsV4vzMj4S2sBn7fWfN0waKPH32kdMxs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:11.7822916Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A11Z&sr=b&sp=r&sig=%2FGJEOuw3GvAe4a8IyUGiRJSIUR%2BS7IlmqIFK63V02P4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:11.7818593Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A11Z&sr=b&sp=r&sig=oB6M58GFT0SEBgmQltTRdpXtN5es3Gwt265T5CL7FG8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:11.7824624Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A11Z&sr=b&sp=r&sig=FTA3kR2xIvCFoTwYQSGWVHGjOgiam%2FYc%2BN3UkWlnn68%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:11.7826376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A11Z&sr=b&sp=r&sig=EhztTOsgNwuaOEi79%2FFHi8OmINrqKJIFhER5R8M7j6s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:11.7828066Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A11Z&se=2024-11-20T12%3A24%3A11Z&sr=c&sp=rl&sig=7yRbqrWargktqxjXWXkRTrUQ6Hl0v6DfFeCwtc6wq9Q%3D","expireDateTime":"2024-11-20T12:24:11.7829755Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4974' + - '5054' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:40 GMT + - Wed, 20 Nov 2024 11:24:11 GMT mise-correlation-id: - - 8b90a9be-2663-458c-bcc7-94570505a717 + - 665118ac-0439-4999-91f7-651a28addc23 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100540Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fdw9 + - 20241120T112411Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000avpd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2471,31 +2567,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A45Z&sr=b&sp=r&sig=7B170FggV8JCCf%2BMjrFDuERAhgfqad1p2lleAjHQfOE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:45.6512485Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A45Z&sr=b&sp=r&sig=k0giQQgmSKHW1M8%2BIvvT2PP%2BoHf%2BrpV7DWedrJx6uL8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:45.650842Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A45Z&sr=b&sp=r&sig=Xzz3eGn%2BdcdJoe1FXli1E7vc5mX2bOJnj875TRjdg8U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:45.6513893Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A45Z&sr=b&sp=r&sig=%2FC1KQZOy5kD3rIBzDjwcq4uLIVBxzOIvP%2FuBK3LPgcc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:45.6515416Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A45Z&sr=b&sp=r&sig=nvAEJdGgQ%2B5NJAwniCo9T%2Ffd6OozMmEnF6lYZIaqUAA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:45.6516878Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A45Z&se=2024-11-06T11%3A05%3A45Z&sr=c&sp=rl&sig=3%2FBvUQxzFOcJBSaPIv%2BWxH7t1eSnt4B57aZfQU3xC%2Bw%3D","expireDateTime":"2024-11-06T11:05:45.6519783Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A16Z&sr=b&sp=r&sig=RgraV5AwV7wIMdQxIEnB3Se20x2JbVyKtiZAV7KKuZk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:16.8786861Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A16Z&sr=b&sp=r&sig=LKQS4Co9bSHKJSN2vTxgejQ%2Bj2MqEhkrwB7POvprQf8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:16.8782857Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A16Z&sr=b&sp=r&sig=2MwwIZxTTmyglq%2FufVFsvjaIortbGni3RpvI8cxcBbM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:16.8788597Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A16Z&sr=b&sp=r&sig=d9ywramLa6bZXtE88QY%2FZ39sVlcbXgQF6zYmAN0ph98%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:16.8790296Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A16Z&sr=b&sp=r&sig=2pUQFXUI%2F%2B3MLyC%2BUNWZI8PJcx0fqkL%2Fq9S6TZO5Dtw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:16.8791987Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A16Z&se=2024-11-20T12%3A24%3A16Z&sr=c&sp=rl&sig=kAI1WZT3tG%2FW%2BjIurvgwRjGOCUpTQonCNfzcmc1Q2dM%3D","expireDateTime":"2024-11-20T12:24:16.8793687Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4965' + - '5062' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:45 GMT + - Wed, 20 Nov 2024 11:24:16 GMT mise-correlation-id: - - 42825324-b021-4125-90bf-470c238c3ebb + - e3e61a54-286c-406e-97e1-1772a4bd3a9f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100545Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fe1d + - 20241120T112416Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000avz2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2513,31 +2610,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A50Z&sr=b&sp=r&sig=hrkLSw6bVaVfWO4K%2Babp1PAk2qjURg6U51iJxPtcA1c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:50.9669173Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A50Z&sr=b&sp=r&sig=2fvwIPVNOydFqp33EDXuTOvLxS0L3NRJeHFxbYFvbp8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:50.9666348Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A50Z&sr=b&sp=r&sig=5v6H6TYzrLJTLRktx91t3zfn5r3MZcHEzofZzuKDFeo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:50.9670093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A50Z&sr=b&sp=r&sig=zqqp7GYpcfUuBcFM1eFBqeB866PsFYQNNHpQqddHi4k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:50.9670997Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A50Z&sr=b&sp=r&sig=ECSWxkqGT1B8N%2BRxjVaQeJ1cu1fojjgBDn1a86TNd8E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:50.967179Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A50Z&se=2024-11-06T11%3A05%3A50Z&sr=c&sp=rl&sig=eEF7NH%2B9DnLZPRIM5QDMSzFEd101cSyUb7dmhzeJVk8%3D","expireDateTime":"2024-11-06T11:05:50.967309Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DEPROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","endDateTime":"2024-11-06T10:05:49.726Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:49.846Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A21Z&sr=b&sp=r&sig=XvXTmxaE1aQpBdLcfb5vlLOKiAYSJnQjJamXO3SaDx0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:21.9906601Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A21Z&sr=b&sp=r&sig=LU7vVDafFen7g2pFRsygWpDP%2Fds70Ci2lfANFAZTHKM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:21.9898164Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A21Z&sr=b&sp=r&sig=SAXRLy3waaBVQIdLKxCecq7ewC%2BBst3DXaBHi4NIuY0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:21.9911056Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A21Z&sr=b&sp=r&sig=eXfG9kC2LmZDKXizwwdQKTFODg25KU6KEU7dUx%2FSl%2Bg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:21.9912034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A21Z&sr=b&sp=r&sig=szMYcypeh6PS7fx3AReDXR3h%2BoTqcYeK9B3HWhMsB5w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:21.9912775Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A21Z&se=2024-11-20T12%3A24%3A21Z&sr=c&sp=rl&sig=YIZ%2BtX8yMgvOCAWsPC1WHxfdY%2F1rYSHs9CSAO17bIWU%3D","expireDateTime":"2024-11-20T12:24:21.9913505Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-20T11:21:41.801Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:32.308Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4992' + - '5058' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:50 GMT + - Wed, 20 Nov 2024 11:24:22 GMT mise-correlation-id: - - 2100e531-299d-4384-89cb-b1709c11002b + - 9890f6db-d8f0-44b8-b290-34dd221c8ee1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100550Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fe7k + - 20241120T112421Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000aw6n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2555,31 +2653,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A56Z&sr=b&sp=r&sig=%2Fztfv5onUCgVB6TVsEVEHdlsT7wB7IQ0Vu8wHyg3xb4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:56.2700769Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A56Z&sr=b&sp=r&sig=lF9fB6IJLyWdpdhKav5E7w8hOTyZEiy228HMjHxUAG8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:56.2698046Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A56Z&sr=b&sp=r&sig=WfV7O4lY1IGwTi2dF9LqICxELLJGUeWvtWvwUIuaFgI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:56.2701725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A56Z&sr=b&sp=r&sig=wr2zGWIrc8YuafzMVXGnycy1WytL4i3%2FJvN1z7HkDFA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:56.2702556Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A56Z&sr=b&sp=r&sig=ffqz0ETsMB5mExzn4Fksi8wkDHQ8NYb0MemTbVu07dA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:56.2703476Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A56Z&se=2024-11-06T11%3A05%3A56Z&sr=c&sp=rl&sig=1H1oO0P21%2BCld%2F785vQi6dBPn5Pt63h9qJBTWffanGU%3D","expireDateTime":"2024-11-06T11:05:56.2704406Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-11-06T10:03:09.665Z","endDateTime":"2024-11-06T10:05:49.726Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:52.579Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A27Z&sr=b&sp=r&sig=%2BpsWMx1sH5kLQbJlKEs70VMrA%2Foldp12y7LTTKEO8sc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:27.0954187Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A27Z&sr=b&sp=r&sig=laPu4bf%2F7n5lexfOn81zRpP17vlWJjjsqNDTOaGuEpc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:27.0949456Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A27Z&sr=b&sp=r&sig=Em5yuwnubDsPqnfd54Pj91%2FWCSVXUwvJg%2BkY51q7Hdw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:27.0956452Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A27Z&sr=b&sp=r&sig=XbOX2r9rO5e%2BLW%2Fuq%2Ba8UhD0OSf5oAz5QPRw%2Bozi8pw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:27.0958177Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A27Z&sr=b&sp=r&sig=ZkvVu2Z9aD1iViV1qOjUHQL8gR1csliDu6kwNznrm38%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:27.0959777Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A45Z&ske=2024-11-20T18%3A20%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A27Z&se=2024-11-20T12%3A24%3A27Z&sr=c&sp=rl&sig=I4hpEEKDIIvlbFrHB0Nrtm6NmehnfU8AkwIk3Z9jB0c%3D","expireDateTime":"2024-11-20T12:24:27.0961493Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-11-20T11:21:41.801Z","endDateTime":"2024-11-20T11:24:23.697Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:24.654Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4986' + - '5098' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:56 GMT + - Wed, 20 Nov 2024 11:24:27 GMT mise-correlation-id: - - 418b64f1-653b-4c4c-bfcd-e18d161418c7 + - 9e122526-c0c5-4378-a67f-2345209a193b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100556Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fed5 + - 20241120T112427Z-17b7777dc45dj5bhhC1CO1wt8s0000000w3000000000awec x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2597,23 +2696,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:01:22.9289537Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:22.9289537Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:11.4986955Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:11.4986955Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:57 GMT + - Wed, 20 Nov 2024 11:24:27 GMT etag: - - '"fa002015-0000-0200-0000-672b3e8a0000"' + - '"97037701-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -2629,7 +2728,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3A9D08158B33413E96A90EFA5A47E852 Ref B: MAA201060514019 Ref C: 2024-11-06T10:05:57Z' + - 'Ref A: 152E6ADD2B7147098358D5BEBEBC7124 Ref B: CO6AA3150217023 Ref C: 2024-11-20T11:24:27Z' status: code: 200 message: OK @@ -2643,31 +2742,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=JHykuSw%2FOGmXaGBLXnTqwpBlQMiP%2Bnpxb%2BwUsLTqXf8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.1831399Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=gol1Z0u82jLdspg89uPRSxoKk7erLJptgBYFPaUesTI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:00.1827415Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=ELxZ0ASklAT36mpeJ%2FiF0f%2BBiuIqDEuoz7%2FRF8grbIg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.1833071Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=k%2BWpvsR1utwoyDGhL%2FQcKGs9TNbP4frXPOkuLUDe%2FHU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.1834768Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=sWzTbR9XOeBoCTVtn%2ByzvDJeMPUJwJ1giBsShyonVUE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.183643Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/41979a65-2b08-4c7d-aed7-346189a8e46a_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=cgRRlssr8%2FJDL6dsOieJTQgzxkrY73kBw%2BpKQXSBxds%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.1838076Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/41979a65-2b08-4c7d-aed7-346189a8e46a_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=jNp5FQLHJrW86Xnz1%2BPMahF1bL4sg%2BY5k735UIfmI8E%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.1839739Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A00Z&se=2024-11-06T11%3A06%3A00Z&sr=c&sp=rl&sig=pjFHlgr9NpuG%2BiPqHq9cZOX2lHsiLhrs4VfD27KcG20%3D","expireDateTime":"2024-11-06T11:06:00.184143Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-11-06T10:03:09.665Z","endDateTime":"2024-11-06T10:05:49.726Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:57.945Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A28Z&sr=b&sp=r&sig=nDtUCa9RIDuaPivszKZMCY7aYgdrRoqNXT7wKL21DuQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:28.0535142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A28Z&sr=b&sp=r&sig=iKhXlOoMZyYFD8a3sHtG%2BCeSEBROv7Yeb%2F0ayj03U8U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:28.0531432Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A28Z&sr=b&sp=r&sig=lGynnozl5xdNBe4KAFn0Qoa0IIuUPtyt9oWkyRqHOsc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:28.0536919Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A28Z&sr=b&sp=r&sig=x0e6MHskHH%2BLz68JAnKBVa6K7TFg48xZQIyIxEq9aZw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:28.053855Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A28Z&sr=b&sp=r&sig=YG6d0HA6P0DHbmpKRJIwSsKvVUUhd4q8vBUeioqr45M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:28.0540187Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A41Z&ske=2024-11-21T20%3A21%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A28Z&se=2024-11-20T12%3A24%3A28Z&sr=c&sp=rl&sig=ldmdQUiLCzhwR%2F8mykqRDc4t0Hc1nBB8BEdCE8i0bBI%3D","expireDateTime":"2024-11-20T12:24:28.0541836Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-11-20T11:21:41.801Z","endDateTime":"2024-11-20T11:24:23.697Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:24.654Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6180' + - '5087' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:00 GMT + - Wed, 20 Nov 2024 11:24:28 GMT mise-correlation-id: - - e697d6b6-de40-4c7d-bcc4-8f3b69e1e6a8 + - a0a4a4c2-c404-4378-a5b6-36d216dfddcd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100559Z-16bf8d9b4c7j9mw4hC1BOMxhec00000006gg00000000ht79 + - 20241120T112427Z-r16f5dbf676d94mhhC1YVRs0f000000000sg000000004y3c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2685,23 +2785,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:01:22.9289537Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:22.9289537Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:20:11.4986955Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:20:11.4986955Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:01 GMT + - Wed, 20 Nov 2024 11:24:28 GMT etag: - - '"fa002015-0000-0200-0000-672b3e8a0000"' + - '"97037701-0000-0200-0000-673dc6030000"' expires: - '-1' pragma: @@ -2717,7 +2817,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5DC39774B8B148F2B0C9D3B38A854BE5 Ref B: MAA201060516031 Ref C: 2024-11-06T10:06:01Z' + - 'Ref A: D95CB5E8DA0A47DDB6EF3D1867F61ADD Ref B: CO6AA3150219027 Ref C: 2024-11-20T11:24:28Z' status: code: 200 message: OK @@ -2731,31 +2831,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://ecb0ef1f-2582-4469-b6b6-53205b7667e1.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=guErg0bQ9hTMQ5CJ2jk79wdVOynic%2BKNxgmjGS3i2Zs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5520249Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=XecAoYk5JZCqPaJQV%2FHG8R1bogisnldQ6WTB2ZG%2Bxxw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:04.5516156Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=4iBthEfoZ4DyTX6SVi%2BKQWaricxWtFXeIgUFLRRHYUc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5521981Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=V58NQI3z1Lsh9pzEikXriZKvboj3TSVkBZ8wlT%2BZPzA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5523865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=P2AFL%2FyCcC2IqgmzPdqN0nUhvhNauc6daEQJyEYuuEQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5525532Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/41979a65-2b08-4c7d-aed7-346189a8e46a_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=AgJfFwhZ6XIG2Qs%2Ft8ebykV3s2CuuiSjC8QnqrqwbdE%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5527227Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/41979a65-2b08-4c7d-aed7-346189a8e46a_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=gpmbl2JT%2FKheCbvEymnSWwm6YjXVXyKvKPnhrwoolSM%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5528912Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A04Z&se=2024-11-06T11%3A06%3A04Z&sr=c&sp=rl&sig=8lzrzp93R4MzDeqN6uV9XFtZPL5QzJs%2BjkutA9pf83w%3D","expireDateTime":"2024-11-06T11:06:04.5530666Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-11-06T10:03:09.665Z","endDateTime":"2024-11-06T10:05:49.726Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:57.945Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"30c2ca72-3f0f-4af6-abb9-913513892422":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e4de6cb2-b07f-4769-96c3-e2ec1c71b922":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e05341e8-2b30-450c-9f9c-45d5d3806a1c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/109a5857-5a30-4cbf-88db-c47080f61005?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A29Z&sr=b&sp=r&sig=KqdFIyi0kpj6qb1eu60Jp32G5cm4SE%2BqcqcatbAndfU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:29.0843994Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/7f3f7284-3e0c-4e0f-bc0f-b19f5f97e2ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A29Z&sr=b&sp=r&sig=9WDCSroRddqe9cQfHcYNq2M5oD1eImYHfZmHxLmAMBA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:29.0840687Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/f0b63e79-fa00-4cdf-957b-ea76fd9fe416?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A29Z&sr=b&sp=r&sig=eD2KiJ8KZSHXerO1DFg1lIT1c%2FQIXuJdm6vS4dgT500%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:29.084494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/30606572-4087-430b-abe8-2c0ccabc96a8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A29Z&sr=b&sp=r&sig=hdrhHj1ZryGTPabf1Xg66u2ZMCg5NyJ8cVno7QUOcmo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:29.0845836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/1ef809ad-e26b-4637-bdd8-2167be89c536/85f4807f-e184-4f4c-8186-0767b3a0ad9e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A29Z&sr=b&sp=r&sig=GnDi17UibPvsP9RWo0Kg%2FZyfjt%2FjkkGJQ6YgHhMvUYw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:29.0846736Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sgij9pk37qgkju141qxp6byf.z14.blob.storage.azure.net/4603dd49-924a-4d36-b202-592a1c37524b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A36Z&ske=2024-11-21T01%3A21%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A29Z&se=2024-11-20T12%3A24%3A29Z&sr=c&sp=rl&sig=dUh71s7A%2FslBzlAbYvRNRE7WAXwF85T4LWUhQ%2Fu9NuU%3D","expireDateTime":"2024-11-20T12:24:29.0847576Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-11-20T11:21:41.801Z","endDateTime":"2024-11-20T11:24:23.697Z","executedDateTime":"2024-11-20T11:21:39.967Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-20T11:21:41.216Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:24.654Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6170' + - '5091' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:04 GMT + - Wed, 20 Nov 2024 11:24:29 GMT mise-correlation-id: - - 3eb18e00-e911-4611-9ceb-4b5c41cd01df + - 03abffec-1fe5-4811-b9e7-458d622823d2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100603Z-1556595cbbczl92whC1BOM6xac00000006a000000000eg7r + - 20241120T112428Z-r16f5dbf676kzgwchC1YVRkhh800000003w0000000000g3r x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_delete.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_delete.yaml index 63a2d0d2067..77593cc4c41 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_delete.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_delete.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:18:23.4362298Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:23.4362298Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:10 GMT + - Wed, 20 Nov 2024 11:18:55 GMT etag: - - '"fa00f418-0000-0200-0000-672b3ed10000"' + - '"9703c000-0000-0200-0000-673dc5960000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3F1F3D22DDD74FFC99C1B74118A83E71 Ref B: MAA201060515045 Ref C: 2024-11-06T10:03:10Z' + - 'Ref A: AB9D277FF475402EA9DFB439959B290D Ref B: CO6AA3150219019 Ref C: 2024-11-20T11:18:55Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier delete-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:03:13 GMT + - Wed, 20 Nov 2024 11:18:56 GMT mise-correlation-id: - - 9857cdee-9d38-46ee-a147-9687f3889b6f + - 45b7f420-6c36-4c21-ae86-1bfc3035d9f9 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100312Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018ckg + - 20241120T111856Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000v4e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"b1e57182-8d15-463e-9afd-8ea8e7f0204d": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"515d868a-24f1-4bff-a95c-c7fad60bdb1b": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "2cf7ce95-65c7-4166-afb5-579d6b276d7d": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "2db80528-efec-4a02-855b-84e3c708851c": + "78"}, "e394a12a-4a39-4d3c-91a7-b119b58a089c": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "5b0f5b4a-ea85-4368-bd69-95c8cfe7e993": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:03:13.93Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:13.93Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:18:57.021Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:18:57.021Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1044' + - '1148' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:14 GMT + - Wed, 20 Nov 2024 11:18:57 GMT location: - - https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-03-01-preview + - https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 4357c9d0-c55a-42dd-b4af-9f07e2dec016 + - 00f6e908-e8df-4dbb-8b41-1c833ee4025b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100313Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018cq1 + - 20241120T111856Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000v4q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:14 GMT + - Wed, 20 Nov 2024 11:18:57 GMT mise-correlation-id: - - d4a494b6-7b82-403f-8407-42de3dcda531 + - 31ab0533-efd8-48d8-9cea-50b48d67d91b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100314Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018cs3 + - 20241120T111857Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000v4x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,17 +207,18 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A15Z&sr=b&sp=r&sig=fBPsF%2By37kDGmtKs4QG47yDxxKNjnKfScJq64cN3Q84%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:13:15.8238449Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A57Z&ske=2024-11-20T18%3A18%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A57Z&sr=b&sp=r&sig=ECsZMCAMKjuo3SKREFnUuOaNjNagwsLVMvyZesRK%2BLg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:28:57.8135705Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -221,15 +226,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:15 GMT + - Wed, 20 Nov 2024 11:18:57 GMT location: - - https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - c22363cb-de9b-4fd7-a47c-32aead48b47a + - 9237bccd-4bd1-4d79-9257-6ca403827206 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100314Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018ctp + - 20241120T111857Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000v4z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A16Z&sr=b&sp=r&sig=6Ftotx4nNYo4vcgFhZPbDKHuSEkBjE%2FGv6Gj6HOXkfY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:13:16.1774787Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A57Z&ske=2024-11-20T18%3A18%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A57Z&sr=b&sp=r&sig=ECsZMCAMKjuo3SKREFnUuOaNjNagwsLVMvyZesRK%2BLg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:28:57.949739Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:16 GMT + - Wed, 20 Nov 2024 11:18:57 GMT mise-correlation-id: - - 127189fd-036e-447e-b863-1a0d1742aa2d + - 26824910-ecd2-4211-ba60-3b72f487bf37 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100316Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018d0m + - 20241120T111857Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000v56 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,17 +306,18 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A16Z&sr=b&sp=r&sig=9CVLk749IiMEgwo0BvmaLDRCOMDQ2iC2%2BT7mEm82BEI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:16.6847178Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A59Z&sr=b&sp=r&sig=wkUyKHexUa3OuNKztlm094zSquVouFNWyw%2B58crbk4Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:59.5794949Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -318,15 +325,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:16 GMT + - Wed, 20 Nov 2024 11:18:59 GMT location: - - https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 53c98f6a-ac4b-40dc-ac97-c6b97d9a9195 + - 891fc81e-9308-4f0e-9387-080ba21453f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100316Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018d28 + - 20241120T111857Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000v57 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,17 +351,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A17Z&sr=b&sp=r&sig=eefT58UxTgwmJdg5ErXF%2BVaT6S0uPYLb9OCbz2VTeHI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:17.0213053Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A59Z&sr=b&sp=r&sig=VKyBAvqR3TGwVqO2lAjTMK0ZgOyPVUbNZhi3UuR%2FQf8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:59.7301764Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -362,13 +370,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:17 GMT + - Wed, 20 Nov 2024 11:18:59 GMT mise-correlation-id: - - b5b129d4-6d6e-4099-8d47-7bef9337a1be + - 7d6fca06-8d35-4911-8651-17aed9ac579b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100316Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018d4x + - 20241120T111859Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000v63 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,17 +394,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A22Z&sr=b&sp=r&sig=cdgBCcgyIi7MTCZBReEYrpODODe%2FEDyidN5tYlHeVlU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:22.3103537Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A04Z&sr=b&sp=r&sig=p%2FjiuGxnDhYwE8qA02Jk3MvdBl1wqOlaKf1qLJfJluU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:04.8448684Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -404,13 +413,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:22 GMT + - Wed, 20 Nov 2024 11:19:04 GMT mise-correlation-id: - - 77e577fd-9fe3-4ac1-a6f0-4bfb46a466a7 + - d82bcdb8-dcf9-4205-ba5c-49d8c233af87 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100322Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018dxx + - 20241120T111904Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000v80 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A27Z&sr=b&sp=r&sig=jhFf1Za8keVLg1%2F8kDsHSuQkIlp4Ml4Sr8saUPhvyko%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:27.6080562Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A09Z&sr=b&sp=r&sig=MNtZJMxyqXJUS3AkzZWz0G0EwnsCkfiKt09vB8armFU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:09.9931766Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:27 GMT + - Wed, 20 Nov 2024 11:19:10 GMT mise-correlation-id: - - da90053c-77fe-400f-949a-ed25ebd0f70f + - c8df1604-1802-47f5-8ae2-e3aa0c392d60 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100327Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018eq5 + - 20241120T111909Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000v9u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A32Z&sr=b&sp=r&sig=Ue%2FubYR63z9gjGKRRjMTWJif%2FCNcqv8eYjlBXewZBKU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:32.9027815Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A15Z&sr=b&sp=r&sig=mQZ8mjWPT8%2FISqu4oG2MgNn4txDnAi4ryrumqIttki0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:15.1136664Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:32 GMT + - Wed, 20 Nov 2024 11:19:15 GMT mise-correlation-id: - - 2db4eddf-c9f1-41ff-ad71-5573c7f10023 + - fbfc0f57-3fa4-46db-9b64-52191f5f2c22 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100332Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018ffm + - 20241120T111915Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000vc1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,17 +523,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A38Z&sr=b&sp=r&sig=4v2fiNOgjFYm1lHaS0wWNY8kBIuIhIyUzbrr4tYpdrI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:38.2167956Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A20Z&sr=b&sp=r&sig=BnrsmnJwzAVNOnaENmLEK4sIaeH8yhM0V26JNfVHWCE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:20.2350641Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -530,13 +542,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:38 GMT + - Wed, 20 Nov 2024 11:19:20 GMT mise-correlation-id: - - 4941c7b7-bbe0-4fa8-bb57-30e7875780e3 + - d9873e24-f0fb-4ab7-b31b-97b09fbae642 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100338Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018gah + - 20241120T111920Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000vea x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -554,31 +566,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A43Z&sr=b&sp=r&sig=fh7xVzpF8JcurXkeZVD6Dxqbkzf5zpmhRQMiIwT%2FcKs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:43.5112814Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A25Z&sr=b&sp=r&sig=NYQRzMJF%2BC2nvNIYEZaq7hYczK%2F1SPV5mw9GpxdfkMg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:25.3494336Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:43 GMT + - Wed, 20 Nov 2024 11:19:25 GMT mise-correlation-id: - - 6a92df31-589e-436d-8da4-3c3a39e7d4cc + - dc219a7f-9092-4e76-9e6b-c2261e5cd98f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100343Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018h36 + - 20241120T111925Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000vgh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,17 +701,18 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A43Z&sr=b&sp=r&sig=CUDhHSLmY1XTIDShfbmLYMMY%2Ft7P2Ix2SIDHYO65BSc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:43.9854006Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A57Z&ske=2024-11-20T18%3A18%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A25Z&sr=b&sp=r&sig=ku%2BzZBCG94FlLKsLCA531ySZiCWr2jFKW9tlvuMuL0M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:25.6132228Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -706,15 +720,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:44 GMT + - Wed, 20 Nov 2024 11:19:25 GMT location: - - https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 70522a8d-e098-4ace-8ab9-269426868109 + - 25c4a918-729a-4868-b52c-f04ddd6abbf6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100343Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018h4h + - 20241120T111925Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000vgm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,17 +746,61 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A44Z&sr=b&sp=r&sig=e9phl48VnbEL%2BXC9%2FNkHTrrlBwyBbu8gWSkHiPubH9o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:44.2759958Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A25Z&sr=b&sp=r&sig=SmIo8E%2B0ybqUvHjb9PzPzwbxhOJplXyJfhax3RUZzgM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:25.7211232Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:19:25 GMT + mise-correlation-id: + - 0bd732bc-d4b1-4f28-ba0b-55a0ea012c20 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111925Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000vgr + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A30Z&sr=b&sp=r&sig=z0FLR1tp9CcqFaaidMBDZVIdtnsoMCOUsg%2BW%2F9OyxZQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:30.8955204Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -750,13 +808,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:44 GMT + - Wed, 20 Nov 2024 11:19:30 GMT mise-correlation-id: - - abb084a6-5ce4-414e-87c4-1a8f7b62b8de + - 1b41dff6-90f4-4f7b-a759-ad98322e49a8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100344Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018h6u + - 20241120T111930Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000vm2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,17 +832,61 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A49Z&sr=b&sp=r&sig=7J5Mq7LnIJpgRRP70cP3EJRwlZxTHXTNy5H%2B3X8pLus%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:49.5903841Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A36Z&sr=b&sp=r&sig=E77pBkxuTqj3VmzoXY7EJwDELsKxgec0Jsd1lvIIck0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:36.013274Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '555' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:19:36 GMT + mise-correlation-id: + - db9ad11b-18b3-420d-ae29-6dbb93cbe467 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111935Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000vpu + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A41Z&sr=b&sp=r&sig=iJq82w%2B1YP3MM0itSIkE7EboGlywysGyuq7v1xdmnOU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:41.6365443Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -792,13 +894,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:49 GMT + - Wed, 20 Nov 2024 11:19:41 GMT mise-correlation-id: - - 5140397f-5a85-45d2-af20-7bb7d2405e35 + - 1c963727-77fa-44a0-8c13-6d48387aeeba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100349Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018k39 + - 20241120T111941Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000vta x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A54Z&sr=b&sp=r&sig=0HJ3dTMcDc3cqClMQ7iBjGmn%2FPVEg6h9FxGg8B4Udto%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:54.878184Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A46Z&sr=b&sp=r&sig=RGrBOft6eH4bhuSftDsMpkx5VXzcj5I%2FFsJ%2BR7ODnL0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:46.7446794Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:54 GMT + - Wed, 20 Nov 2024 11:19:46 GMT mise-correlation-id: - - e6f9fc9a-d66a-4fe8-87ed-eb121f21f8af + - ffe44abb-1b9f-49d5-80af-1b730cc8e246 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100354Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018m22 + - 20241120T111946Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000vwq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +961,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A00Z&sr=b&sp=r&sig=ql6gKZ%2FlhNg%2BdZlu9YgcErtQriIBJ9YgrMvWe%2BalPec%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:00.1610815Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A57Z&ske=2024-11-20T18%3A18%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A51Z&sr=b&sp=r&sig=EOEiQ4eAS0jeIWAy1LpVUdup%2BTQSlOLfWxIU%2FAWeJBs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:51.854237Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '562' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:00 GMT + - Wed, 20 Nov 2024 11:19:51 GMT mise-correlation-id: - - a7fad385-8c58-42d1-9cf1-b29bf93cd8c0 + - 1098a9b9-e29a-45f0-ac86-c6fb2012833a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100400Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018mu6 + - 20241120T111951Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000vzy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +1004,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A05Z&sr=b&sp=r&sig=SM4mtCTYdf88hX%2FTBVHk1E1FY8NFVi3haoXq6rhYe4c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:05.4594423Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A57Z&ske=2024-11-20T18%3A18%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A56Z&sr=b&sp=r&sig=41E9riwgwE88BloXVO0uFQRpGa1xWBXT08f0Lo5JAMs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:56.9643073Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:05 GMT + - Wed, 20 Nov 2024 11:19:56 GMT mise-correlation-id: - - bce5a5a3-d343-4ed7-b0b3-ebe375286583 + - 0462ce68-96c6-455b-98b8-1c1545aaa19f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100405Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018nks + - 20241120T111956Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000w2a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +1047,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A10Z&sr=b&sp=r&sig=BHQNc%2FmAJ9U3MTCNSdnRTUpUBZNgoIlxSd66BEf0b%2Bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:10.7702046Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A02Z&sr=b&sp=r&sig=YENe0ICPt8WuK5vtDSzuoLHCKp%2BBjJXxX%2B4zR%2Fdxd94%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:02.0846699Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:20:02 GMT + mise-correlation-id: + - f79d652e-3e13-4c9d-97c6-6a5f47690594 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112002Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000w51 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A07Z&sr=b&sp=r&sig=B3txtQ028GSclic9ndwM9WI7HLqHPVbI%2FGohZocos94%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:07.1891325Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:10 GMT + - Wed, 20 Nov 2024 11:20:07 GMT mise-correlation-id: - - d9b48451-61c1-4933-93d2-7946ddb822dc + - 877d8e65-b08e-4a7d-a23b-2b636555cc26 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100410Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018pbh + - 20241120T112007Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000w7u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,32 +1133,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A11Z&sr=b&sp=r&sig=wQRloruvzCkwoIFd8GWOuhcIrOAuey3RNH8I8v7L4iI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:11.186349Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A11Z&sr=b&sp=r&sig=MB%2FaIKcjvfvH0uTOC5MkZEtqEg7Whg9T2BPm9h8wPl0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:11.186605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A11Z&sr=b&sp=r&sig=kukVXLP%2FPO6IfNhgctxY6wWe%2FaecoifTX%2FtPdKyDC%2FE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:11.1866832Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:03:13.93Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:08.282Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A57Z&ske=2024-11-20T18%3A18%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A07Z&sr=b&sp=r&sig=9qehAkEopn8GFaT%2F0Yjaw7jhRWRFBbM8AyTGqWQmpKE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:07.318074Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A57Z&ske=2024-11-20T18%3A18%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A07Z&sr=b&sp=r&sig=lEsNK2PXvAS6wubs8w8xMVInPDjBkU8gLScSxMZohS4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:07.3183143Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A57Z&ske=2024-11-20T18%3A18%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A07Z&sr=b&sp=r&sig=dQ4tSjBu6wfav1FqiykO2%2BmDc4%2B%2F2fk%2BKcU0%2Bq1mVqc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:07.3183872Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:18:57.021Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:02.654Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2767' + - '2873' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:11 GMT + - Wed, 20 Nov 2024 11:20:07 GMT mise-correlation-id: - - 718043f9-5785-4626-8946-d51956353263 + - 2e7f1284-3cf5-48b1-875e-9178dabd32b4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100411Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018pd3 + - 20241120T112007Z-r16f5dbf676d94mhhC1YVRs0f000000000xg000000000w7x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1027,23 +1177,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:18:23.4362298Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:23.4362298Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:13 GMT + - Wed, 20 Nov 2024 11:20:07 GMT etag: - - '"fa00f418-0000-0200-0000-672b3ed10000"' + - '"9703c000-0000-0200-0000-673dc5960000"' expires: - '-1' pragma: @@ -1059,7 +1209,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3E1D7DBE5075403BB6DDE10A8677A325 Ref B: MAA201060515017 Ref C: 2024-11-06T10:04:13Z' + - 'Ref A: D474740436B34336A4DBA8A2C06F13FC Ref B: CO6AA3150218009 Ref C: 2024-11-20T11:20:07Z' status: code: 200 message: OK @@ -1073,32 +1223,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A15Z&sr=b&sp=r&sig=%2FMVTJjwhTV6vZYG6sgMSJVdoOVlK8TWBURasyx%2FGALc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:15.7235459Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A15Z&sr=b&sp=r&sig=%2BPSKAnFl8ubY6Kj9re86O2cgZkn94KTXPrVbcT3acCg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:15.7238214Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A15Z&sr=b&sp=r&sig=slFID11L3IIVn%2BAWGeDmkhSl%2F91SNrtePPrOSynzu2s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:15.7238994Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:03:13.93Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:08.282Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A08Z&sr=b&sp=r&sig=fdv33a8bz0IwaKPvvgqLTJeuUHnZ%2BstA9jcUsP8Ky%2FE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:08.2552301Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A08Z&sr=b&sp=r&sig=tjmXbk%2B2PhGg3WD6FXBrgzEmtT6KwQ0sCJdlRngs8NA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:08.255987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A08Z&sr=b&sp=r&sig=Y0PbbwrvAM6QLHt4umoAd%2BiRCbyy6ey6MZefHnDoLeM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:08.2562177Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:18:57.021Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:02.654Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2781' + - '2881' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:15 GMT + - Wed, 20 Nov 2024 11:20:08 GMT mise-correlation-id: - - 0d2bd156-dc1e-416f-be89-f2aab2de5e28 + - c9a48e2f-3f9f-49ea-9b0d-1792d14cf150 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100415Z-16bf8d9b4c74rffhhC1BOM0zgn000000064g00000000ze62 + - 20241120T112008Z-17b7777dc45q4gdthC1CO13w2n0000000w6g00000000cdhh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1116,23 +1267,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:18:23.4362298Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:23.4362298Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:18 GMT + - Wed, 20 Nov 2024 11:20:08 GMT etag: - - '"fa00f418-0000-0200-0000-672b3ed10000"' + - '"9703c000-0000-0200-0000-673dc5960000"' expires: - '-1' pragma: @@ -1148,7 +1299,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6FB21B74DA5E452D8A73A0CF66A9AE36 Ref B: MAA201060514017 Ref C: 2024-11-06T10:04:17Z' + - 'Ref A: B0C0608C87724DEE96A33E8D6C241E3A Ref B: CO6AA3150220021 Ref C: 2024-11-20T11:20:08Z' status: code: 200 message: OK @@ -1162,30 +1313,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with given name \"delete-test-run-case\".","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:04:20 GMT + - Wed, 20 Nov 2024 11:20:09 GMT mise-correlation-id: - - 68522bbb-c2f2-4fe5-ae12-fddc7afb4843 + - c713f8e9-77c3-439b-a5c1-37ee56135290 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100419Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006m55 + - 20241120T112008Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bug3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1209,31 +1361,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=eBzYgY9vig2gRDzAPpuAvRfR6eKfoYO3cKCUznNUP7Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.1062735Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=4PGOc4z4l2XlQHAwBQBqN9FaSjJQbpnb0Bz2MZxGQrU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:24.1050761Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=ewaoNub0%2BW1xv01SQn2nbFVDQxuW221OMUEiGIiudj0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.1066966Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=PSvfVI9kfzSWuVec5Lq%2BBMsLJHNkl4orv5XebgljXY0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.1070776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=A0iqDVuAYwMjmE%2F51BSKEYT6SLQynYgt%2FWEQZ5IFXm4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.1073576Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A24Z&se=2024-11-06T11%3A04%3A24Z&sr=c&sp=rl&sig=UzNDECV3PpDzM9wdVjkKBDZlcuj4O3zi6waAOFuiQOk%3D","expireDateTime":"2024-11-06T11:04:24.1076805Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.025Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=o0vscZ%2BycHr2a6fRAOY4%2FGH14aKWUv%2FYxwhLUavDpf8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:12.0443704Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=CxIX9lp%2BcQsayLz%2BLcgFb6zNsTbzfM%2FmOPCosvWJQNM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:12.0440958Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=54tSWhyMKgQUl10kVi3mXM4z2RDwvluK6Dju1sD%2FbNE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:12.0444369Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=yf%2FdlP0YO3SRKKf6ZZEvntwEQN6BRMBnChJEzaADVfs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:12.0445031Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=Rp32Nz%2FDhqwGAFImoUppD7SUDQTqvHN%2F4bmlDTLpUAA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:12.0445669Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A12Z&se=2024-11-20T12%3A20%3A12Z&sr=c&sp=rl&sig=HbRLdoeEieaA94S4wpDUYFGVT2rFV3MFxWfP6E6Nab0%3D","expireDateTime":"2024-11-20T12:20:12.0446296Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.034Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4855' + - '4969' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:24 GMT + - Wed, 20 Nov 2024 11:20:12 GMT location: - - https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2022-11-01 + - https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2022-11-01 mise-correlation-id: - - b3f32863-0ae3-4dd3-98a0-ba687b533645 + - 9ee03e88-ae89-4ee5-9940-17ef0a98a78f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100420Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006m8r + - 20241120T112009Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000buga x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1251,31 +1404,161 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=kI6XYhQJOb1Aba3cWTBbMMiy%2FFZx78PRSGCBjZmjwLg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:12.1767009Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=%2BYk5nnLtg70Axv0MkvBi6t%2FrRgy5KhqiGtsSaLduN%2Fw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:12.1764134Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=8My0jQEfL9wy4YBCgH34E38erR4XRWP4%2FKO5UHk7LAg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:12.1767927Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=YWYZlVVdCTjyofWbqvcM3xpRhx6PqD8%2BhVFgM7cD6Dc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:12.1768817Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=gHC%2BeAMcbWcylPBU2sjEbvJa0hF33UaP26WeP3xYDZY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:12.1769687Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A12Z&se=2024-11-20T12%3A20%3A12Z&sr=c&sp=rl&sig=RQh9rBZswNjntMAUkEpGAgIHaaBspydULxHtfJsyAjk%3D","expireDateTime":"2024-11-20T12:20:12.1770535Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.034Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '4963' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:20:12 GMT + mise-correlation-id: + - 19b23b9a-fba3-42c2-87df-c58e4eaac005 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112012Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bumk + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A17Z&sr=b&sp=r&sig=PF3waM2ae4ycUcoIK1SEPe5qZjdPnIpAEPsLg2r0vC8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:17.3273324Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A17Z&sr=b&sp=r&sig=uW8oXyAGKo36MIXJ3ITTu3joinrZRN%2B72547D%2BpzL%2Bo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:17.3270056Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A17Z&sr=b&sp=r&sig=0UhjdNnIqn3TdTQJUExX1Mc6RfQjKi8kCpbQ7A%2BFEOo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:17.32747Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A17Z&sr=b&sp=r&sig=FLbYoOUEj8knsCGwXRQGDFe%2BwCtabVN%2BAV5h0GEPlAk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:17.3276136Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A17Z&sr=b&sp=r&sig=mLBCfhfxb8%2BmH6eXVNBRd7axf9%2B%2BTrJfzIpRWoUkdQk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:17.327753Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A17Z&se=2024-11-20T12%3A20%3A17Z&sr=c&sp=rl&sig=7c0Ox7XKPVtkInnvSDq6ob19FMTxsddSc0r%2BxtT3vXU%3D","expireDateTime":"2024-11-20T12:20:17.327891Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.385Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '5012' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:20:17 GMT + mise-correlation-id: + - 26e4c75c-e611-4f70-ae10-179edffecb8a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112017Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000buse + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A22Z&sr=b&sp=r&sig=2BMRKHSgwf4OR0XaBT2TLjikzUTja2oMNz0RLVvOCnk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:22.4724755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A22Z&sr=b&sp=r&sig=9RhOH8gL2IWk7twx4fqkqbBrry8m%2BpBn52xjY5z7DSk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:22.4722234Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A22Z&sr=b&sp=r&sig=4A095vvvFAxuNvf3YEfVPK4%2BNt%2FYdOTS60qrkx13oDw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:22.4725519Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A22Z&sr=b&sp=r&sig=fR%2FRxSBdwL1dSX1mRBU5VJFgrmOdBCBg7gRWDWQWGq8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:22.4726292Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A22Z&sr=b&sp=r&sig=e5I0dg7VwTjePJ1IqIw2mzuh%2Fz6VQH6LiIKRHS2ANck%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:22.4727066Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A22Z&se=2024-11-20T12%3A20%3A22Z&sr=c&sp=rl&sig=8HCdZMu9%2BCHfMhFyygEIjl%2BYgm1s%2FhcDv5i8r2ZpsEg%3D","expireDateTime":"2024-11-20T12:20:22.4727809Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.385Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '5012' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:20:22 GMT + mise-correlation-id: + - 2441a73f-8567-4bce-93e2-c190c68c473e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112022Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bux6 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=mWb3gnPeAZki8gWi6sfscvsX%2FZbP8%2F%2Byv214k2%2ByIbc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.6955934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=xhClxmeRzYMKZjH6Gw3gSBWJRQwwKd8VwyDK4QZVIuw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:24.6951698Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=NgHRunb3K%2Bnn%2BSAcVI155APyFTQKsGFvI7SMla5u97Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.6957681Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=8rwfKqjBK2j0crIXtraswpiE0CItuPWTOMZGJxGiYFA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.6959385Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=20jjZN2GIW9Ts8GF1ntlByrqeAlOor90G1UT4q%2BYlUQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.696106Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A24Z&se=2024-11-06T11%3A04%3A24Z&sr=c&sp=rl&sig=3VtJefL2p6gCYxmjgyGSM8d8TBz8T3Es6PZe4Ai32hE%3D","expireDateTime":"2024-11-06T11:04:24.6962724Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"NOTSTARTED","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.503Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A27Z&sr=b&sp=r&sig=vZxQs7V%2FwaQY5qqvNo3rZKqyiNaZXx51BOSBw64uLxc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:27.573858Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A27Z&sr=b&sp=r&sig=sJQjMdOOVyrAEd1RU%2Fp6aKyNySJ4Sqz01gA6cPuK0mc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:27.573564Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A27Z&sr=b&sp=r&sig=up4S2s7o1NeDIIxaexe%2BLToIM3Uzt%2FfbMd%2B8SzIc2tI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:27.573986Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A27Z&sr=b&sp=r&sig=A8yhKZbbFQk3Tjh2m%2FYKBIedqid2miEry5B3Cov47Oo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:27.5741249Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A27Z&sr=b&sp=r&sig=giF1RKkpgiM4KRFfKvESagfQgGEfKXbq1hmNzQZyDwE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:27.5742246Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A27Z&se=2024-11-20T12%3A20%3A27Z&sr=c&sp=rl&sig=PWQV8JA1psXxzoCdBz5f1eCZM6cj%2FE823T0a2tSsTHo%3D","expireDateTime":"2024-11-20T12:20:27.5743206Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.385Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4905' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:24 GMT + - Wed, 20 Nov 2024 11:20:27 GMT mise-correlation-id: - - fcc3dd19-5fbf-4e22-90df-599cf7800b6d + - 11c2df7b-f008-4401-aca5-9d6a4608656a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100424Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006mwk + - 20241120T112027Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bv2b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1293,31 +1576,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A30Z&sr=b&sp=r&sig=oy%2BPIXtCW%2BMIPdmt97z7ty1RmdAcg0peiaxdwsheFGY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:30.0482432Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A30Z&sr=b&sp=r&sig=c26lV6ApKr1%2FHvSiwsRM0fkw2yia0H8SuzF2X%2Bo4vL4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:30.006185Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A30Z&sr=b&sp=r&sig=zqyaG0Jl3y18dbz43cL9kxvWkOMqaVgRF0g3lTZMFR8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:30.0486089Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A30Z&sr=b&sp=r&sig=QeMmVDf0lvcJC9W83UPc3K%2FOwyyEtkDQ9D9aYZb8pJ4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:30.0487987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A30Z&sr=b&sp=r&sig=C23%2ButrImNLd1BS7hjtUFZTnBCgao31D60GMcOQVQcA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:30.0489858Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A30Z&se=2024-11-06T11%3A04%3A30Z&sr=c&sp=rl&sig=ipsMExGzDruOdFdWs3i5eGYNkkH5LihC9KIuKx3lflc%3D","expireDateTime":"2024-11-06T11:04:30.0491752Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A32Z&sr=b&sp=r&sig=1IWXdCv5tC1l3jOUKe8LpG05PMbJ5cOdV9RfGH%2FDWp8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:32.7189592Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A32Z&sr=b&sp=r&sig=yB0MUKZfKVmtpYaFRHsuNpmFJ8fXHNq3aIM0lCrCwT4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:32.7183225Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A32Z&sr=b&sp=r&sig=cpU8C1elv1aXecrVLBDF2fKVLViklvTGXgCV3JrOujU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:32.7192335Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A32Z&sr=b&sp=r&sig=jmNYIEQyVjzg5e9nBOJ06NwFiF9hi0am%2BeQXSDqNlqs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:32.7194998Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A32Z&sr=b&sp=r&sig=GUqWzsYpo2dhWiQJqaRR5MgNjRFdh%2BOrOJZGXoyTxg4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:32.7197693Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A32Z&se=2024-11-20T12%3A20%3A32Z&sr=c&sp=rl&sig=WbTuLJZXnwZbwdFIV9ay2ffm0jgOFvQcE2NEKyK1oa8%3D","expireDateTime":"2024-11-20T12:20:32.7199303Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.385Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4905' + - '5002' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:30 GMT + - Wed, 20 Nov 2024 11:20:32 GMT mise-correlation-id: - - cd50308b-efa5-402e-a3e2-271061575b30 + - fa439b6d-1066-4845-a85b-e63594e06db8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100429Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006nrr + - 20241120T112032Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bv9u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1335,31 +1619,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A35Z&sr=b&sp=r&sig=NLidWMoo2vAZuBMNkDwYwGWeg4bRcJxzOpd%2BfcdqzHs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:35.4654545Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A35Z&sr=b&sp=r&sig=aiPs6N7993lkQzm%2B0UaOLAGfy%2FobO%2Bb5wJDYKzTP000%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:35.4650685Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A35Z&sr=b&sp=r&sig=9TUqJ7dsc1HuzYLb7vgNu93zutwmW2ii492j8pScll4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:35.4655521Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A35Z&sr=b&sp=r&sig=PUknDgnzC1A%2Fc4w7xXEsRNsQa3VjpSz%2F0M5qaKr5QBs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:35.4656481Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A35Z&sr=b&sp=r&sig=EB3%2F2lvKofbV7i64%2BBnIxrpJRI1kWdE%2FNqjtw12FvB0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:35.4657913Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A35Z&se=2024-11-06T11%3A04%3A35Z&sr=c&sp=rl&sig=RXTjaB0jl%2Bzt9BIw9JrlFoUwRYbIPfq3h71ahAEgiDc%3D","expireDateTime":"2024-11-06T11:04:35.4659114Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A37Z&sr=b&sp=r&sig=IL14NVs4EtdfKmlkT80YjjgTnIoABEMcRAbtSasgp5o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:37.8412271Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A37Z&sr=b&sp=r&sig=UGL2%2BzUfgd4qvJEh7iq4e4UH3WFLgkIQu0BJdkL8TIw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:37.8405418Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A37Z&sr=b&sp=r&sig=wWHoTK7hbKV0aUCL9PFnA05yNBpH4de7fT6HlepsTXY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:37.8415059Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A37Z&sr=b&sp=r&sig=UWE0jz4Nich56Q2DeHUNUlPeqoGUcKrmGfwZap0rkak%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:37.8417741Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A37Z&sr=b&sp=r&sig=KBCa7r2VKHk3FCevyTPBGJytsSsN3nk0Y62m2QpVxXs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:37.842089Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A37Z&se=2024-11-20T12%3A20%3A37Z&sr=c&sp=rl&sig=lq4JOAbISfz2R0pYRhSFO2BKdJzRUHdo3KGQpA%2BSIm8%3D","expireDateTime":"2024-11-20T12:20:37.8423731Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.385Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4914' + - '4999' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:35 GMT + - Wed, 20 Nov 2024 11:20:37 GMT mise-correlation-id: - - 5b636e6d-8c2c-48ff-9e1d-edc286c78d04 + - d2025a4f-84c5-4962-8e2e-f22cc7e8555b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100435Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006pv5 + - 20241120T112037Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bvf0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1377,31 +1662,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A40Z&sr=b&sp=r&sig=cHl%2BRRqm1mO7QIPjSppFdqwD4X9sT2K0I569A87XFhQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:40.8065734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A40Z&sr=b&sp=r&sig=1IVDxFt0iWBgI7SEKrUyfHZdjDJ5ZK924dQP7Cne0LU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:40.8057077Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A40Z&sr=b&sp=r&sig=94xt8bawzB7xTj%2F8S3ycQNHy%2FV%2BrUOIFYa%2BBiYFrzW0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:40.8068815Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A40Z&sr=b&sp=r&sig=F7EFmvlN5j7D7ajMxKKfq7J81lsriHGuiv3Xsv3TZrg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:40.8072021Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A40Z&sr=b&sp=r&sig=SV1aO8C5ZfmjVbsqKVohuvodGO2Ikl68jvERc89ZhJE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:40.8076307Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A40Z&se=2024-11-06T11%3A04%3A40Z&sr=c&sp=rl&sig=p1xMVPlOw%2BdjCi9LJOIZzF5DNZmK5hhYagoqyYY90Ak%3D","expireDateTime":"2024-11-06T11:04:40.8079984Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A42Z&sr=b&sp=r&sig=NW35qNSc3aks2F%2FHs1aNby4%2B8yHm7BlaELXkkT3IFFw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:42.9472394Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A42Z&sr=b&sp=r&sig=81s3AN6jp8f6P0DcUYN0xZoo7nLvpFN%2BAeer0Rta%2BO8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:42.9467054Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A42Z&sr=b&sp=r&sig=29CWCPD82%2FHRY7h%2FVq5FGtJ7Sel34MlrVMdh%2FsBgqvI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:42.9474175Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A42Z&sr=b&sp=r&sig=Zjrb9oHGiipYSKgRuKzXSHL%2Bm4LzuSUMRnx4z5MyiPs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:42.9475929Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A42Z&sr=b&sp=r&sig=1KIqtjcuIKVgBpAhUoIX2audmhcc8cFQc6SS9dKd7iU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:42.9477794Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A42Z&se=2024-11-20T12%3A20%3A42Z&sr=c&sp=rl&sig=LFCA25%2BvAancizv4VXAqU4QLF3Uo3cbjMK%2BWTx%2FqYSA%3D","expireDateTime":"2024-11-20T12:20:42.9479535Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.385Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '5018' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:40 GMT + - Wed, 20 Nov 2024 11:20:42 GMT mise-correlation-id: - - a4fecd0a-5e62-4100-ad16-5e816b415784 + - 07027c48-e51c-466c-95fb-6d72bf5acca3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100440Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006qux + - 20241120T112042Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bvmt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1419,31 +1705,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A46Z&sr=b&sp=r&sig=%2Ft7o7QXNJi0G5H%2F%2BSRB8nI4792TLaqcwT1BXkwFW6rI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:46.1180851Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A46Z&sr=b&sp=r&sig=qTKl0kEb3a%2FypmRYbXBk15He0drlBBqYMkp5RdLup6I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:46.1178144Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A46Z&sr=b&sp=r&sig=fB7HNFL7zKYS4M%2FvSzngXltDhJALYA3AMSqxX3ziwk8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:46.1181613Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A46Z&sr=b&sp=r&sig=%2FZ9%2F2AFWNQo5FpHMfhooqPW%2BZ4%2FVbsrTkH%2BxurfAk7g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:46.1182376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A46Z&sr=b&sp=r&sig=yGCr9WZj7bL%2FKYaeZ5yuVaC8dMsEFldJZFXGoholivk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:46.118314Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A46Z&se=2024-11-06T11%3A04%3A46Z&sr=c&sp=rl&sig=SdSHphFZSMV6MH3pofZqZsBr%2BnUVVybA%2FqvZIIdXdfc%3D","expireDateTime":"2024-11-06T11:04:46.1183871Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A48Z&sr=b&sp=r&sig=Rl2EjqFeMR86Xi9Tj2RKvRjA8nsI%2Bo2hpcykRWgTa%2B4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:48.0551571Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A48Z&sr=b&sp=r&sig=glUU%2BGZfFvWYz4l8SFgjdxaIgrbhqlUu930EQ5GP5Lw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:48.0548778Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A48Z&sr=b&sp=r&sig=xZYFHIidJjL1RDO0TTfIBnIEYkP9M7RPetKnZ7AFzGM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:48.0552491Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A48Z&sr=b&sp=r&sig=7fnVGdM3rqukj0S%2BvpQ0hRU67988Fgm%2FBCoA0BzZXNQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:48.0553487Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A48Z&sr=b&sp=r&sig=2%2Fa3r3tH9%2FGGUDZneCMHPiPFce1RRn6n2imAm9uLzjk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:48.0554489Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A48Z&se=2024-11-20T12%3A20%3A48Z&sr=c&sp=rl&sig=esljyngd3Q%2B2g3936jjNYfU92gQJquqmGH8qyBEfi74%3D","expireDateTime":"2024-11-20T12:20:48.055537Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.385Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4919' + - '5011' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:46 GMT + - Wed, 20 Nov 2024 11:20:48 GMT mise-correlation-id: - - 5edf86ee-2b53-4fe3-9550-59f9940a66e6 + - a187b478-2886-4654-b078-322e1d377087 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100446Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006rpb + - 20241120T112047Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bvss x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1461,31 +1748,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A51Z&sr=b&sp=r&sig=xgfw5NP1Yg4eu15vjPNWCyMkYAqAbacF1pm22PJxmZ4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:51.4153368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A51Z&sr=b&sp=r&sig=j8lKJjry03z9ysUiJ%2BpsAr5LYL8lWqgJvISfzkcRZMg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:51.41508Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A51Z&sr=b&sp=r&sig=PH3fCXjjWykzgdRaZrPINCf7dOg5LzpuTlhEHijfQ0s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:51.4154212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A51Z&sr=b&sp=r&sig=cQUFn72D6mpdS6i9hllTuYRUGZxlfOZxAeoMtSR7dqU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:51.4154917Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A51Z&sr=b&sp=r&sig=X1c8pdRV3U0tQP9ZP0l2XJ4WgV8hU0wl017Vff3go0M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:51.4155657Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A51Z&se=2024-11-06T11%3A04%3A51Z&sr=c&sp=rl&sig=V0cKFzp%2BxUsAwfrtJ%2FGM4%2BC2sKSsQFMN9qGNPhePhPg%3D","expireDateTime":"2024-11-06T11:04:51.4156348Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A53Z&sr=b&sp=r&sig=V%2F3LLLQhVGupV%2B1W5clVQ52c6UOsp0ij2zFD1DiU2RM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:53.1622643Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A53Z&sr=b&sp=r&sig=MwFqPSkTyHhNMW44nUAQE8ZmYh8AIGYKtG5hWS8NzRs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:53.1608273Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A53Z&sr=b&sp=r&sig=H9CwWWQeX831Hun8rgyPHHJqOHC77TYYHKETDT6uvAU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:53.1625608Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A53Z&sr=b&sp=r&sig=mBjpkpZIdDcuUqFi44jmIYpOY%2BdvtNVskxGphFBjOm4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:53.1628342Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A53Z&sr=b&sp=r&sig=6Kf9QnazFESI%2BqXsc5uL2cry026HEM7yTxtKRrYC4Aw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:53.1630549Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A53Z&se=2024-11-20T12%3A20%3A53Z&sr=c&sp=rl&sig=qDU41FVIlzwHcYSKb0rqsa8eQfiAu1OrpTUY0qqIj40%3D","expireDateTime":"2024-11-20T12:20:53.1632936Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.385Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4900' + - '5004' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:51 GMT + - Wed, 20 Nov 2024 11:20:53 GMT mise-correlation-id: - - ced69fe6-eb76-44bb-be8e-f6d4754e916e + - cc228c0a-fc4d-4cfb-b689-c7fb91aa675f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100451Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006sd3 + - 20241120T112053Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bvxb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1503,31 +1791,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A56Z&sr=b&sp=r&sig=ok23%2BQ7pYw2XiKZmBQA6DAUPqyry%2ByP3xHBvYWOOYHY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:56.803163Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A56Z&sr=b&sp=r&sig=h6InQ%2BXnGOzAdU26hPk5DIIMgJeaxg9qA8dmCJLZpfE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:56.8028837Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A56Z&sr=b&sp=r&sig=FzsO53Cr0qmoN%2FEmeq4t0l3MIw5caS7nKWIfQgcR%2Fbs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:56.8032607Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A56Z&sr=b&sp=r&sig=HLLERfs3URCKL7C0fbyjjGhEyncbxSVIncWG%2BcifuDU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:56.8033622Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A56Z&sr=b&sp=r&sig=X8NxVUqpoSfyvNfnDBOm8jQCj6FMEn2Ue6DJqPC6vwE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:56.8034608Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A56Z&se=2024-11-06T11%3A04%3A56Z&sr=c&sp=rl&sig=eOSeXpDGdVFobgafSMoOK7WRWb1xb16jXKoyxHt%2FN8U%3D","expireDateTime":"2024-11-06T11:04:56.8035587Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A58Z&sr=b&sp=r&sig=lZ%2BbGh5EcZYV6D%2BoEili3OWzGA7efDultEvd0UFAtog%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:58.2654016Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A58Z&sr=b&sp=r&sig=Ddq%2BXHkjemWiTYg2EbPMBfgQzCVH0NJx7NrzATVceWc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:58.2649518Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A58Z&sr=b&sp=r&sig=vmwolRGXkncy5iudKEfg8ppm6Nppwf7wRl7BW0Mf6bY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:58.2655746Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A58Z&sr=b&sp=r&sig=MatYhX7D%2BdjFuPyjyivHv1vAQjIyUGhq06951uKtDCM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:58.2657517Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A58Z&sr=b&sp=r&sig=7atXikvJTJol9YBKUZj2nhdSMXjca6s%2F3b5cjUR8wbo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:58.2659262Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A58Z&se=2024-11-20T12%3A20%3A58Z&sr=c&sp=rl&sig=NZggWNgAmQXtlQISHSjd1eiP1OwsRYpV6BJ4xylG50M%3D","expireDateTime":"2024-11-20T12:20:58.2661012Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:12.385Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4907' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:56 GMT + - Wed, 20 Nov 2024 11:20:58 GMT mise-correlation-id: - - 9c74e4ce-f69e-43a1-83f2-7f34bd26955c + - bc615617-7ad9-4f03-93a0-f84c671da552 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100456Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006t57 + - 20241120T112058Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bw13 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1545,31 +1834,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A02Z&sr=b&sp=r&sig=6wKjMJdYZ1OlPp%2F4%2Fhnb12KznTUoBhSqVglc%2BOAO7zE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:02.1234135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A02Z&sr=b&sp=r&sig=22GR%2FaBsgTD0vcfTMnBXnI9LkoQmByw00muz09U59TQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:02.1230576Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A02Z&sr=b&sp=r&sig=d%2BucWWLwiEk3KWRhcib53O1niPCQyUhYyTQ6WHanSwo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:02.1234888Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A02Z&sr=b&sp=r&sig=pLNrkHnAsTSWmE7UVKRjq%2Fe92tu5pNDNFr5hPMoixyc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:02.1235641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A02Z&sr=b&sp=r&sig=VuyjDUYJmE04id%2FfbDR%2BefJVVEp5h22Lc%2FzfgtNXDrI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:02.1236348Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A02Z&se=2024-11-06T11%3A05%3A02Z&sr=c&sp=rl&sig=ySm7yhYVhavcEALPOR1aySfkP0X1LQMVKWqXuAaC8kQ%3D","expireDateTime":"2024-11-06T11:05:02.1237036Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A03Z&sr=b&sp=r&sig=wQztdxcYJGLHil%2FCFST7Mluvacu61jUGwpZVDIfN%2FPs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:03.3713577Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A03Z&sr=b&sp=r&sig=el%2FuQMvfBVQbMWrl6EYcv2OgdNNI%2Bim835r8uUXkMYY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:03.370797Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A03Z&sr=b&sp=r&sig=vb4g6Duu2KaYBZfMUxiJmuS6cCWFsjQluy5APunEArk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:03.3715793Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A03Z&sr=b&sp=r&sig=KiaAJxqTIV6YjWvysvdh1%2BteNnDqVzUYj%2FELTjYr8%2FI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:03.3717326Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A03Z&sr=b&sp=r&sig=YhI3mUOSw%2BjA3vFqXa%2B7zSXkLiiE%2FC2XgTs9dJmW2h0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:03.3718755Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A03Z&se=2024-11-20T12%3A21%3A03Z&sr=c&sp=rl&sig=jTtPUq11un%2B30zcaqiDa8EhJwMZoB1v9DGultSCU8W8%3D","expireDateTime":"2024-11-20T12:21:03.3720127Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"CONFIGURING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:02.524Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4912' + - '5016' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:02 GMT + - Wed, 20 Nov 2024 11:21:03 GMT mise-correlation-id: - - 16bde2c5-f1d3-41a7-b0b9-7f6cfe92cf17 + - 78a46e09-c7e3-4ac5-aa9d-5608bd3afa9d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100501Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006u6d + - 20241120T112103Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bw5g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1587,31 +1877,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A07Z&sr=b&sp=r&sig=0YoyzD5WCH%2BS9ve%2B7%2FuV7wExP3%2FhLaah7v3pYuHNMGg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:07.4252486Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A07Z&sr=b&sp=r&sig=aDRCOc%2BU5StKcQ91CbiokceQNIMIscKvbT2PKjijEYA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:07.424986Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A07Z&sr=b&sp=r&sig=o53j8ubK0%2F1f4eUTvZRGKnIr44DRvqdQtOF%2BFWkEXqs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:07.4253505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A07Z&sr=b&sp=r&sig=zbYhaxhuzLH7nidF3Luxw%2BGMmRcQudHnWYP%2FlQyryL0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:07.4254498Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A07Z&sr=b&sp=r&sig=272G0%2F4VjItIRiuizdkfNjz9WMftJ0d3Bzp6kcHcsCw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:07.4255618Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A07Z&se=2024-11-06T11%3A05%3A07Z&sr=c&sp=rl&sig=zVUUXKkTWmPqaBY8rA83%2F4Q%2Fb1YpNpx49jGBxnOG5tk%3D","expireDateTime":"2024-11-06T11:05:07.4256532Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:05.292Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A08Z&sr=b&sp=r&sig=Fvd8vRn%2FktTsSsJdgAKSuTOKtn%2BN5iMEgrgqWpzZN3Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:08.4792174Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A08Z&sr=b&sp=r&sig=YEk7GMjvqumqK%2BpyrrfGz9Bj5eSEqVhJk%2BMPX9KFEfw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:08.4788951Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A08Z&sr=b&sp=r&sig=KzOrNw7M69GIDxWra7a6WhjbrzZ7WcnXJiSFfigbXkY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:08.4793278Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A08Z&sr=b&sp=r&sig=g%2FFeqWIk4d7vJr%2Bt2kz5pVFwERHyhLlNf4z3yTAPk6g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:08.4794159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A08Z&sr=b&sp=r&sig=kXMVPopz67pMxXNgjbO1z8sJ%2BPrjVuuttqQG3UyfZVg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:08.4795029Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A08Z&se=2024-11-20T12%3A21%3A08Z&sr=c&sp=rl&sig=5rm3qQG4I0FxEgFf90vI6mOT7WX4OlEio2XAlYXA2c4%3D","expireDateTime":"2024-11-20T12:21:08.479588Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4916' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:07 GMT + - Wed, 20 Nov 2024 11:21:08 GMT mise-correlation-id: - - e8845645-6524-45a0-a056-159d72cc90a8 + - 477f65b1-116f-4d9e-b571-6f267bc10e09 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100507Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006v6y + - 20241120T112108Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bwb6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1629,31 +1920,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A12Z&sr=b&sp=r&sig=oFIkSD0Xjmb0tRpbe2Z4WHbjH%2B2IAzLOnnDgjmEAQ5o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:12.7455955Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A12Z&sr=b&sp=r&sig=3jNHDIUoW3ORLxE7vgtUdHeHycgr37beHtELF%2BWVUwQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:12.7448481Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A12Z&sr=b&sp=r&sig=8iAqq%2FMs9W3FFzb6M%2BV6GvrO%2B4bXtCYIuoZYW3BwZQI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:12.7458037Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A12Z&sr=b&sp=r&sig=2ys7SJrorm%2BNk27tf7SP%2FbgT4hqfVhxSTGoP7CY7JdY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:12.7459895Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A12Z&sr=b&sp=r&sig=aBSiuIK0zh64dandhxm1vDqwnt%2BJcedEp5HghMOUx2E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:12.746187Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A12Z&se=2024-11-06T11%3A05%3A12Z&sr=c&sp=rl&sig=NhHUwLuKBAGY726mMDa%2BFMoIf%2FW6R%2BIpbgkQBW0LDFs%3D","expireDateTime":"2024-11-06T11:05:12.7463736Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A13Z&sr=b&sp=r&sig=dHknsWuURZy38xhu8WkERENSR0uY4kFwnfQxWM0YbqE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:13.5887998Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A13Z&sr=b&sp=r&sig=C7304Kxjm7MUfiSk%2B0jbVfblpJJg4AO67FHvU5srNQg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:13.5885424Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A13Z&sr=b&sp=r&sig=7O5tZPk9o6Cv0vtlQla5MVEzE7hnO9TxZmw%2BwLBI3DE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:13.5888814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A13Z&sr=b&sp=r&sig=SVFxAIn7baiAY3%2BtBrTWTDbVWmU2SadmHr1jeLg%2BxEc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:13.5889658Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A13Z&sr=b&sp=r&sig=QCnGkbXDcea3cjk%2FCRqpa3gHDdhasDG8E6KKFBedyIs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:13.5890585Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A13Z&se=2024-11-20T12%3A21%3A13Z&sr=c&sp=rl&sig=w%2FfH7Fj5huRr537BooLDfAdosHYnm%2FlglWVJAkM6ek8%3D","expireDateTime":"2024-11-20T12:21:13.5891433Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4912' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:12 GMT + - Wed, 20 Nov 2024 11:21:13 GMT mise-correlation-id: - - 04cbf125-690b-4483-bb63-ebdc7d09b627 + - 7acf423a-6180-4bb8-b203-4f2abdcc3979 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100512Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006w38 + - 20241120T112113Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bwg2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1671,31 +1963,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A18Z&sr=b&sp=r&sig=1ABFEY%2Bnt628UrFDx2gwhVdXvtYP2MuLTmLBS3HQk1U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:18.0866102Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A18Z&sr=b&sp=r&sig=0wpgTXWuheIfnZOTpV5fHmPjjgJUchCv9dH97%2FcPL9M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:18.0861193Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A18Z&sr=b&sp=r&sig=pzAzX0IBbNVlsDXtLgW7f2owXBCkoDzILN0bgqVB2pY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:18.086814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A18Z&sr=b&sp=r&sig=6EduQKl1UTsi%2FqYnaozPgKkMwxs9NCSFee7wnTFLmy4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:18.0870074Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A18Z&sr=b&sp=r&sig=8mJFwbiZU9URbhfUA0y8kXGvgF26FlHV5yYlqmFPe84%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:18.0872046Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A18Z&se=2024-11-06T11%3A05%3A18Z&sr=c&sp=rl&sig=DUbHLhfQfPGmGNx8WEufryVQb22ttKc5XrXIQdoYQj8%3D","expireDateTime":"2024-11-06T11:05:18.0874013Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A18Z&sr=b&sp=r&sig=uwgeo%2BQ34wL4g9mX4Jq5cQsUKLILaft0D6zhEsc9aGs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:18.6924708Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A18Z&sr=b&sp=r&sig=PscIHlp3c2Dci50cilDHwgX0erMAyHoD8yCyh%2Ftk11I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:18.6921938Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A18Z&sr=b&sp=r&sig=u0W9Zfbnbu%2FqNl3Q1k%2BNaaP9jaWqeyNwEShnUgRFCmU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:18.692564Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A18Z&sr=b&sp=r&sig=%2B0oqFguTw3Y0qn3%2B0hI727M5wEkUIkrV2z4L5ITpNjw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:18.6926536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A18Z&sr=b&sp=r&sig=q%2BTxJlGZcrwU8w9PWV0uKlWdR%2B1%2Fsw4LhGRpCkp937U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:18.6931341Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A18Z&se=2024-11-20T12%3A21%3A18Z&sr=c&sp=rl&sig=ESFHfYx1vVr3s1xAzqT88J7bG3vVKVnzECisuP0lQes%3D","expireDateTime":"2024-11-20T12:21:18.693272Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4896' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:18 GMT + - Wed, 20 Nov 2024 11:21:18 GMT mise-correlation-id: - - 148e1928-dc35-4e9c-af5a-fc1e2bea51a3 + - 8615d77b-c22a-4c95-a44a-aa96c6c6b3fd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100517Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006wsz + - 20241120T112118Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bwqk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1713,31 +2006,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A23Z&sr=b&sp=r&sig=VFm8R3vKW68rj5%2BiSji6j8CenGsClhd30RWa5npBkH0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:23.4470716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A23Z&sr=b&sp=r&sig=47uqZmvKY3Of6MD168m%2Fpll9n0GSx3eKfeRoJ%2B0i7lk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:23.446433Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A23Z&sr=b&sp=r&sig=4%2F414V9Ylbpdarhozn9VEo9mQ9DYM44frvPrPNnJFLM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:23.4473459Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A23Z&sr=b&sp=r&sig=RzfhLhwNWh28Bo7htDUMNvrQ%2BPj%2Fobytncf%2BuqSCaLU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:23.4476321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A23Z&sr=b&sp=r&sig=9earJxmSMXLI0tFn0RH3wJPwLrXvs%2F0BAkZF8misqsM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:23.4477234Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A23Z&se=2024-11-06T11%3A05%3A23Z&sr=c&sp=rl&sig=Nq4b2GBN4NOMMFOSL2D759mamkFSuu1C0Hix%2F%2FtaNS8%3D","expireDateTime":"2024-11-06T11:05:23.4478208Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A23Z&sr=b&sp=r&sig=bq%2BdEf8DXibveyAQ4EW9dHVY5%2FbpzHsJs2QSnhCOQKM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:23.7985645Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A23Z&sr=b&sp=r&sig=Fn1Nm8DIi9HOMD7Emk5saKzFVHsAEMuI%2BZsDz3n9tJ4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:23.7981988Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A23Z&sr=b&sp=r&sig=TX79S3bz%2FQhRH8Yk6FUyyDuHsmiVFvN3bLOoHwik46U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:23.7987047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A23Z&sr=b&sp=r&sig=IKQJ5r%2BQQXSJAmbM6bk1hJcKRPD5%2B4cSvot%2Fo8IJa1k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:23.7988435Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A23Z&sr=b&sp=r&sig=HfDqDzJEUYvDXsYHvxxU3gym0y7IlJN14tceuy4uMFM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:23.7989852Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A23Z&se=2024-11-20T12%3A21%3A23Z&sr=c&sp=rl&sig=R%2FRT8dn3LzR8816IYuhPE0tvddvk2bMxumU1MnCJFRI%3D","expireDateTime":"2024-11-20T12:21:23.7991236Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4910' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:23 GMT + - Wed, 20 Nov 2024 11:21:23 GMT mise-correlation-id: - - a049459c-641f-4f2a-8bb4-b69d2de464c5 + - 384c5d2b-683b-4a02-bdfa-19a8bfac5cfa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100523Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006xkx + - 20241120T112123Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bwxq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1755,31 +2049,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A28Z&sr=b&sp=r&sig=t%2BEIdkEO5aTzaQPNPbUW72XcW1Bnq49uUv9kWtyWFjk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:28.7362525Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A28Z&sr=b&sp=r&sig=57gCbAbO66fdumLyTZ6Y0LDdk4KnJe5%2BcAw71YLNQgQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:28.7357238Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A28Z&sr=b&sp=r&sig=uEguFkuay1Y8gHTl11T2LBd678vStEmtBtPKUs%2F5Wno%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:28.7364546Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A28Z&sr=b&sp=r&sig=lhSg7pxhROFR19q0w4xPzjn8kFCdDEheUO8G%2BTMijg0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:28.7366451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A28Z&sr=b&sp=r&sig=GbKenXpz%2BToWK%2B2mKSM%2B5ZsCLF%2F64LeCQd%2BnSqPG9uU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:28.7368426Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A28Z&se=2024-11-06T11%3A05%3A28Z&sr=c&sp=rl&sig=Sf%2B3KbhJ45MlEd%2B1ohKLbzFDn1T4mgtSp%2BVg53BwB7g%3D","expireDateTime":"2024-11-06T11:05:28.7370739Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A28Z&sr=b&sp=r&sig=b1X%2F6fbn98mOUsw%2Bga5ABmGg0Kv4OXf0sUKTYWqefv8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:28.9042286Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A28Z&sr=b&sp=r&sig=Sy%2Fp767Dv%2F8hs%2FDUMYyhu7nLlo%2FbgMzY0Sy%2FAcuV%2FLY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:28.9039659Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A28Z&sr=b&sp=r&sig=eB4qONATC9ev9Jlai6kmQBGkfZ7AYAq4FnQRHCI7t3E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:28.9043152Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A28Z&sr=b&sp=r&sig=Cuuz2eCap3slylgkG%2F372d%2BooIfyOAiqcKI%2BFKBY6MQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:28.9044013Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A28Z&sr=b&sp=r&sig=5%2BjkM0C4xvVDtjsTp9Xh4NkAWEDW3fq%2FiC8q6WcZmO8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:28.9044854Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A28Z&se=2024-11-20T12%3A21%3A28Z&sr=c&sp=rl&sig=sqOPUjXZJd59CVs0Ygfa7f%2F7rgpZdrztVLxKlPHKgaM%3D","expireDateTime":"2024-11-20T12:21:28.9045707Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4915' + - '5021' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:28 GMT + - Wed, 20 Nov 2024 11:21:28 GMT mise-correlation-id: - - 3d41eedc-3d39-4663-94b9-56d405411691 + - d0d7fad5-cd9d-45f2-825e-fb5ac2de0cce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100528Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006y95 + - 20241120T112128Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bx43 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1797,31 +2092,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A34Z&sr=b&sp=r&sig=Fc1FiRLH2rtUnuEvakJDebC6bEe%2FpS2US98FAndrvSA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:34.0554328Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A34Z&sr=b&sp=r&sig=iUCMqiPxn7du%2FHq0Uj54skPPiKiVc4ihI1HSeMAm7fk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:34.0550079Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A34Z&sr=b&sp=r&sig=hKwXrwecefGcVTv8xqzKvkTVs1nb0H9%2FvR9wgLagEPU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:34.0556227Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A34Z&sr=b&sp=r&sig=OdNHbr%2F6h%2BMcj4r2sJs467l9JvoLZaVpB0rF1TvmI28%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:34.0558401Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A34Z&sr=b&sp=r&sig=L3TVdghdrlEaVlG7b%2FFAhdFv%2FoIIAVJ3FwlH8S2Z0LY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:34.0560136Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A34Z&se=2024-11-06T11%3A05%3A34Z&sr=c&sp=rl&sig=eSoEQpdlUa75fQlTbUtAvCs8RM9qYNdH6eI5qtfgxR4%3D","expireDateTime":"2024-11-06T11:05:34.056184Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A34Z&sr=b&sp=r&sig=S6dDus2SP8SeRxCjyMo3sHmb%2FtFJXnuHItYPm2UOZys%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:34.010952Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A34Z&sr=b&sp=r&sig=u1gQGrYFpkPQ%2BWh833yo234A%2B%2FQWAkioAvzagt9cheo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:34.0105332Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A34Z&sr=b&sp=r&sig=VxP8AVch2LbsfdQIC6q6X1TryTe%2FpjaXIIuhHCL1H6o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:34.011119Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A34Z&sr=b&sp=r&sig=TuTfflDYCtgkH%2FHfdRKDoEQUd9qKVPLT%2FahhtDGMoao%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:34.011274Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A34Z&sr=b&sp=r&sig=VorpLWEyjYokvS7XKCuziU2ThpCm1LKQoy6TcUQHSGc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:34.011378Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A34Z&se=2024-11-20T12%3A21%3A34Z&sr=c&sp=rl&sig=xj8zC9kOcGE4RHYihLrDA%2FfpAdhrEQ1HyzAn5s%2FpSBc%3D","expireDateTime":"2024-11-20T12:21:34.0114517Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4904' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:34 GMT + - Wed, 20 Nov 2024 11:21:34 GMT mise-correlation-id: - - 23b906fc-a4a8-48ab-8b8a-1dfd0ba42bc1 + - 7bbbcc8c-dfa2-43d3-937b-3b98582137da strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100533Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006z38 + - 20241120T112133Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bx9c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1839,31 +2135,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A39Z&sr=b&sp=r&sig=t2oQnsxnTQm9ZAig5n%2B1cfkD9rWZR4T%2BUWRDcDJXtNI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:39.3515556Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A39Z&sr=b&sp=r&sig=O5ihC826CghAXm3Nz%2BKic%2BBnhsy027vNw9j5JoOZXh0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:39.3511614Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A39Z&sr=b&sp=r&sig=xfUJWWuBEStRNOZGP0y%2B9pXJ%2F9VzqwgAHmjjMcYW7HQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:39.3517365Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A39Z&sr=b&sp=r&sig=V%2FXMVOFoy1nBQ%2BX1kV%2FXsylK4SnUS6fJi2zW2uYp6TA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:39.3519153Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A39Z&sr=b&sp=r&sig=JJ%2FKncym9JZp4OocHRw3Jo5iOBWKAebzB%2FnvILg3X%2BU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:39.3520963Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A39Z&se=2024-11-06T11%3A05%3A39Z&sr=c&sp=rl&sig=mAFf%2BlvKe2mZ7VTJ5pmzanaN7eK%2BXzPFUzZOqgg74C8%3D","expireDateTime":"2024-11-06T11:05:39.352273Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A39Z&sr=b&sp=r&sig=Vrzu6LSICrdhSB3lpIhvrkfG%2B6pHUwmRAsSIE3nIx1k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:39.1241135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A39Z&sr=b&sp=r&sig=Oe%2FsUPPq3yIC3n3nmmyQIpT%2FPOTt6LdR4qswZpElEj4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:39.123699Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A39Z&sr=b&sp=r&sig=HhsC14J9OELoL4%2BnpIrwpzYMFsg0BcfP3zV6BvY7SfA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:39.1242921Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A39Z&sr=b&sp=r&sig=JQRu13KcuBPsvjInW3zpSCnfaMGWBnYJ2SWtv8IIjiU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:39.124496Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A39Z&sr=b&sp=r&sig=LPw1tXwDjOVdzNEOjtz8PsKc17WplukbmRHqenihDv4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:39.1246777Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A39Z&se=2024-11-20T12%3A21%3A39Z&sr=c&sp=rl&sig=yV8m5%2Fu9fHN%2BgQq%2Bm2qXnPY%2FjIt0L4fi7yTHc%2FIOVK0%3D","expireDateTime":"2024-11-20T12:21:39.1248562Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4918' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:39 GMT + - Wed, 20 Nov 2024 11:21:39 GMT mise-correlation-id: - - 952dbc6b-9ca4-4967-bdb6-6df574b363b4 + - 1171d8ea-55f2-4201-9622-98187a146aa7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100539Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006zwf + - 20241120T112139Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bxeq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,31 +2178,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A44Z&sr=b&sp=r&sig=yc%2FOgR3DLxDKNBcrRAkWpYeogg6qYNhcJgoM3gsNE5U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:44.6440167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A44Z&sr=b&sp=r&sig=ETkGzLSqFyQzdqHi8i4eAmgCL5asHm4aYSxCa3zqIEI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:44.6414333Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A44Z&sr=b&sp=r&sig=YQgcOR6kUhozv9GRq8obZ0GXhiiqo%2BZrwHQwNOOHpZg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:44.6441623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A44Z&sr=b&sp=r&sig=KFBYLgwC4E4KK%2FK7L5V9rAInMo4fX7v1%2F0mMJeE6kAw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:44.6443175Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A44Z&sr=b&sp=r&sig=%2FuKLpq6vWuudPcCmZ%2F3SD7kTXs%2BApJHLtZ7AUKASBU8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:44.6444758Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A44Z&se=2024-11-06T11%3A05%3A44Z&sr=c&sp=rl&sig=zlXW0nO97gvMPAK0U%2FRyXe%2BtF9mFdIaio7SZyRx7%2Bf0%3D","expireDateTime":"2024-11-06T11:05:44.6446312Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A44Z&sr=b&sp=r&sig=CaX%2BwNZ8e8HhXJwkSLNK2KJifWA%2BZvQzW1XrBBnEM5c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:44.231081Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A44Z&sr=b&sp=r&sig=vzHLlrPab7kwRUgu7xk%2B0uc7vwwRgC0YPnrl8lJHOXU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:44.2306516Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A44Z&sr=b&sp=r&sig=rubzZQ%2F%2BFFrfIqIZ6IthjrzZ4vRQPidpEZa3fSGE0sg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:44.2312191Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A44Z&sr=b&sp=r&sig=n1yVNEKPudCLgiwW140FkhYasMDxrmYx3AI4h%2F44f9A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:44.2313611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A44Z&sr=b&sp=r&sig=clvhBA35uYSFWcAj90zIwb84PA%2FAbd%2BdyI4J%2Fusu%2Bi8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:44.2315267Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A11Z&ske=2024-11-21T20%3A20%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A44Z&se=2024-11-20T12%3A21%3A44Z&sr=c&sp=rl&sig=vTXLIVtipr%2FOt3X3h5dz3MYdbQGP0XcGuRUGzrFubec%3D","expireDateTime":"2024-11-20T12:21:44.231666Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4911' + - '5013' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:44 GMT + - Wed, 20 Nov 2024 11:21:44 GMT mise-correlation-id: - - 807fd193-ef0c-49f4-8dbc-1ffc809f698e + - 8e0b9918-1386-45cc-ac11-2642f24a23e2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100544Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000070hc + - 20241120T112144Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bxmw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1923,31 +2221,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A49Z&sr=b&sp=r&sig=7S9%2Bnf94Zw9JWcIA%2Bj7hHHCKEaXwOkbWV7AoWw8uIrE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:49.9540827Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A49Z&sr=b&sp=r&sig=jFq%2FoaNka5Odyx8zUiYAFyQVoFSq7vMfuFMLO4sfgoY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:49.9526505Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A49Z&sr=b&sp=r&sig=%2FzmM2unXnC53KDLVZqmWb%2FlohHrKpq5IDdc14nsHZnU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:49.954302Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A49Z&sr=b&sp=r&sig=8XwIn4XQzeVTOdoS1EkL44mBsSpd5H8bnn0cjC0MlN0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:49.9545347Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A49Z&sr=b&sp=r&sig=ie40BXSuM9vzHwg0ICe48dMgDdkuENfx9yhzaA0JX1U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:49.9547719Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A49Z&se=2024-11-06T11%3A05%3A49Z&sr=c&sp=rl&sig=rKwiQ1rdH1OTCGN%2FuMGP10re3VdVDacmyuHT4PkrF0s%3D","expireDateTime":"2024-11-06T11:05:49.9549974Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A49Z&sr=b&sp=r&sig=1dL%2F7CCb5RjXK1RV%2Bi8DowQheXlByl5TRB4OZdLdP2M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:49.3336378Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A49Z&sr=b&sp=r&sig=RscefjayPVtt0y%2BT6UjDS4h1miuV973EJ41bTZR4PWw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:49.3333355Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A49Z&sr=b&sp=r&sig=6Gy6n94AG6MHXxvbG%2BWWkaIiLsBhaXctk1dN866C5rA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:49.3337205Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A49Z&sr=b&sp=r&sig=Jt%2Fo1V40dSydZZK%2BEQMHvm5qVWazKiYfS5U%2F5yD1TFk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:49.3337977Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A49Z&sr=b&sp=r&sig=WuVHz9IBTApfTOyu6RiQzt8pBjmqreLxrISNZImww%2Bw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:49.3338825Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A49Z&se=2024-11-20T12%3A21%3A49Z&sr=c&sp=rl&sig=0o4CLq5NJ6MNuDcSclPnUK9VEXLXvsz8fGVmJwz6i2o%3D","expireDateTime":"2024-11-20T12:21:49.333971Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4902' + - '5008' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:50 GMT + - Wed, 20 Nov 2024 11:21:49 GMT mise-correlation-id: - - 0b7bf512-5287-4d25-b255-0a487a32dc89 + - a5f05d2d-b80a-4e09-b760-a22e5454f213 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100549Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000071c4 + - 20241120T112149Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bxtc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1965,31 +2264,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A55Z&sr=b&sp=r&sig=kV1nRMASFmGZcV0DPR20HFrV6D%2BpII6EYfW5nOV6PFY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:55.5972097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A55Z&sr=b&sp=r&sig=xmCkqYZ2Rwnt%2FM98Q7sRKSPKumVD2EfOVHpE1t2O6ko%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:55.5969262Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A55Z&sr=b&sp=r&sig=vh8JV6pI6ocxVElHTjqIyAPpIIIeuJccYU40gC3P35g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:55.597305Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A55Z&sr=b&sp=r&sig=HyQ0an15fsknu6kLQjluD7xhAOBW9WB7MsuOZE3cBac%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:55.5974019Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A55Z&sr=b&sp=r&sig=Gu1%2BCGE9ItxE9YqldqeMxJkjzdfzHVzsOVhP33hhAIQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:55.5974962Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A55Z&se=2024-11-06T11%3A05%3A55Z&sr=c&sp=rl&sig=aA%2FSQrzwxZ8cUwwf8Vr9KPUYncstZHYJ8rd1SczMcIs%3D","expireDateTime":"2024-11-06T11:05:55.5976229Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A54Z&sr=b&sp=r&sig=9aCHZ3VqmCEHpcEOAxO1ingjTq0W%2BB9FUw2Gah4LrxM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:54.4397884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A54Z&sr=b&sp=r&sig=VYcjcVOCqWgO%2B0ZxkV71gHiaSQzbwm6XXxARk%2BRf3Ds%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:54.4394833Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A54Z&sr=b&sp=r&sig=DiWLyimfLbdzqAyrf4mDi7dzOEUehPMldeB7F%2BTZyOI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:54.4398879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A54Z&sr=b&sp=r&sig=%2BqVy0T6IbGItv7IGawPni8Y3%2FbXGxYIXdu65au5HnMY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:54.4399934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A54Z&sr=b&sp=r&sig=ZwLE8g%2BgZ3XcDS3qBGJ3730cDD3ws8%2FgnfOUnEPNcE8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:54.4400896Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A54Z&se=2024-11-20T12%3A21%3A54Z&sr=c&sp=rl&sig=TyNd4M%2FufZd1f3127b%2FNeZj%2Frsoj1TMdbf4Rd6n4u0M%3D","expireDateTime":"2024-11-20T12:21:54.4401839Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4898' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:55 GMT + - Wed, 20 Nov 2024 11:21:54 GMT mise-correlation-id: - - fe1f27ba-2e67-4369-b983-6056019d7363 + - 1404afc9-b535-463f-be79-eae736be493f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100555Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg00000000727e + - 20241120T112154Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bxwy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2007,31 +2307,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=UvQd36k4Aaz885h%2FbiCDKRR67SOH4WkD%2FtmlkTU85jI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.9005128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=ALE6KVGk1cYosVGSErSFmUy04hq0hM5FuXIRWg64mCw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:00.899993Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=fmvgjwtUm9PUJI51kecrBu6u%2BsflF%2BxzJu0GENvDoKY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.9007198Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=IUNjir1tm1cK4NVE9cyueyOTZ9znoEi%2BmClIJLqLamQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.9009419Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=XZrYGVflJX7e45ZcT%2BSexiW7hUfTFABKxTne2Xc%2BTLg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.9011453Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A00Z&se=2024-11-06T11%3A06%3A00Z&sr=c&sp=rl&sig=nFnQGF0dkdc8z2Iz4yrzVKib7xM1uZzaK0jAm9PYUCM%3D","expireDateTime":"2024-11-06T11:06:00.9013651Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A59Z&sr=b&sp=r&sig=fVXkC0oNCltulFwFXav1Xxg2hHee1xXXRXmtMkbQFlY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:59.5467354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A59Z&sr=b&sp=r&sig=MaUevjqxvpTaQZujqxNxa91wYHd70ajA5OXSwvxI4EE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:59.5463217Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A59Z&sr=b&sp=r&sig=EV0Q0eRA4BKsO0lqUCItoQf0GMCXJ9kyPbsGaZXEzsk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:59.5469146Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A59Z&sr=b&sp=r&sig=dDn4ROo9Da4k34365Zj2LthjWsB5V4rhnJg7m3BJqhY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:59.5470722Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A59Z&sr=b&sp=r&sig=ZX5%2FxDxKnXR4MUAZv3r57YrYUS%2Bch5K5kq1V9EK9uXU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:59.5472501Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A59Z&se=2024-11-20T12%3A21%3A59Z&sr=c&sp=rl&sig=t1%2BzESMM22DMD1uGp341V7T4uPec8akFNuivUSNyGgc%3D","expireDateTime":"2024-11-20T12:21:59.5474205Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4904' + - '4999' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:00 GMT + - Wed, 20 Nov 2024 11:21:59 GMT mise-correlation-id: - - 96092d03-9714-41b1-9857-6794eb63d9a2 + - 2b8af7d0-8649-4ead-a96c-bc64e8f8891e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100600Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg00000000731w + - 20241120T112159Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000by1s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2049,31 +2350,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A06Z&sr=b&sp=r&sig=knEmtfNrwS5Fop9fT30NOe1TqVjVyInXojCtu%2BFWA0M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:06.2083046Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A06Z&sr=b&sp=r&sig=bF90hvf8JCNYsuonls0gSJ3rmsBENI73bmKjQMaC%2BGM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:06.2078592Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A06Z&sr=b&sp=r&sig=T2dWEvhknvYzopRB5d5l1DQJT2vCNQMFwb9Jnuzt9GA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:06.2084852Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A06Z&sr=b&sp=r&sig=uF2tJgJLJa42RXmMI7FyEAyA7RugnU7gWTxzuzXkgvQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:06.2086151Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A06Z&sr=b&sp=r&sig=rjGxEBjv9Z0cSVX7Q7CBa28hayWTy7YnBHiFzuOAnCI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:06.2087581Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A06Z&se=2024-11-06T11%3A06%3A06Z&sr=c&sp=rl&sig=9FqMlJz2vZsgORIJ8VG70dCDrtt%2FDQeEwGeGWbcp3%2FY%3D","expireDateTime":"2024-11-06T11:06:06.2089044Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A04Z&sr=b&sp=r&sig=3EAStzOm6g5I44eZUxRcIoblStbOv6f56IhGBumCq60%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:04.6495424Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A04Z&sr=b&sp=r&sig=5R7oryTqpti0E%2BrjLAW0pH2PO%2F2hz8WI4wEdckg%2FGNU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:04.6489848Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A04Z&sr=b&sp=r&sig=%2F7aCICQy4AP%2Ft0%2Bo0ulWIZWhNG68AwA6r2uKOgVlOqE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:04.6497299Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A04Z&sr=b&sp=r&sig=fHmkBm%2FA1XrktLRBCZbnRLialSfwP29q504XslFWBzM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:04.6498523Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A04Z&sr=b&sp=r&sig=X1T4Sv2u2HNdtGWpHQor66Tf0AyimRbI9iHxT4GF1oc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:04.6500132Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A04Z&se=2024-11-20T12%3A22%3A04Z&sr=c&sp=rl&sig=nIGAdKSdaHygeIzxccN6aJJ9KsaJc8pDpnzIqnTORaE%3D","expireDateTime":"2024-11-20T12:22:04.6501599Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4899' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:06 GMT + - Wed, 20 Nov 2024 11:22:04 GMT mise-correlation-id: - - 5663c574-e8df-49d3-8d00-699b72e5b61a + - 5d5405da-308b-4125-bb9f-1ffdb6bc7d31 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100606Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000073w5 + - 20241120T112204Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000by6n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2091,31 +2393,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A11Z&sr=b&sp=r&sig=paSWpUpcEaxVi8OgGxylIAb%2BcfQaluiBHnyUOxAPKSI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:11.5209578Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A11Z&sr=b&sp=r&sig=6%2BvldFymlfYpGQ0TR%2FRFLAGLQvr1sKfTlse%2Fw627p3c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:11.5203352Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A11Z&sr=b&sp=r&sig=RfTpH16q%2BjO4%2BdyhkqZuJB7Xmp5rwNgnBUL3Yv6btzM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:11.521164Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A11Z&sr=b&sp=r&sig=kt0JLDAGovE6L0sCl6E740wCtTTgMspILIYQYPVHjuo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:11.5213796Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A11Z&sr=b&sp=r&sig=AEXIEt5M84WbcVPrJagDh4k3ruXdTUTZxJ9gqLWd5EA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:11.5215823Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A11Z&se=2024-11-06T11%3A06%3A11Z&sr=c&sp=rl&sig=hN9mzpprX4%2Bm2A25ZYLNerwhv4z1PSdhCSjyZ%2BPEMZU%3D","expireDateTime":"2024-11-06T11:06:11.5217927Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A10Z&sr=b&sp=r&sig=O7wpg5d3wQwBGxNGTY6%2B7d%2BWGc7ZnkEx80hI%2FJP677w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:10.6673591Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A10Z&sr=b&sp=r&sig=9lFQluwgt6wOnva3PJ1yPasBYsLvvS%2B8UhG%2BhVnyE2A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:10.6669797Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A10Z&sr=b&sp=r&sig=4zvOJw3yl6WOxSlq1cz%2FoeCrWuIPyx6bd0JL18rgv%2Fk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:10.6674583Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A10Z&sr=b&sp=r&sig=j9K5jTAZ2ggN7O5riDNfeROU8Uafr%2BxIesHL6wtU61Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:10.6675702Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A10Z&sr=b&sp=r&sig=piPNq3a%2Fg1RZ2fyiXugdQ4zVDKkpdxXJehlLXbSoRwo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:10.6676692Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A58Z&ske=2024-11-20T18%3A18%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A10Z&se=2024-11-20T12%3A22%3A10Z&sr=c&sp=rl&sig=Cj%2BplJcgu9CFVj4I7asoX5fV%2FRyTn7fzEi84JG7qiNM%3D","expireDateTime":"2024-11-20T12:22:10.6677654Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:11 GMT + - Wed, 20 Nov 2024 11:22:10 GMT mise-correlation-id: - - 38bb0404-4e93-483f-9e80-5868309a4323 + - 49e7d253-d447-4e31-a39b-8be974c9d72c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100611Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000074qc + - 20241120T112209Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000byb6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2133,31 +2436,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A16Z&sr=b&sp=r&sig=dLsSknSCz3sXyJW%2FY%2B1UafiMrW1OKuw01rLHrkC%2BeYs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:16.8282978Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A16Z&sr=b&sp=r&sig=K3NXG27PGfmezI5vpnuCCKtFul4FlNrOm354buu39Qo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:16.8279924Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A16Z&sr=b&sp=r&sig=oUH%2FOPfd%2FZ6h6cAXq6q9zUY1v7RPg4icRIV%2FMDqU9lc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:16.8284178Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A16Z&sr=b&sp=r&sig=fCrI7wQOhPZaupJ8QJmLMJ1UFUSLF1F8AVl4D7RmxGQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:16.8285391Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A16Z&sr=b&sp=r&sig=RuzzK%2BmhZApgIiVkILBz8cQV%2Fu4jzuukbWw7HUILUfk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:16.8286582Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A16Z&se=2024-11-06T11%3A06%3A16Z&sr=c&sp=rl&sig=oW7Go6yBx2nIoJbyhK%2FtQM8StKIxUCV33J9xjBxnYdg%3D","expireDateTime":"2024-11-06T11:06:16.8287743Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A15Z&sr=b&sp=r&sig=Io6ACpvAL8hKpN03kLUwKDvpAs0rWeYz8ZMeK8N5d20%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:15.7793805Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A15Z&sr=b&sp=r&sig=PpP%2BYUisxAtEsMpcgVVfmUGim5nJiNk%2BJGQos3L3Ms8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:15.7788257Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A15Z&sr=b&sp=r&sig=IKfyED4henQ6r6DgCLx6kWOiclWcS2I8c27uQ0A%2FM8Q%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:15.7795348Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A15Z&sr=b&sp=r&sig=1NKosl3JsDI6jIHR2n%2FIxULBjkXzroAlQktyO%2BuaUEE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:15.7797521Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A15Z&sr=b&sp=r&sig=vWuzJNNE8wXo31ZNbgeLAWzNbMNsISoft%2Fie0Vfduto%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:15.7798929Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A15Z&se=2024-11-20T12%3A22%3A15Z&sr=c&sp=rl&sig=TbTZIh3zbNVWP%2FskOxnJ1tiRQ6z%2FsIzz1e4fcBUUwHQ%3D","expireDateTime":"2024-11-20T12:22:15.7801181Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4909' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:16 GMT + - Wed, 20 Nov 2024 11:22:15 GMT mise-correlation-id: - - 67727089-fe92-4a5c-b237-9cceea3df487 + - bb6800ac-ec2d-4f15-ad50-608dc5440cd6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100616Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000075hd + - 20241120T112215Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bygq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2175,31 +2479,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A22Z&sr=b&sp=r&sig=G4N%2FIvkbhdNjKYYk1PlY1BXbPGxhc0st4J0HidDqng4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:22.1310558Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A22Z&sr=b&sp=r&sig=H6dNMn6SqA9PzY2bdWtp5hP52bBPvG7DTuLgXcQMpNQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:22.1307784Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A22Z&sr=b&sp=r&sig=6zZjRsMMNoj7SEoSbXYYq4rV7BB4EDjgSQelfbuZDVA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:22.1311506Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A22Z&sr=b&sp=r&sig=hC1y9zmAgjk5OC7MT%2Fn6RDAlG6JRwVPxDY4DOWxvrRE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:22.1312473Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A22Z&sr=b&sp=r&sig=vlS%2F0C5ggT4vFQhpsChrL5E819hLjocZlqoloe84QEM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:22.1313398Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A22Z&se=2024-11-06T11%3A06%3A22Z&sr=c&sp=rl&sig=xU%2Bo%2BnTGwf3GgUy1YVWiiRtdIUdF6LX0EZxCgvCd6Uw%3D","expireDateTime":"2024-11-06T11:06:22.1314304Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A20Z&sr=b&sp=r&sig=am9F3BbSbTykRmWU8qHYWbmbBozP6I%2B3O64HnrL5rmM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:20.898424Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A20Z&sr=b&sp=r&sig=EjYBye3YukdwjRD9qDtANIhKhwebTARkGhzaLG9gxA8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:20.8979563Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A20Z&sr=b&sp=r&sig=%2FGnqXfRxrInNHNSk9v2BQyR0wWF9Ih%2BsAXnfjfKIeCA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:20.8985982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A20Z&sr=b&sp=r&sig=DyLNePT9LmTKusdmzxu6XtNYBark%2F%2BO2d8ljXHe8EjE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:20.8987753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A20Z&sr=b&sp=r&sig=jeGcnJMr6BmSfgC45l6LpMDNzkPnv%2B71Dpp08%2FYv9GQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:20.8989493Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A20Z&se=2024-11-20T12%3A22%3A20Z&sr=c&sp=rl&sig=vjdZAQznm7Lx7mjfRY5EcCFYMA1DoqsE3Yh3yYc3Szs%3D","expireDateTime":"2024-11-20T12:22:20.8990838Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:22 GMT + - Wed, 20 Nov 2024 11:22:20 GMT mise-correlation-id: - - 1546e602-f0fb-415b-b518-18fb6e2a6f6f + - b027cb9b-479e-4177-852f-051c11ba4506 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100622Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000076ah + - 20241120T112220Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bypm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2217,31 +2522,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A27Z&sr=b&sp=r&sig=P01bYe8UX31M0faTtTBjV58M9%2FOzRCPA6qEs%2BulWjD0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:27.4370334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A27Z&sr=b&sp=r&sig=7cuGgdSRmKtlRun9huXOFHaEN854wst%2FLCqMeUWvO54%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:27.4365476Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A27Z&sr=b&sp=r&sig=yVS86PJ8rBNXD5AP%2Bf4QdR2koQtUlKfybRymwH7SYRw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:27.4372356Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A27Z&sr=b&sp=r&sig=4UqbgdzCQ%2FGiamSy5l%2BO5xdGuwh5aqikuAa2nhJVZYo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:27.43745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A27Z&sr=b&sp=r&sig=YE49ZCljjGNIzjN8jQ74jLd6%2BRglUh%2B6J61zu9BShBU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:27.4376569Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A27Z&se=2024-11-06T11%3A06%3A27Z&sr=c&sp=rl&sig=m3Js4aOsRG%2Fpn%2F2KcNJ60J%2FeoyFUTYfperr0QAWughg%3D","expireDateTime":"2024-11-06T11:06:27.4380132Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A26Z&sr=b&sp=r&sig=9QjvaMAhK%2BS2r46Jof142aQKTZL5SSM8k%2BvR5ZyquBQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:26.0065525Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A26Z&sr=b&sp=r&sig=He7GFhe6GOouwigKgse5hNe0S8J9i3EpzhuuBH1G1wk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:26.0062667Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A26Z&sr=b&sp=r&sig=UDUi9w7fP%2BSXWo%2FOQF9X2ynleBIGbYmZIRIAEg%2F4WHg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:26.0067191Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A26Z&sr=b&sp=r&sig=jblXUv2L2PqnTfVQbrzmcBD6t8qVzkz6UxWinctJvOI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:26.0069053Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A26Z&sr=b&sp=r&sig=WxB1zy%2BVUeAP8toH90%2F%2BFTCcWnJ9HuZ5vc%2FD0q18Pu4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:26.0070847Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A26Z&se=2024-11-20T12%3A22%3A26Z&sr=c&sp=rl&sig=ky6h1x5KcxrTgs78YGMOqVZUcAjqFwxyDzfiai6jCes%3D","expireDateTime":"2024-11-20T12:22:26.0072695Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4911' + - '5011' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:27 GMT + - Wed, 20 Nov 2024 11:22:26 GMT mise-correlation-id: - - ad71ceb9-0847-4676-a30d-13f208542109 + - f5388a99-234c-4773-9222-9b002a1708e1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100627Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg00000000774g + - 20241120T112225Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bywf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2259,31 +2565,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A32Z&sr=b&sp=r&sig=NVeunUp9vCeP3FrFZhG71HWLEVDpmALyqGRJf%2FfT2IY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:32.7385607Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A32Z&sr=b&sp=r&sig=abW2rVVs7LqLVqAbVH9foqHc6A2l4VNb%2F0TngZRKZb0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:32.7382073Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A32Z&sr=b&sp=r&sig=l%2B36aJHXxmLO%2B75Of4rfPJZ4Ns%2FPJldMDj8UaJBykTI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:32.7387688Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A32Z&sr=b&sp=r&sig=Tr4ZT11rrwN26MyeBgdEUV2I3WAWane2a8u1Xl%2FEYZE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:32.7389662Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A32Z&sr=b&sp=r&sig=2uqYe3xAhxKSixBLGCHmXKdFYNiN3HxBu%2F4SVfyqaBw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:32.7391821Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A32Z&se=2024-11-06T11%3A06%3A32Z&sr=c&sp=rl&sig=6dO2GoB%2Fq8ihgTgkbaY70mveiXPwPSjA2rsb3hxjWyo%3D","expireDateTime":"2024-11-06T11:06:32.7393718Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A31Z&sr=b&sp=r&sig=XOhPD1RGk5uCisHI24wfxTdKuC0ggLdKzksq%2FyvDQf4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:31.1136495Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A31Z&sr=b&sp=r&sig=I2xc2t7HKpfY8ptwfvZf0Acy2M6C%2B6%2BloFa17YwjvoM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:31.113383Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A31Z&sr=b&sp=r&sig=I2jQcoFa0rIEJ%2BYfBn%2F1%2BZiy%2B%2BJwrSUujaqq5BKOvSs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:31.1137459Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A31Z&sr=b&sp=r&sig=Ta7wfYjBbfBAzj82ET3ySW9Pv9O4mbQLMeyFUV3ZoCs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:31.113835Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A31Z&sr=b&sp=r&sig=m03GocqcLraoGpoMYz6Jxz05IJbGOg%2BmxIVgB2uosnk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:31.1139331Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A31Z&se=2024-11-20T12%3A22%3A31Z&sr=c&sp=rl&sig=VzfD9JGqndTGvzQief0nG%2FEYzbmwZ1AAalGOrVUSq0E%3D","expireDateTime":"2024-11-20T12:22:31.1140238Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4907' + - '5011' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:32 GMT + - Wed, 20 Nov 2024 11:22:31 GMT mise-correlation-id: - - 4d3407a6-bb48-4d4d-ae9c-37129a6c84b9 + - fddf488a-4014-40dd-bdf5-1a98563bd80c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100632Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000077vq + - 20241120T112231Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bz54 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2301,31 +2608,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A38Z&sr=b&sp=r&sig=X4%2BAOC4dXp8FpM70imIHeVM0eDleLnuv2HeC1Tr62ek%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:38.0347473Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A38Z&sr=b&sp=r&sig=NuGbUfbst5uH3dCz6z9IWfaFUqUElKN6kL6I3mbpHjs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:38.0340501Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A38Z&sr=b&sp=r&sig=v%2FcrJfXrNj2IsuCsKQS6e%2Bs%2F49UM572wgHiPF5B%2Bq3A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:38.0360776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A38Z&sr=b&sp=r&sig=rrpD08TIcekp9Dg9G6c7QBGyxfwKv6PHoSHlxPQM5Do%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:38.036323Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A38Z&sr=b&sp=r&sig=FP%2BHZDzXNVcxX6ZBbp%2FJzXInHxt8iuQfUA5SzHTQIrU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:38.036568Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A38Z&se=2024-11-06T11%3A06%3A38Z&sr=c&sp=rl&sig=xSg3qOzglgPzyHBtcI9Zp4D%2FYSuXpeKljyD6OVT0EQk%3D","expireDateTime":"2024-11-06T11:06:38.0367957Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A36Z&sr=b&sp=r&sig=k9%2B8YCmLIpVUDxdPjPcI33GTwwlxB0TC0gKVOjd9MV0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:36.2209198Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A36Z&sr=b&sp=r&sig=H3czCfhkSIpOYPKix3lbZk0JjAis7P0EU72GRb7FWuI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:36.2206963Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A36Z&sr=b&sp=r&sig=Uo%2F0ZR7hWzzitTxJEip%2BFAi44hfQ6gV0fUZl%2BaipZHA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:36.2209838Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A36Z&sr=b&sp=r&sig=jrYLRIlAp4oty7Gn9htaQKrtwOQlwtOwXP2HL4xOxWw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:36.2210479Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A36Z&sr=b&sp=r&sig=el5Bc0ihIqSaaKU7%2FvORGbOE%2FFWB6V4Sqosl6tUG3x0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:36.2211106Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A36Z&se=2024-11-20T12%3A22%3A36Z&sr=c&sp=rl&sig=wOdZYyujQqXf82CAxLi%2FUSoAWrAS4xh2M4f6Fc5BM2c%3D","expireDateTime":"2024-11-20T12:22:36.2211712Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4905' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:38 GMT + - Wed, 20 Nov 2024 11:22:36 GMT mise-correlation-id: - - 75b7adb3-d3c1-4f0f-b360-1a09d44659ce + - 4e266dd2-fed6-45c0-a7b4-df147fdec8ab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100637Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000078kn + - 20241120T112236Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bzaa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2343,31 +2651,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A43Z&sr=b&sp=r&sig=MT1i8h9x1rjBulNQy%2FWjOqgvtTF3xWisXuU7U%2F7jHrk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:43.3978801Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A43Z&sr=b&sp=r&sig=YfuLqfkQBqZaQGQ3DHdgf%2FLpTwh%2FA325OYi9pmXeiYc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:43.3975209Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A43Z&sr=b&sp=r&sig=5p799qgFG1WyMpmpX4BWafHHSCB78IlJHLiXAXHbTbE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:43.3979839Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A43Z&sr=b&sp=r&sig=7a972iW1xh2HjPrbeFlcIGszMET%2BvrSkH586A%2BQILGE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:43.3980849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A43Z&sr=b&sp=r&sig=eGkiAlzRZAK%2BcSRkMv%2Be40T0%2BsiDEJhSQgPMg%2BEe0ec%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:43.3981968Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A43Z&se=2024-11-06T11%3A06%3A43Z&sr=c&sp=rl&sig=Q%2B5x7rXUCOa7kxNJc8iLZ0FWNxL6QT7QYo602ydWxmY%3D","expireDateTime":"2024-11-06T11:06:43.3982985Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A41Z&sr=b&sp=r&sig=iii3mQ8hPGyPXj7MWcZyzT5ddQUXoMS3HwdKXoqa72c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:41.3236896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A41Z&sr=b&sp=r&sig=wPKu2prCV9r3bTEP5C6ZosEkyAxXVpWWh%2Fyyx5yYGfQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:41.3233629Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A41Z&sr=b&sp=r&sig=EGVhyY17oQVejn1PCWx%2F53hGfb59kx7sA1jNpjNL15o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:41.3238235Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A41Z&sr=b&sp=r&sig=dcgcwWoNlNA1Uqwn%2FdVU9NHA1UdC6Tg6736WF1PoShU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:41.3239655Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A41Z&sr=b&sp=r&sig=PtTrZf515FkZbxAR8Q8dVe5Y8m3VOEVhR%2ByHLOdnpFY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:41.3241016Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A41Z&se=2024-11-20T12%3A22%3A41Z&sr=c&sp=rl&sig=tC%2BPQMsNUt%2BzRiP7%2FTlA48julGNL%2Fm%2FFvfrZrcl5%2BDw%3D","expireDateTime":"2024-11-20T12:22:41.3242403Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4913' + - '5013' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:43 GMT + - Wed, 20 Nov 2024 11:22:41 GMT mise-correlation-id: - - ca0b68e9-ee82-4dbd-82e3-9e698402ba79 + - 4af334f3-4686-45a1-b3d7-2c299577741d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100643Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000079cr + - 20241120T112241Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bzfz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2385,31 +2694,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A48Z&sr=b&sp=r&sig=HRi9Mm0Ben9YGQLyl6RbPn8oMoWGzDXwN7UE71PMp9g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:48.7338641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A48Z&sr=b&sp=r&sig=5bHQPuVRvX2mfA2QqYNIjkAt88kcL2MSJ2s1OSkx2is%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:48.7333314Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A48Z&sr=b&sp=r&sig=A9MTItQZV7XGtHgeUGfE%2FJLReNdaduDoC%2FcJHgcFmoY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:48.7341094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A48Z&sr=b&sp=r&sig=%2F8ViQBE7gDR0GuQpDuEY%2FSJyM0U6DFCEuy8i5SW%2BpxM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:48.7343165Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A48Z&sr=b&sp=r&sig=hjfy0zfXYR2cLjiEvhYnX7pmaFYdxM%2BU30J2YgvHvYo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:48.7345236Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A48Z&se=2024-11-06T11%3A06%3A48Z&sr=c&sp=rl&sig=yvgXGak0Je1HCG4RYl3ij8SM0fF0zj%2BeE7pmLCwvqoA%3D","expireDateTime":"2024-11-06T11:06:48.7347237Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A46Z&sr=b&sp=r&sig=aEMmW1%2FViOoq9crjt0xeYHshi4SDgUXvXOVgP0kx%2B4k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:46.4334376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A46Z&sr=b&sp=r&sig=MeTs5%2Fi2XVsfWKVz1fcaM%2FtivlgUaokV9ezkqGQO3SA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:46.4326517Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A46Z&sr=b&sp=r&sig=B7vQV9vvatwLcLuD6YtYtsxyD%2BiCP630cfnTtvZ4Uws%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:46.4337743Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A46Z&sr=b&sp=r&sig=Qyi03LhoiBB%2BCsQwpGaq%2BvmAKkvNC2MoxwFo%2BC7cS1Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:46.4341181Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A46Z&sr=b&sp=r&sig=0TGaGbe2KH8SFUGFywLZxACP0u74i56pS5%2FxEmN63vo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:46.4343605Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A46Z&se=2024-11-20T12%3A22%3A46Z&sr=c&sp=rl&sig=PuMVe9geZTFTCTSTT95f0j6Vojxge5%2FxAErMGnIeJ7g%3D","expireDateTime":"2024-11-20T12:22:46.4344583Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4905' + - '5013' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:48 GMT + - Wed, 20 Nov 2024 11:22:46 GMT mise-correlation-id: - - 89d50a4f-7b33-46e2-95fb-06fff3772bda + - cfe9ec69-79e1-412a-a0c5-c1cce5081b33 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100648Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000007a4c + - 20241120T112246Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bzqq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2427,31 +2737,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A54Z&sr=b&sp=r&sig=X5s1FiG6JHBa%2BfwauXwutxG2%2FMci%2ByYS0C0BMfdwUk4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:54.0695675Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A54Z&sr=b&sp=r&sig=xeRun3jRO6oxKMTbLBIQ30rA1%2Bglm0SmoYwQ%2BswZI3U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:54.0686933Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A54Z&sr=b&sp=r&sig=QQoW3DdMPHBA5ckkch36N%2Bl3d6%2BBh5D%2B%2BahP9GJzO3s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:54.0699403Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A54Z&sr=b&sp=r&sig=Mvpk6jZeJgjT7tmJI%2Fe8Az5mrGpNz6WXjchGCREZPWM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:54.0703441Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A54Z&sr=b&sp=r&sig=9KNy%2BFI9tTxOqfM4ywzgOAqb%2F7CCzhL3YewJ31XS9vM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:54.0707192Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A54Z&se=2024-11-06T11%3A06%3A54Z&sr=c&sp=rl&sig=vhwWDQX2UX0724A5lJ8RG7xoT4lHUI3OMOkdLyMd5VM%3D","expireDateTime":"2024-11-06T11:06:54.0711256Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A51Z&sr=b&sp=r&sig=p01MgnWowGnKtzsnrP6V7fYpjUvXObshK5dUnJfPxZk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:51.5394227Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A51Z&sr=b&sp=r&sig=9sssiubkIPM7q1y5zP5xjVmmPFVge7KDgxm2RbKWC58%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:51.5387341Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A51Z&sr=b&sp=r&sig=g1LNmb9qaLnQIWyFZUIPJGPmjzNWsVWbwCp%2BkNfCXQw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:51.5397179Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A51Z&sr=b&sp=r&sig=sgbj5Ei3nA%2FfXjtIOA1y8fvbDP03DvE6XRXU67PcAwE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:51.5399185Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A51Z&sr=b&sp=r&sig=tDlnCSbDjqG7%2Bwdcx%2FpsIBBdMjIDcz1O9FjdM00%2FDJI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:51.5400834Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A51Z&se=2024-11-20T12%3A22%3A51Z&sr=c&sp=rl&sig=mhkETfPufpY%2Bm1Vz1g8MJbzASsGBcH84LLs2hIJehmA%3D","expireDateTime":"2024-11-20T12:22:51.5402555Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4915' + - '5005' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:54 GMT + - Wed, 20 Nov 2024 11:22:51 GMT mise-correlation-id: - - 7e3ac292-9ffc-4c01-907c-a532d9529dd3 + - 6c8aa25d-c9df-4922-8f8a-48e5d775ee19 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100653Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000007b2x + - 20241120T112251Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000bzxp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2469,31 +2780,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A59Z&sr=b&sp=r&sig=ReYMix3MPlqDiFq6x%2FQ9%2FT1%2FG5RGwcC%2B2isDZariVpI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:59.5804002Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A59Z&sr=b&sp=r&sig=ciHJ8moBxGrI60pu9DfaCnD%2FFPLUWrDH2Z6%2FYQ6mheQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:59.5799946Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A59Z&sr=b&sp=r&sig=QHMCbBIVSY0jjj7VMaIThwEBElkDws81yB3MZA2Klt8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:59.5805675Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A59Z&sr=b&sp=r&sig=gmr%2FJ7i1UhBi4N3xmcsmhngRD7%2F93C0PGdofjKCAB%2Fo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:59.5807368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A59Z&sr=b&sp=r&sig=RJ1mIJwtgfPh3%2F47GNQ%2BQphzMLFACPhhPcvT%2BgnK%2F7Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:59.5809012Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A59Z&se=2024-11-06T11%3A06%3A59Z&sr=c&sp=rl&sig=aTrEw5p3K7XWnueRAuBB08vcyXLAv3HaBWmYrmJHqfk%3D","expireDateTime":"2024-11-06T11:06:59.5810675Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A56Z&sr=b&sp=r&sig=JFLukywmZhXaHD3R5E5N8Fx%2B9n%2FKsStVVadHGT1lAQA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:56.6440451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A56Z&sr=b&sp=r&sig=1YNi%2FqBWrV7IIrd9bqznYQ6wu8rf8YO7wN41UD6r5Rs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:56.6436148Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A56Z&sr=b&sp=r&sig=w9mZAIEZD8%2BriHQqQTzJm%2BvKhEAuxs0kvT2ZKI8U2qc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:56.644219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A56Z&sr=b&sp=r&sig=2ESP%2FGv3intr5bsdJstiLxHpZzWhGOJMiFobDBgvyQk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:56.6443929Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A56Z&sr=b&sp=r&sig=XDsEiZZOzfOLcJtqrFn9M3lpLMmzrXJLehAaVY95jYg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:56.6445659Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A59Z&ske=2024-11-20T18%3A18%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A56Z&se=2024-11-20T12%3A22%3A56Z&sr=c&sp=rl&sig=yEGGeRLUqhWJ0rOpBt9bfIutHUQmCeq7p3wJMXQFNMM%3D","expireDateTime":"2024-11-20T12:22:56.6447331Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:12.184Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:07.677Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4917' + - '5004' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:59 GMT + - Wed, 20 Nov 2024 11:22:56 GMT mise-correlation-id: - - c1671bf2-77f8-44bd-b814-6f94308a15c9 + - d797e2cf-df5c-4e53-92eb-31b6b1b272ff strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100659Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000007c5n + - 20241120T112256Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000c055 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2511,32 +2823,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A05Z&sr=b&sp=r&sig=7hx%2Fppp3%2Bo72oMTMgKr32zD%2FLP39kTuz0fGRu1lecQY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:05.0804262Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A05Z&sr=b&sp=r&sig=2j92MCVyJZFE4R5lSRDe6jtT3nZNoojGeig0uywBEgA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:05.0798775Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A05Z&sr=b&sp=r&sig=7181HQXUHksZTWjO110j8Mozj4y4hWt%2B8OV1TvfYX5Q%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:05.0806404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A05Z&sr=b&sp=r&sig=zlASy9sKf9f%2FFgm8vAonD55ZnX%2F%2F0G8wlPD0kBnH0T0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:05.0808639Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A05Z&sr=b&sp=r&sig=keLhnj6HJ%2FN3oquPdAPii2Y2%2BpeyGg48Gs9jfurlSsA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:05.0810831Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A05Z&se=2024-11-06T11%3A07%3A05Z&sr=c&sp=rl&sig=1Je%2B0iU0e84gEG9LQMqScK1AzAqpkRUTYHSR2YICYmI%3D","expireDateTime":"2024-11-06T11:07:05.0813039Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"FAILED","startDateTime":"2024-11-06T10:04:24.503Z","endDateTime":"2024-11-06T10:07:02.452Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:07:03.56Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A01Z&sr=b&sp=r&sig=JigSS4y8MnYwRNFqK7pTwgc9oqCsw3Fh00bEHilb%2FCQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:01.753379Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A01Z&sr=b&sp=r&sig=9IQMA2m8FmpYmQoWGVpCGee7eQ67xgaSe4WObpO%2FmWM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:01.7530047Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A01Z&sr=b&sp=r&sig=OJc2uTM9z92BIUQ3me2m7fbkHnxXKnjNKEyj80l7ADM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:01.7535151Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A01Z&sr=b&sp=r&sig=y7f9z9%2BjgxEj%2FztgWhK47k9ftS%2Bllw2S0y9WyuHH6WQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:01.7536483Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A01Z&sr=b&sp=r&sig=wHHdF9OEfEiOWrS5qS61v23RWbUqO5Kp0kK9Vr7SM%2BE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:01.7537802Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A02Z&ske=2024-11-21T01%3A20%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A01Z&se=2024-11-20T12%3A23%3A01Z&sr=c&sp=rl&sig=mn5lamwC06Kxt5786YJOeIgBNNmJoVqr0a3EXdG5zTs%3D","expireDateTime":"2024-11-20T12:23:01.7539124Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"FAILED","startDateTime":"2024-11-20T11:20:12.184Z","endDateTime":"2024-11-20T11:22:59.272Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:59.876Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5038' + - '5132' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:05 GMT + - Wed, 20 Nov 2024 11:23:01 GMT mise-correlation-id: - - ee2b79d4-8a65-4bf4-ba12-f153471a9818 + - 39f7f4bd-7b62-46c3-b0a0-f8c3a1a828e3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100704Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000007czf + - 20241120T112301Z-17b7777dc45fdwkzhC1CO143cn0000000w4g00000000c0ck x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2554,23 +2867,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:18:23.4362298Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:23.4362298Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:09 GMT + - Wed, 20 Nov 2024 11:23:01 GMT etag: - - '"fa00f418-0000-0200-0000-672b3ed10000"' + - '"9703c000-0000-0200-0000-673dc5960000"' expires: - '-1' pragma: @@ -2586,7 +2899,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0CA925AFFE1D471986442CE6DF5041AA Ref B: MAA201060516009 Ref C: 2024-11-06T10:07:08Z' + - 'Ref A: 5907D267008B46589ABD5FCBB45BD381 Ref B: CO6AA3150217021 Ref C: 2024-11-20T11:23:02Z' status: code: 200 message: OK @@ -2600,33 +2913,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=delete-test-case + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=delete-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=QbNOZrCcLo4FGIgfAR8MDTvKFU1ynU8xtE2iJySeeeo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2793619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=ACVz0n%2BadCRKzeHwJZqDq%2FWMvfo0hM1qYpNpBbdGMAI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:13.2764807Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=kL7RGsc%2BbekW%2F8bs1FbAUM7r7JQPA%2Bv2wInYeR6E0Gg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2795312Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=0h2tmTpt5C2DFZMPgXHjFzlXasRzhbijLWqszrMMkz0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2796796Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=2RFi2uMPW5zCAbLqurvycvXKbrPUfRmZQ0GUMGwJpu8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2798154Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/99724e14-daa7-4799-abb4-a7fc1d010e6c_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=69UvJbXt71Tmic1H31%2Fq1b3sGtbPv0d44wi%2FldKpFh8%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2799512Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/99724e14-daa7-4799-abb4-a7fc1d010e6c_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=Bp6dP0QZx8tg5LxvnasHYmPPdVf8a1NJi5%2Fsk60wIBU%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2800905Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A13Z&se=2024-11-06T11%3A07%3A13Z&sr=c&sp=rl&sig=fD%2FkQWZULEDDc95x%2BPZVA54rgXoZRGGXsaFDB5BByfs%3D","expireDateTime":"2024-11-06T11:07:13.2802248Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"FAILED","startDateTime":"2024-11-06T10:04:24.503Z","endDateTime":"2024-11-06T10:07:02.452Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:07:09.527Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"515d868a-24f1-4bff-a95c-c7fad60bdb1b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e394a12a-4a39-4d3c-91a7-b119b58a089c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5b0f5b4a-ea85-4368-bd69-95c8cfe7e993":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/bca1be6d-9150-42cd-809c-fcc02ae8ddea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A02Z&sr=b&sp=r&sig=oi7i5Cs%2Btxow0vhB1amq54Q71rXRHkmlm8KtzKh3uIk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:02.5730344Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/9fc34c4b-102f-4e0c-a64a-c685719754da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A02Z&sr=b&sp=r&sig=qJ3Z7fXZ2mKu3M4Pgf3B2yF36K%2B%2F6nKQpLeNffiOywI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:02.5726079Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f100a409-731c-44c9-8f73-e7478643c883?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A02Z&sr=b&sp=r&sig=kjGS01SfW4BnY1QA3bEa51seTiO9VUJ2HXk%2BzbYtMH4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:02.5731595Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/0d245f10-7754-4b79-8bc4-ec7e405a93a0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A02Z&sr=b&sp=r&sig=PS8FkMrfWwEkFu7sAQUA1JXWNFRgUKxMcSzQvszNP1A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:02.5732957Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/18b6bc4c-f106-4d5c-a03a-2f68d50dae3e/f49288d1-9af4-40f0-994b-2940cfcd48b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A02Z&sr=b&sp=r&sig=4tgG9mqw2qOiRp9MbZmgrcS9MrTNRaMt%2B5ggiOUk0ao%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:02.5736457Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://t248ltoax5s6h361eh43a38v.z43.blob.storage.azure.net/434a8599-d1b2-41b8-b8ba-770fb11e4519?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A09Z&ske=2024-11-20T18%3A19%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A02Z&se=2024-11-20T12%3A23%3A02Z&sr=c&sp=rl&sig=6pLQPt%2BWvy6ESZOTr4Zb%2BwYReyFnwu1LfHOCIZ%2FXKGs%3D","expireDateTime":"2024-11-20T12:23:02.5740199Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"FAILED","startDateTime":"2024-11-20T11:20:12.184Z","endDateTime":"2024-11-20T11:22:59.272Z","executedDateTime":"2024-11-20T11:20:09.327Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2024-11-20T11:20:11.513Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:59.876Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6263' + - '5149' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:13 GMT + - Wed, 20 Nov 2024 11:23:02 GMT mise-correlation-id: - - 9d9300b5-220f-48bc-9f78-9b68a065435a + - 724e5193-dd76-4c59-9291-f70f910ee2a9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100712Z-16bf8d9b4c7z9ptphC1BOM62hc000000066000000001bc0p + - 20241120T112302Z-1846dc7bb4dhk8jqhC1YVR517n00000003g00000000034q3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2644,23 +2957,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:18:23.4362298Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:23.4362298Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:16 GMT + - Wed, 20 Nov 2024 11:23:02 GMT etag: - - '"fa00f418-0000-0200-0000-672b3ed10000"' + - '"9703c000-0000-0200-0000-673dc5960000"' expires: - '-1' pragma: @@ -2676,7 +2989,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0CC0D6A9F7294B9AA2B62813D09EDC3E Ref B: MAA201060515051 Ref C: 2024-11-06T10:07:15Z' + - 'Ref A: 9AE76F847A5846C28DB9D5B4EF15FD2A Ref B: CO6AA3150218031 Ref C: 2024-11-20T11:23:02Z' status: code: 200 message: OK @@ -2692,25 +3005,26 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: DELETE - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: string: '' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive date: - - Wed, 06 Nov 2024 10:07:19 GMT + - Wed, 20 Nov 2024 11:23:03 GMT mise-correlation-id: - - a0f999da-53c8-4fee-9ba0-f45616185aed + - 05ee0a3b-6fbd-4320-b72e-a5f7c2ff549c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100718Z-16bf8d9b4c79zqhnhC1BOMb6w400000006ag00000001utq9 + - 20241120T112303Z-1789fbbbd78t74tvhC1PDX9fys0000000gp00000000007g4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2728,23 +3042,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:18:23.4362298Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:23.4362298Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:22 GMT + - Wed, 20 Nov 2024 11:23:03 GMT etag: - - '"fa00f418-0000-0200-0000-672b3ed10000"' + - '"9703c000-0000-0200-0000-673dc5960000"' expires: - '-1' pragma: @@ -2760,7 +3074,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9C0D1ED58E69410FA2C50C4A3ED2CF8D Ref B: MAA201060513047 Ref C: 2024-11-06T10:07:21Z' + - 'Ref A: E344E1A1B2764BDC859BC9969E46F3D3 Ref B: CO6AA3150218039 Ref C: 2024-11-20T11:23:04Z' status: code: 200 message: OK @@ -2774,9 +3088,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=delete-test-case + uri: https://5d8a527d-98d4-4647-b3b4-85eea2cc4f2f.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=delete-test-case response: body: string: '{"value":[]}' @@ -2784,7 +3098,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -2792,13 +3107,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:24 GMT + - Wed, 20 Nov 2024 11:23:04 GMT mise-correlation-id: - - a8f0b8f8-900d-482b-9275-85a4bcda048d + - fa138093-1442-4e77-a762-5dfc6f1661ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100723Z-16bf8d9b4c74rffhhC1BOM0zgn000000066000000000mk2q + - 20241120T112304Z-1846dc7bb4d25twmhC1YVRr3u000000004100000000022rz x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_download_files.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_download_files.yaml index 79e95e53f4c..6101f10ce92 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_download_files.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_download_files.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:06:49.436719Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:49.436719Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:04.5607515Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:04.5607515Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:25 GMT + - Wed, 20 Nov 2024 11:19:37 GMT etag: - - '"fa000829-0000-0200-0000-672b3fd20000"' + - '"9703ff00-0000-0200-0000-673dc5be0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 99ADA7F462484FDE908EFABE32D352C7 Ref B: MAA201060515049 Ref C: 2024-11-06T10:07:25Z' + - 'Ref A: 186C58E9D65B4323942714CB5DFC5D97 Ref B: CO6AA3150220021 Ref C: 2024-11-20T11:19:37Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier download-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:07:28 GMT + - Wed, 20 Nov 2024 11:19:38 GMT mise-correlation-id: - - edc136a1-b755-464e-911f-ef8be6591664 + - ec18de33-505c-4444-8aee-47944a362871 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100727Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016mz5 + - 20241120T111938Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002bk4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"28ca6919-8407-489a-b6df-960a5ad86870": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"4c3f22d1-3491-4b5a-9836-b43a8ec85d81": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "b2e6c697-6132-49d1-9549-94364a31c5de": + "78"}, "e88e657d-40cc-4d4f-aaf1-53f30e3a3843": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "b468aad8-cbdf-41b2-986e-42914a730eef": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:28.483Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:07:28.483Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:19:38.605Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:19:38.605Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1048' + - '1150' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:28 GMT + - Wed, 20 Nov 2024 11:19:38 GMT location: - - https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-03-01-preview + - https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-03-01-preview mise-correlation-id: - - a34901bf-6874-43d0-af0f-39a9096c9108 + - 48739fe8-33b6-473c-9ca9-d41c97e76760 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100728Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016n1k + - 20241120T111938Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002bkr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:28 GMT + - Wed, 20 Nov 2024 11:19:38 GMT mise-correlation-id: - - b29703fd-e2a2-407f-9a87-389f460fa309 + - 57b3a826-55b3-47f7-919d-d5a5219b1a21 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100728Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016n3d + - 20241120T111938Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002bmh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A29Z&ske=2024-11-06T17%3A07%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A29Z&sr=b&sp=r&sig=xYpJ5YFT1EubRLsweQ5RKt%2Bx2fFefz%2FfiFkxTdd0ZXk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:17:29.348365Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A39Z&sr=b&sp=r&sig=n%2F%2BMGiZbuRMV%2BFmGNf2osl5jihQ%2BQkhNfmfKtTwcviI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:29:39.884491Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:29 GMT + - Wed, 20 Nov 2024 11:19:39 GMT location: - - https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 7215e4ae-dabc-4986-b0cd-fc0469003ca0 + - 9647ae74-2342-4813-8b60-9d3e1370dc76 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100728Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016n4h + - 20241120T111938Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002bmu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A29Z&ske=2024-11-06T17%3A07%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A29Z&sr=b&sp=r&sig=xYpJ5YFT1EubRLsweQ5RKt%2Bx2fFefz%2FfiFkxTdd0ZXk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:17:29.6973829Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A40Z&sr=b&sp=r&sig=he2QxFFdZPKR3lM3hZMEqpc%2FjriX7c1eNNYaHDctkXE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:29:40.0204909Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '575' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:29 GMT + - Wed, 20 Nov 2024 11:19:40 GMT mise-correlation-id: - - f5d18995-9d0e-4f20-a33f-1e65f3f2c003 + - 2ba8195d-badd-4c71-8a2f-1b5a3d025289 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100729Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016n75 + - 20241120T111939Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002brw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A30Z&sr=b&sp=r&sig=%2F9Xc7IdKWBEWkmXCQxzR6hajfaBQdds49FmSYh5ND5U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:30.165487Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A40Z&sr=b&sp=r&sig=FP4ECQBGtQfEhD2MKYgvs%2FjnOSHivMw9nVGt1Z6Bn%2Bg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:40.9699862Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:30 GMT + - Wed, 20 Nov 2024 11:19:41 GMT location: - - https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 4e02d729-0cdb-4b84-b3bd-d22b688b0ee6 + - 38073756-0a70-4220-8c3f-ad69acc3c202 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100729Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016n8y + - 20241120T111940Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002bs7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,31 +351,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A29Z&ske=2024-11-06T17%3A07%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A30Z&sr=b&sp=r&sig=%2F5xCMdPFiHJnX4elNCVftSR6n35o%2BLjob03JPcDSVHk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:30.4628006Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A41Z&sr=b&sp=r&sig=lmRxXrXe3%2BwR%2FnjS7O19iN9uYPUzowYJ%2BHN1QRPW6OY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:41.0853458Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:30 GMT + - Wed, 20 Nov 2024 11:19:41 GMT mise-correlation-id: - - fa29c7d6-895c-4745-bea9-065cc7f92a3a + - f48d98df-740e-4202-91d6-ac2b624dc439 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100730Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016nae + - 20241120T111941Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002bv2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A35Z&sr=b&sp=r&sig=MP6QRwS4RFMYQuSFG0Y1bBs0VZC8v46rEo9R8jHEcLM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:35.8329955Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A46Z&sr=b&sp=r&sig=fjjNpoeQacYLlxRz8noGaUTrXY5eIE4u2%2FhGJxGf7Zc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:46.235642Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:35 GMT + - Wed, 20 Nov 2024 11:19:46 GMT mise-correlation-id: - - 81a76085-b559-4ae4-8621-3184d482be98 + - b5304ed1-bad7-4620-8023-65fb3878bed5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100735Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016nuu + - 20241120T111946Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002cc4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A41Z&sr=b&sp=r&sig=sGWqEaKJ6%2FjBfGIa1WM0zEzhyP3MYnDKzWWvCetmgBI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:41.1967676Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A51Z&sr=b&sp=r&sig=gev3z7P8N5jLWJscYdrRUskatHozQd5wCL1VfAE7swk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:51.7561686Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:41 GMT + - Wed, 20 Nov 2024 11:19:51 GMT mise-correlation-id: - - ff4ac758-a26e-4289-8c5f-efabcf6207b3 + - b012f184-5d8c-4c7b-a77d-60cee5a90784 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100741Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016phn + - 20241120T111951Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002cxa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A47Z&sr=b&sp=r&sig=Cvy%2FKO8MHx7qNenML7P8EHXxr7dzAGPvibWWjN%2FQ47g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:47.2686725Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A56Z&sr=b&sp=r&sig=UsEgM4sLOfB2DVgH%2FkWzdYLalYUQEsqF1GXJPIrirD8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:56.8725062Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:47 GMT + - Wed, 20 Nov 2024 11:19:56 GMT mise-correlation-id: - - f6316462-c3d2-4c7d-a252-298ea59364f5 + - 84bd5aee-acb6-4500-b789-d316fe1a9ea9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100746Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016q4w + - 20241120T111956Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002dck x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,31 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A29Z&ske=2024-11-06T17%3A07%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A52Z&sr=b&sp=r&sig=Q9du1zcIC%2B4E30ytOyCQVezzVF%2FPJ6BW6nHfwN8x%2Foo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:52.5514505Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A02Z&sr=b&sp=r&sig=JmSNPa91O3l50UnPZ7Kfh3dNUwxJf1uJ7GU%2F%2BUyo52g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:02.0167875Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:52 GMT + - Wed, 20 Nov 2024 11:20:02 GMT mise-correlation-id: - - acb1b9b6-7037-48ff-9930-ac15e0e9f789 + - 4b94b160-65c5-474e-b395-b6b66b2c942b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100752Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016qsr + - 20241120T112001Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002dw5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -554,31 +566,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A57Z&sr=b&sp=r&sig=c2VpZgehQ7GK0UhJH50J6YieB4p9Fv4Gl2ALbGuvvGo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:57.836688Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A07Z&sr=b&sp=r&sig=d9DHCG%2F2iaWJuZJxY1XDy9%2FDsh2E%2F9q8EM1HAAFi5B0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:07.1609484Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '565' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:57 GMT + - Wed, 20 Nov 2024 11:20:07 GMT mise-correlation-id: - - 14546932-b90a-433b-98cd-c2622dabb7c5 + - 3a03811c-6293-4522-8951-6c2df83aac6d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100757Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016re8 + - 20241120T112007Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002ec8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,33 +701,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A58Z&sr=b&sp=r&sig=QyVjwu13cDdnx%2BlQ0vVQVSrcrziO0xUVpS%2BwrCcmV%2Bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:58.9012794Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A10Z&sr=b&sp=r&sig=nxaWmXnSkhRjD0FpeR9QKlUc2kNe0jv5oM%2FIMTIK4MI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:10.0385028Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '562' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:58 GMT + - Wed, 20 Nov 2024 11:20:10 GMT location: - - https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - c12f43a2-c1f3-4402-a8e4-a74aacb6ed18 + - 32b9fe7b-5612-4100-bece-abfbc94f6ab4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100758Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016rfb + - 20241120T112007Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002ecv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +746,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A59Z&sr=b&sp=r&sig=1qd%2FF85KrrG1MXsR2ihHch2WF%2FST3HbDlcuQu5HnFuk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:59.2415333Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A10Z&sr=b&sp=r&sig=xu8JKNdyfmrBhmA7E4zGDpZE9lyNa8lY78jqwAHYXos%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:10.1568904Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:59 GMT + - Wed, 20 Nov 2024 11:20:10 GMT mise-correlation-id: - - 8b096fb8-2aa9-46bf-90e2-a52e0d606ffa + - 41f662b1-53b0-4584-87b4-05c14cb68122 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100759Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016rnr + - 20241120T112010Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002epx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,17 +789,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A04Z&sr=b&sp=r&sig=RXFRm%2Fy0Ke9%2B9eH9NderRRyVBmj5jfCti8TC6f6CiBE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:04.5183983Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A15Z&sr=b&sp=r&sig=IrJ4dZzh1HGu4Ox%2BRbypzzJdWgk6%2FJQ6wDOVZhWu144%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:15.2762909Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -792,13 +808,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:04 GMT + - Wed, 20 Nov 2024 11:20:15 GMT mise-correlation-id: - - 72476467-9e18-41be-84e6-c921665dc6b2 + - 0acc33bb-73d5-44ca-9ba8-2ee8f94b3443 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100804Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016s8u + - 20241120T112015Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002f4g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,73 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A09Z&sr=b&sp=r&sig=LCGwQY2ZOd6h5bNif7kCXz4A8EAeEVdtSWWkv1C1ELI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:09.808594Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A20Z&sr=b&sp=r&sig=8yXRnc9CLJ1pwAv81t%2BrByqmAOrOJXg5qJhpTNTSY2s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:20.4066387Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 06 Nov 2024 10:08:09 GMT - mise-correlation-id: - - 33b72da1-d4b1-45d8-a915-5e6906a722fd - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T100809Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016sv5 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A15Z&sr=b&sp=r&sig=9Qwwr%2FxJInB%2BSw%2FxDqkuHblLAu5MKuW26KtO2%2F8YH84%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:15.1274593Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '564' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:15 GMT + - Wed, 20 Nov 2024 11:20:20 GMT mise-correlation-id: - - a59a49ca-820b-4292-9876-ab11d3315d84 + - 5f91b0a1-a439-4c84-87f5-d878b39e92a6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100815Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016tnp + - 20241120T112020Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002fm6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,17 +875,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A20Z&sr=b&sp=r&sig=X0cY0FAUKi4Tk%2BQsl128pxcSZo9VvUD4A6qkzaNAG7Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:20.4641083Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A25Z&sr=b&sp=r&sig=emfoQLrjJpJQtpY02JN5akL5Onj%2BdG1g9DGeBlj12oI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:25.5221783Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -918,13 +894,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:20 GMT + - Wed, 20 Nov 2024 11:20:25 GMT mise-correlation-id: - - 6c2a1487-aa99-470d-91d4-0b4123acb666 + - a233c581-8836-405c-8eae-f76cb0229778 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100820Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016ub9 + - 20241120T112025Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002g3m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A25Z&sr=b&sp=r&sig=PWlE8qHWpwPbxX%2Bi7KfrKIt0RQdUaozWo%2BHdLi4CAco%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:25.7548273Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A03Z&ske=2024-11-20T18%3A20%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A30Z&sr=b&sp=r&sig=qBNOGXQY0UEc6kzpKs5wScpKllmFePxhVQiycyyTQOs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:30.6528318Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:25 GMT + - Wed, 20 Nov 2024 11:20:30 GMT mise-correlation-id: - - 6d132b9a-0a83-4e19-80a8-4f9a8de10492 + - e8ad1901-73ab-49f7-89f8-f12276bfe626 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100825Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016uyx + - 20241120T112030Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002gmq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,31 +961,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A31Z&sr=b&sp=r&sig=jsudoomR%2Bse7GH1kjpp4NiAqyy34St0QKsAKS2hFFHA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:31.0826543Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A35Z&sr=b&sp=r&sig=v7zjy%2FJEqVEULksZrPzRqZuJ%2BuCdNV52kSVd75rx3oA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:35.7721228Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:31 GMT + - Wed, 20 Nov 2024 11:20:35 GMT mise-correlation-id: - - 3dd1bb3a-75e8-4dab-ba8c-33133c8cabd1 + - 71c47a0d-8716-469c-a755-89a67d9973e2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100830Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016vp8 + - 20241120T112035Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002h7d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1026,32 +1004,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A31Z&sr=b&sp=r&sig=YTK3CLjHd85O7AWZTbPQ2%2FGemXSh%2F%2BGlVuK6cU8rgaU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:31.3622509Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A31Z&sr=b&sp=r&sig=7tNwY8RG4dEwjdwiXnkbRCj2enoma9J3%2Fx6N0kUHzbY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:31.3627255Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A31Z&sr=b&sp=r&sig=L6nvmC1r83qTtoz7v%2FaGm1H%2B8VKAqHF708BDiVeKZdc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:31.3629176Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:28.483Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:26.855Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A35Z&sr=b&sp=r&sig=KuGRzOXCPgpJaMR49xcqLbrp4%2FTjXKpCoBVo%2BIhBavA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:35.8903217Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A35Z&sr=b&sp=r&sig=u42GJvlv2mPzR6UjTTm7zv%2BBoOCYUwJPgnPkKndVqyY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:35.8909749Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A35Z&sr=b&sp=r&sig=0sMmH0z62EfXDSxlx80udaS%2FjkdYt6NVTP%2BSowLIOMw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:35.8912052Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:19:38.605Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:31.596Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2774' + - '2874' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:31 GMT + - Wed, 20 Nov 2024 11:20:35 GMT mise-correlation-id: - - 3ade6995-c123-472c-8ec1-ff7904da34b5 + - 55c6529e-52c5-4df0-a970-e344e091888f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100831Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016vqr + - 20241120T112035Z-1789fbbbd78x8fsghC1PDX08380000000gpg000000002h7q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1069,23 +1048,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:06:49.436719Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:49.436719Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:04.5607515Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:04.5607515Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:33 GMT + - Wed, 20 Nov 2024 11:20:36 GMT etag: - - '"fa000829-0000-0200-0000-672b3fd20000"' + - '"9703ff00-0000-0200-0000-673dc5be0000"' expires: - '-1' pragma: @@ -1101,7 +1080,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 98F1E6077D6D4B9691BBE20645F93509 Ref B: MAA201060514049 Ref C: 2024-11-06T10:08:33Z' + - 'Ref A: 8B363A8407C94187A1E9A054920B6FA7 Ref B: CO6AA3150218029 Ref C: 2024-11-20T11:20:36Z' status: code: 200 message: OK @@ -1115,32 +1094,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A35Z&sr=b&sp=r&sig=%2B6iqO43g6DaEblfhuoe9sgv3ceUPqXigC0zM26mnjXs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:35.805871Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A35Z&sr=b&sp=r&sig=oyAmNjFFBrH1GXvKtvbjk4q2K1pbsiLQNddwN2tHcmw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:35.8063556Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A35Z&sr=b&sp=r&sig=JpbxjRc5DhoZe%2F8enyUBR%2FiytsEZLdoVBilDVkdZMZE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:35.8065062Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:28.483Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:26.855Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A36Z&sr=b&sp=r&sig=fVWBsLQa2%2FP2gLmHcIACp5LQAehjaNZDm%2BOuPldDnDs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:36.8720334Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A36Z&sr=b&sp=r&sig=dE3QpA%2F8sfH%2BPqfOHHI%2FpwgbXcNvqrEzHgnmE56o58A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:36.8724458Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A36Z&sr=b&sp=r&sig=Y5lVnur48D19P4Hki7Ot8d%2F6nZdZnhcbjdLsO9W3hww%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:36.8726124Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:19:38.605Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:31.596Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2779' + - '2888' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:35 GMT + - Wed, 20 Nov 2024 11:20:36 GMT mise-correlation-id: - - e80a9eee-37f5-463d-bdbe-cbf74f0f7252 + - 249a8173-24ca-4725-8e02-e22d0d1f52a9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100835Z-16998b5679fdbr29hC1MAAgkh8000000047000000000af3g + - 20241120T112036Z-r16f5dbf676kzgwchC1YVRkhh800000003ug0000000019y2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1158,23 +1138,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:06:49.436719Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:49.436719Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:04.5607515Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:04.5607515Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:38 GMT + - Wed, 20 Nov 2024 11:20:37 GMT etag: - - '"fa000829-0000-0200-0000-672b3fd20000"' + - '"9703ff00-0000-0200-0000-673dc5be0000"' expires: - '-1' pragma: @@ -1190,7 +1170,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4C2711562FF744FBABB682F5739039BD Ref B: MAA201060516037 Ref C: 2024-11-06T10:08:37Z' + - 'Ref A: 11A3A7EAA3E94337B693D6808E9C51B1 Ref B: CO6AA3150218021 Ref C: 2024-11-20T11:20:37Z' status: code: 200 message: OK @@ -1204,30 +1184,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with given name \"download-test-run-case\".","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:08:40 GMT + - Wed, 20 Nov 2024 11:20:37 GMT mise-correlation-id: - - 31b9508b-25d5-445a-8815-0e8a58f637aa + - 260d9a0d-bccd-4523-a490-2755bb2469c4 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100839Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000aym8 + - 20241120T112037Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000sqa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1251,31 +1232,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=X5YKSOjWpUtIsWhV528LXajxnodkJoazcOLbghZ%2BUNA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.2301027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=RQsLaTDpCcCH7lS0H4RlhtFAYI32PaXV6mhaSsPoBu8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:45.2298914Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=1vWr3Uy%2FX9Mo8kZ4JAvLda%2B8gxLSot22Oax6362ERdw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.230194Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=8291Ln%2B6lnm9qVWth8pdW0X75f3nSlQh5TZ6OTr3FjI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.2302833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=kVUxt4tDXUXMyG5XeoFI2KHNqs%2B7A28Z0Q3msfEFBdA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.2303595Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A45Z&se=2024-11-06T11%3A08%3A45Z&sr=c&sp=rl&sig=RwLvproTc6k9ymmgQpCcO4ewIcDGd4Rp6POPA8s5cRw%3D","expireDateTime":"2024-11-06T11:08:45.2304346Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:44.978Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A39Z&sr=b&sp=r&sig=cLHZ1nndjah6KjhnXIOtjIsxPxDj%2B0gb0%2BF87u2xRAE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:39.0101449Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A39Z&sr=b&sp=r&sig=c9OK83ZzIMwmugQVq%2BYbqiLsFs%2FJWQR4JkEblmepfBs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:39.0099004Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A39Z&sr=b&sp=r&sig=sIeaKDI5cQHRZvLKMV%2BU6ZezTFpNU2tcUuGTSMLhQNE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:39.0102315Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A39Z&sr=b&sp=r&sig=kSGk73t%2FnY541DSeeuI6gR6HH1aTRMRbUEhh3s4k%2BK0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:39.0103171Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A39Z&sr=b&sp=r&sig=nW11aIaXogl%2FCsOC6EE%2BDmumy927F37QsPDKFGogj%2Fs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:39.0104005Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A39Z&se=2024-11-20T12%3A20%3A39Z&sr=c&sp=rl&sig=t5fShUwOgCCHJkmCHrZSh7NpvrH4wnfbRMFwb%2FXwZmQ%3D","expireDateTime":"2024-11-20T12:20:39.0104862Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.001Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4866' + - '4981' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:45 GMT + - Wed, 20 Nov 2024 11:20:39 GMT location: - - https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2022-11-01 + - https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2022-11-01 mise-correlation-id: - - c7535ce8-98ed-49a5-ae9d-c60e561d9a1d + - 807d1d9e-4a5b-498c-96f1-7f97f7637b51 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100840Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000aypc + - 20241120T112037Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000sqm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1293,31 +1275,118 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A39Z&sr=b&sp=r&sig=sXxLhKBKeyGkjJSLmDgMOK9Ib%2FkzUnNbxRAXtdSoPVs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:39.1533123Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A39Z&sr=b&sp=r&sig=gXSgxPwymY4NqdavyXQDW5W5viHB7R2F7dBBr3wFbeE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:39.1528248Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A39Z&sr=b&sp=r&sig=P9N2GM3uGwcwqh%2FOILtgKZz%2B11OOHUUePJmWISn%2F5zE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:39.153485Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A39Z&sr=b&sp=r&sig=bs4pKQ6gCVGNM%2FStLPbZrJww0SpH2P0wH26DC76Zb4E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:39.1536618Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A39Z&sr=b&sp=r&sig=Pfav%2FOYS%2FHp8imBQ9h5ReVcvFIKYe2qWLcRI4ycmCN8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:39.1538345Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A39Z&se=2024-11-20T12%3A20%3A39Z&sr=c&sp=rl&sig=Xed3N5LobnMUk9UThbFoRhMryqgm6oOtxQuk0nr9%2F%2B4%3D","expireDateTime":"2024-11-20T12:20:39.1540068Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"NOTSTARTED","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.135Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '5021' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:20:39 GMT + mise-correlation-id: + - a870ee22-4026-487c-b58d-1ec67a64a824 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112039Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000srt + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A44Z&sr=b&sp=r&sig=DfIfJhxisYJpOlzTUPEzwr9xw5uJJ9eC2pj3r6Szul4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:44.3015875Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A44Z&sr=b&sp=r&sig=DT3TwYfMvaXHPCdhm53sW15HiZQJNhaLs7%2BAIkEx2iY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:44.2847329Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A44Z&sr=b&sp=r&sig=G4PUfnCsx67GzVeqJDzfCnsP8hZGBWvj4Ep8sVeJfYU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:44.3017677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A44Z&sr=b&sp=r&sig=emxnN72wyF0FYekHiUMddGD8ronBSVqPgRUjIjC5fEs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:44.301959Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A44Z&sr=b&sp=r&sig=cH7ifajPvKsaOYIjB5xwAC82PtFdM6TK22vAgwEJSTw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:44.3021396Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A44Z&se=2024-11-20T12%3A20%3A44Z&sr=c&sp=rl&sig=KCbdAP4kuFlErs6%2Fls%2B0hQpz0mFuImPzZqJrfkivIDI%3D","expireDateTime":"2024-11-20T12:20:44.3023067Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '5011' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:20:44 GMT + mise-correlation-id: + - b4a7cdc6-08bf-4a9d-9f73-879e6203b779 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112044Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000swd + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=CplAztMsRlLyotYUIUuX4gbvjmnUB9Iqu2yuPsQwsrs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.8294264Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=ybvG9zak1PCspaIkQjGjfsz53VziArsYYl%2FwmfNptaY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:45.8271248Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=5CIEk9bv7XY0pn7cY5ZUCscf0K1%2FePNByyTjyNCSlAs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.8296385Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=8IbVQUwErpzOIFn%2FOM3Yp18KUq6ckAQCz%2BoFKBjRHr0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.8298942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=DM8ON6b%2BmdPRMIhmP9R6hdtSwIBnHY6T725WbIpQrgo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.8301177Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A45Z&se=2024-11-06T11%3A08%3A45Z&sr=c&sp=rl&sig=pHud7m5WxeArgsmw0kEcLb5keJ2QewKEQiVNlXy62qg%3D","expireDateTime":"2024-11-06T11:08:45.8303236Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"NOTSTARTED","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.615Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A49Z&sr=b&sp=r&sig=kVQb3TFdOSqx4pSRk4xADyE5bNJuXXsSn1dCaQH%2BNio%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:49.4740836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A49Z&sr=b&sp=r&sig=IRXv2y%2BrqU0EaBa1IJOfbv0HxlEjft5cihTWnxd5hYU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:49.4736815Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A49Z&sr=b&sp=r&sig=IdMovmNEwk2K%2Fv%2Fd0LP6lBADk7F3nvNtV45WbEveNtE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:49.4741853Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A49Z&sr=b&sp=r&sig=Q4zV7GU%2F9p7eISmXbxIoYxJ1H43g8UCqQ4G4yGUHkKQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:49.4742826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A49Z&sr=b&sp=r&sig=C1FnuRK7SWcwpMgJOHeJXLfyFkXkFGB78f6iZjZLbdY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:49.4743798Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A49Z&se=2024-11-20T12%3A20%3A49Z&sr=c&sp=rl&sig=wWNW8babxAel%2FsCl%2BnDWoyUAvVBMBPPb8vyPyVQxjJU%3D","expireDateTime":"2024-11-20T12:20:49.4744695Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4912' + - '5020' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:45 GMT + - Wed, 20 Nov 2024 11:20:49 GMT mise-correlation-id: - - 6d09fcd8-8dc1-4e44-ac88-66acf1fec752 + - 9b77d555-f252-487c-ae63-5eef7fff2f03 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100845Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000ayz0 + - 20241120T112049Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000szx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1335,31 +1404,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A51Z&sr=b&sp=r&sig=tDnPCMsZ15jUB41GI%2FAwGVotIp6jskmlMn42Wb6ZYU4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:51.2690807Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A51Z&sr=b&sp=r&sig=ZzBZpL2SuxCEkQL1VJrX6Blg0I%2B15oZB%2FS2JW4iH42A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:51.2688116Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A51Z&sr=b&sp=r&sig=SoN7CmrhRC4uGiTzr%2FfbTbXwoOZhDXkf8FC92ELBP%2FQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:51.2691707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A51Z&sr=b&sp=r&sig=kLuIQ38UAa6KciG2eDJNCPE1hr%2BwkhrGYdLxDf8Rkbs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:51.2692666Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A51Z&sr=b&sp=r&sig=4KjR8JyeI2%2BLImWMDGmkxYSSv%2BsU4lToJy%2BQRv96%2Fhw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:51.2693634Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A51Z&se=2024-11-06T11%3A08%3A51Z&sr=c&sp=rl&sig=N3aXbEEL6KFr3b%2BS80CeZMfJjISSBKI2ltBlmyqPJtU%3D","expireDateTime":"2024-11-06T11:08:51.2694506Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A54Z&sr=b&sp=r&sig=C1kSTwSrw3EvnoK%2FGs34cnzMEDSFLlerAhUT8HWhL1k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:54.5943342Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A54Z&sr=b&sp=r&sig=uV0kzZvGeC%2Brqc%2FuPsdfNAQ4QJaDZPT%2Fi%2FKO7Hx2d0s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:54.5938729Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A54Z&sr=b&sp=r&sig=wNXjcyYVHgb%2B4MLMZ3gY1tuMJ3mUtMzALi9e4MIJWmE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:54.5944615Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A54Z&sr=b&sp=r&sig=lJ7tgILIVGXYO1sXGL9%2F6kRQmXJXnwHpEkOIe7rKlM4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:54.5946093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A54Z&sr=b&sp=r&sig=GfKQOwpj1TrpH75MwfcsVEssbwuYyWJ%2Bs4loSyPQ1YM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:54.5947513Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A54Z&se=2024-11-20T12%3A20%3A54Z&sr=c&sp=rl&sig=Hh6xLAODyWHeM1m9Gxs9rqob8Kn3CiTz3mJppNpa5Ps%3D","expireDateTime":"2024-11-20T12:20:54.5948944Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4926' + - '5022' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:51 GMT + - Wed, 20 Nov 2024 11:20:54 GMT mise-correlation-id: - - c4ee027c-88c6-4bac-a347-8c586d14b7ef + - 2de2fa78-2fc1-4542-84c7-2a009e1b0a1f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100851Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000az9u + - 20241120T112054Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000t3t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1377,31 +1447,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A56Z&sr=b&sp=r&sig=napZTUbJl5i9rS%2BBYBs4ocFrDrGAfIj89M31OWqYI44%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:56.6687472Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A56Z&sr=b&sp=r&sig=%2FsrVoMKjh%2FP1jhPXKKQ6E8C8qy%2FmARzpRJOdcOepMYE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:56.6680792Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A56Z&sr=b&sp=r&sig=yY8BxqPoiCrTABd5FtUOPLKLdeK1ytt%2BBC8F5JBxHnU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:56.6689378Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A56Z&sr=b&sp=r&sig=9R2ZjqB891JiYyav%2FGMDgVEOL72EYluGN1ViPN5BqCA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:56.6691349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A56Z&sr=b&sp=r&sig=j6XGIf7Sh%2FHmTvgvGeqwuowezRQi6qkvG5wDXvkU2Co%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:56.6693039Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A56Z&se=2024-11-06T11%3A08%3A56Z&sr=c&sp=rl&sig=xXaghSbu3UbtFVIaUS1XplfOm956p7fy1e3tGn2oZEY%3D","expireDateTime":"2024-11-06T11:08:56.6694836Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=gmWoaomjaOYxtm5LQA4Oz%2BT78TI3wmlMGT%2BrwalBnhU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.180596Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=BUuDSf28lKGM%2F4%2FouSO2y%2FScsx2ZFJLqMJCfGa%2BUECc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:00.1802986Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=cpIKASJiCnZVl28Uad7mJCjlt7x4Oa1kWjWPCeZS%2FsE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.180696Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=uS3Zgtm%2FijQrvVrESG5o%2FTxeDHphya%2BqO8lCt1yBcq0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.1807857Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=SI4VBTsS%2BO1g4Ov4u0iduHtnn%2BrUYylJ%2FVmkRXIp2q0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.180881Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A00Z&se=2024-11-20T12%3A21%3A00Z&sr=c&sp=rl&sig=KANDajuBynZdDepSz4AtyaH2nXKsqG9%2BFMUe2nRGT9g%3D","expireDateTime":"2024-11-20T12:21:00.1809791Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4918' + - '5031' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:56 GMT + - Wed, 20 Nov 2024 11:21:00 GMT mise-correlation-id: - - 44f36fd6-cb80-4d67-a43d-172aeed3dfde + - 6c82d2ff-3df5-49fa-bce4-fccc6d9f8970 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100856Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000azpe + - 20241120T112059Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000t7h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1419,31 +1490,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=E3WJ4xE4P4DoK8ocjzshaGntMqIWxV%2FwEvZW1mii%2FYg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.0021863Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=vNt7HdYU6GunFYUdwplivaIFy66vixw7co3NZEES%2BiI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:02.001817Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=gKbrO8FJ98wwaB2Lxcom0AyvGDQpFae1bfiJZC%2FKzyE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.0022831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=wMkSQ7KrFwYQePc%2BViqRoC3VamIt0qyIv2Ql6eKhIFs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.0023729Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=%2BWZX3tGzLDgp2HfYG8gw7HVD6HED%2Biryxg9tKohRkao%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.0024659Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A02Z&se=2024-11-06T11%3A09%3A02Z&sr=c&sp=rl&sig=l5SCcs55TOPHQuWSEZuKnHdcXvVk8JulenJW43dqqNA%3D","expireDateTime":"2024-11-06T11:09:02.0025489Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=m52mAYhPfoWNn2GQBqkPbaWoGBDETgxIoNw5QqPdZkw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:05.3093951Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=OK6AEviNEMoVfB17h4EUseeEHjMhd0RQhtOSH%2FGNZm4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:05.3090559Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=%2B3fbnWpyW6HUHr1RU2rG%2FADCUcpokG2QHcj2L7KJS8U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:05.3094916Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=eo3ju7BxZx5VOCp7j9lA1FdNpg4gaz4oJWLb0%2Fuxbig%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:05.3095844Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=73eJTe3JGy0MkbjlSpG796sEOTRLbhSFmnW6XA%2BnjKI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:05.3096741Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A05Z&se=2024-11-20T12%3A21%3A05Z&sr=c&sp=rl&sig=HmWaDbtubky3LU4pRtQkAgIt3i9luHsgdvWXeAzD%2FEg%3D","expireDateTime":"2024-11-20T12:21:05.3097639Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4917' + - '5018' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:02 GMT + - Wed, 20 Nov 2024 11:21:05 GMT mise-correlation-id: - - 8c461009-130c-42ef-b99b-aaf1f66feef6 + - 3c57d86e-d90a-4636-96d2-e28abaafd6b9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100901Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b01y + - 20241120T112105Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000tc6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1461,31 +1533,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A07Z&sr=b&sp=r&sig=ncUFI%2FeAHRpemkYLGbkMpS%2FcmdozYPr6hJwcoR96izg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:07.3588941Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A07Z&sr=b&sp=r&sig=1Ck07zY7zs2N90tV4M1kVbmAasLoQZ4HFCbUuRdX2Xg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:07.3583467Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A07Z&sr=b&sp=r&sig=yYaOXBQj43o%2Boj2o6mR6XosFrZEzbhtT%2B0%2F6KTRNtr4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:07.3590768Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A07Z&sr=b&sp=r&sig=vCGzri2iVbSErgdlukEhh%2FIvPEwXcLp9ayaDhFSsrsY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:07.3592709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A07Z&sr=b&sp=r&sig=WcU7VK4P8ufAib58fRlytDENdodY64s87dlv7skTlIE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:07.359458Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A07Z&se=2024-11-06T11%3A09%3A07Z&sr=c&sp=rl&sig=oCLupeeNePGa9qT18ftM3hkQ7P%2FtRKP%2BEE2OxyLoLe8%3D","expireDateTime":"2024-11-06T11:09:07.3596466Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=HQk6aDiTtisaRaFhActbVnSYwVeMr23yEOqkqimtOcQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.4352436Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=nr1D9BO40OOQ%2FV506zOBSZIon%2B7ckhkii%2FvD5PYxOvo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:10.4350135Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=F7mpA2uOw2XHzZkN%2BlhHHB6k8bV%2BUcYVinXHBGiJBnM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.4353149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=%2B2BAq540kR2a7FDjOY674VfU4CEmzSj2w4sLU72pn10%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.4353949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=ndwcqu8oQRUjM6BPc1xFt8DCY31S3kuUu5mAscOLtPE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.4354564Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A10Z&se=2024-11-20T12%3A21%3A10Z&sr=c&sp=rl&sig=b3qgNoFajmdZ4fHddnpM2UAWWLnTxE4FmgAQFIoq03U%3D","expireDateTime":"2024-11-20T12:21:10.4355267Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4919' + - '5018' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:07 GMT + - Wed, 20 Nov 2024 11:21:10 GMT mise-correlation-id: - - 47367581-4c95-4cae-9d8b-5a640646bbc2 + - 62806a2a-2e1e-40b0-8901-4ae85d54e00a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100907Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b0fa + - 20241120T112110Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000thp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1503,31 +1576,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A12Z&sr=b&sp=r&sig=xakzQPtt7KSWkMiqdC%2FeiwVntgs%2BrzFgOADmc5hL1ak%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:12.6879895Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A12Z&sr=b&sp=r&sig=Fyg9ITV0nwaXT22CmwimSUwemSBx6CGLN1BA5kZH2oE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:12.687591Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A12Z&sr=b&sp=r&sig=qq0adPOvmY0XvjqT5zaRbdzL85qplvzEXB%2BXWM55KRs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:12.6881531Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A12Z&sr=b&sp=r&sig=OihG1dPtxWirpngqltJV9ipue3WOdCWsBY0HLmRkmOs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:12.688326Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A12Z&sr=b&sp=r&sig=f1xAkcdUYskVJRTBrRCDi2cDCF1L1sKhUNhceQ%2BZNho%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:12.6885172Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A12Z&se=2024-11-06T11%3A09%3A12Z&sr=c&sp=rl&sig=SHmRRGnLSAcVN%2FSIlXjSc6xDRmX%2BP79BEznNtZ308u4%3D","expireDateTime":"2024-11-06T11:09:12.6886762Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A15Z&sr=b&sp=r&sig=gpnw0pbkycf8gbrPFel1nsRCEvhHFdvYHJWh01wMkwM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:15.5629933Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A15Z&sr=b&sp=r&sig=o9hwrh8liasFlJo7shPeGqirU2UD46W0s1%2FHnYsv5bc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:15.5624859Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A15Z&sr=b&sp=r&sig=g%2FWBHE%2BvvXGPTiXlk9hnkadSIVYr7%2B3iNReiG1RWXII%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:15.5632115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A15Z&sr=b&sp=r&sig=B6RFbidqAx38BVaBPdoWQ41Hg%2BThEZvWD%2BmB8ihRHAg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:15.5634211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A15Z&sr=b&sp=r&sig=WZvokkYtTpf45gKpqUN4VFzXfBeVX5Gd5eS06PC8tyM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:15.5636532Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A15Z&se=2024-11-20T12%3A21%3A15Z&sr=c&sp=rl&sig=7YoHVzkTlJWIqbG7kHPdRqvFST8lwH5AX1wh2EtYHXQ%3D","expireDateTime":"2024-11-20T12:21:15.5638066Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4914' + - '5018' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:12 GMT + - Wed, 20 Nov 2024 11:21:15 GMT mise-correlation-id: - - 2cabf4ea-679d-43a6-a514-0006fae5e951 + - 8882dbcd-87ba-4d49-ae46-45ff5f554c2e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100912Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b0wv + - 20241120T112115Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000tpd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1545,31 +1619,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=An%2BKmdBmz%2B7fmSbuGepgOvU5ydwpbd1vkLMzVwNc7KI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.00459Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=YlznrdenDit7azqeXHjEZthXaX6snhOS9b4SGQ82KQ0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:18.0040277Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=1Kc0KAII2TytaTdh2cMB9IICzgzKR7T%2FB%2BqzJvFNj0Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.0047557Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=STBRVXDkw32gHtE%2BQeCdoaOJ1rga1JlJosZNRIlRKys%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.0049248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=xoBIZQPYKzoXynBrfnYcfx6CN4TRwpe7nHtc66svELQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.0050946Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A18Z&se=2024-11-06T11%3A09%3A18Z&sr=c&sp=rl&sig=fpSqxCd47DjLLlV8koDTra1TOvpjs%2Bqt2H4Gvytr6Jc%3D","expireDateTime":"2024-11-06T11:09:18.0052562Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A20Z&sr=b&sp=r&sig=hEsMBtaN6YAx8M0eWDR5xmgoeULvNYWsRKtnCqqkIxk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:20.7013127Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A20Z&sr=b&sp=r&sig=30%2BVmDYv%2Fb4nrVInCgWIiM%2FNzfQPLirE0xHmzfVJhps%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:20.7008122Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A20Z&sr=b&sp=r&sig=5yFyIgHXg5cZh2sLql2GvsseItBYI22u%2F7N5edpCSkA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:20.7014971Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A20Z&sr=b&sp=r&sig=Gurwd8yq%2FV6BBH3y7vIaHkBr5X9WZwaGi%2Fov8jIUu1w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:20.7017028Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A20Z&sr=b&sp=r&sig=MYQiEIYp4DuPJd12ZRtPk8lWiL3VuAZrq4PG5ZWaaaU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:20.7018826Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A20Z&se=2024-11-20T12%3A21%3A20Z&sr=c&sp=rl&sig=VB9cj%2BIkesz8Ji9OlSdyFM5tKc9ySJ12LwOmruRR6%2B4%3D","expireDateTime":"2024-11-20T12:21:20.7020883Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4914' + - '5022' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:18 GMT + - Wed, 20 Nov 2024 11:21:20 GMT mise-correlation-id: - - 82f26733-b300-43b0-9d3e-e1d4878469f1 + - 79f99afc-368f-4a83-b48d-2c5e342e484d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100917Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b1ba + - 20241120T112120Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000tu0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1587,31 +1662,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A23Z&sr=b&sp=r&sig=EcttdNPewiLFe27UnykKxIqz1lf%2BiQ6RK9cqE1T8iww%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:23.3775695Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A23Z&sr=b&sp=r&sig=nk5tccYa2hJlrxwWW3KmLrda9MLgIUCLi%2BdCQ45cZuA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:23.3773493Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A23Z&sr=b&sp=r&sig=xK%2FCUXEVE4wdFKKJzAns71ha562k9nbHanC%2BcKkbuEQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:23.3776396Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A23Z&sr=b&sp=r&sig=n51G05FrHw01oL3dRxdRd1fJY6WPi4oEdqeovbacQGc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:23.377725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A23Z&sr=b&sp=r&sig=HznRcwvbuh33CR7MC4tppjvBWCezs7EP50IeecmaCwI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:23.3778016Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A23Z&se=2024-11-06T11%3A09%3A23Z&sr=c&sp=rl&sig=rKOZK8spBqR9WLiMDzu3BnBFDnQ1sjAJUzRAKN8tcq8%3D","expireDateTime":"2024-11-06T11:09:23.3779345Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A25Z&sr=b&sp=r&sig=yVAH6fAso7zDMpxLoMB3qWPpPs48zuJ77rvF2tVCTEs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:25.832409Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A25Z&sr=b&sp=r&sig=TJ7DdFZniusYNpzeDSAvC4CZqJZR2AlR7emURBme8Vs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:25.8319028Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A25Z&sr=b&sp=r&sig=1%2FGeacD7Gf7Wk2QvzSrZceVKcz0QvvH1RHWlujs93ak%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:25.8326065Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A25Z&sr=b&sp=r&sig=T5DY%2F0fxV1EOvfKiOGccWYCYJmmIFEk727gNgqvzmVY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:25.8328359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A25Z&sr=b&sp=r&sig=VnGsr4g%2BO3ftfRGsGka95GePSdZVEW%2BIXKaYumDxHmM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:25.8331132Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A25Z&se=2024-11-20T12%3A21%3A25Z&sr=c&sp=rl&sig=9SZ59ins1GCN%2BUjhmioAURLj7B%2B6Dq%2FaddpZb5uLtfI%3D","expireDateTime":"2024-11-20T12:21:25.8333245Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4911' + - '5019' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:23 GMT + - Wed, 20 Nov 2024 11:21:25 GMT mise-correlation-id: - - f3c991af-5360-4e1c-a659-dffd7d3b894b + - 20de7a66-41c1-4d21-a453-bb7cd5c7ef8f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100923Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b1tv + - 20241120T112125Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000txn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1629,31 +1705,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A28Z&sr=b&sp=r&sig=9XW6Z0Mlqukt19BgkR8iILXCy98KmS3ctbTr0VJBvJU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:28.712776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A28Z&sr=b&sp=r&sig=i63LVMSBptsAdYUkc%2F%2FMlVIl9p0D1oh4KSRsC27sGe8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:28.7123563Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A28Z&sr=b&sp=r&sig=7snwjs7DQEMvK%2BKJHggyCSG4kJwxWvu%2F%2F9Gk996mpDU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:28.7129212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A28Z&sr=b&sp=r&sig=7QbnVDatxmzllrPytEOHV7cSNrJ9HKAwBZnXBHsmw%2BI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:28.7130603Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A28Z&sr=b&sp=r&sig=TBIyewTQfAwtZWpgaUauGZkkonYMnD%2FDruPkU1iITjw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:28.7132053Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A28Z&se=2024-11-06T11%3A09%3A28Z&sr=c&sp=rl&sig=VrDrPE%2Fz6HTyUmAGZyxrrxLS6zN%2Fk2%2FIgNkclOqZ9oQ%3D","expireDateTime":"2024-11-06T11:09:28.7133446Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A30Z&sr=b&sp=r&sig=L6K64%2F1fIJPGtsZ7FtKIJng%2FVDqwjNBZXliGw9F%2B3DQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:30.9571007Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A30Z&sr=b&sp=r&sig=6403vmbetWgnzClnMLzf2eBJWOFTVrSV4v5J0kp%2BTdQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:30.9566767Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A30Z&sr=b&sp=r&sig=5fgiQdm6o2iaeBCI9RYQvOmkVsGi%2B6KNBkHV9m2H3pE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:30.9572664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A30Z&sr=b&sp=r&sig=LAlOWwzkJC5n0AtVoV%2B0GOb1zoK0olUDP4lZ8YbC9vE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:30.9574317Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A30Z&sr=b&sp=r&sig=wAKe%2FhowSTd1e6CMa4G1%2B3SLE3ZGahD%2Fo9anr2Bv%2BRg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:30.9575908Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A30Z&se=2024-11-20T12%3A21%3A30Z&sr=c&sp=rl&sig=rWWnY%2BrETmfxpP5D4MFN%2F27xe0NoKZnWIizOBdi80s0%3D","expireDateTime":"2024-11-20T12:21:30.957757Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:39.254Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4923' + - '5029' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:28 GMT + - Wed, 20 Nov 2024 11:21:30 GMT mise-correlation-id: - - 677e23db-af03-4696-95aa-cd269507d937 + - b118a722-5748-4420-b441-f02e17a1e8ad strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100928Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b27m + - 20241120T112130Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000u1y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1671,31 +1748,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=mF1M%2FeLBuYOMk1CtKSlAjXivF3mPRPj0IODyid6p39w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.0475812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=0LEQn3FW7iv7mcYgiIySlpy16Lnxrl0abaTv2%2B5IIpM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:34.0472426Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=xH5c%2Fgj1rc37nugHdD8egORt9WHUiDR2TSEAi2smfC4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.0477268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=2KS1PD62nLKp7zn1O8xsb%2FfY16qGVvtFsE3vCA0RJLg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.0478682Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=fOgj7FmVAbhUg%2BB1qmFRwgLs3946vMHDg9%2FDbevoqwg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.0479894Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A34Z&se=2024-11-06T11%3A09%3A34Z&sr=c&sp=rl&sig=o8OcGBFbcYpfWMb7aiJiaKFdFuIgpKycReZNOe4zHPQ%3D","expireDateTime":"2024-11-06T11:09:34.048144Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=aYC6z0zBXqnFrfYARdXxuQxkecNNu2YX0HGBi1nBarw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.083773Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=fRgWtEFGDPqVJgrJF9n8bstiSxGoYvmqCwCd5i62BU0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:36.0834795Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=Csns2YV5Qrd4eX3PMyvcgHF8LcExiOv2hSKK8asbAok%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.0838563Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=nOH9AT6lG2O6goviC9jRHLT%2B1TvHEtFywMTBkmTaVCE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.0839481Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=W6oJZhKKOVvT7Ra789%2Fe5yuDjFGPqhRTVWbucUit2L8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.0840382Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A36Z&se=2024-11-20T12%3A21%3A36Z&sr=c&sp=rl&sig=G2dR%2FwlaNFGgnGhA6nFjSnJkbTXf8aR2aHkvfCVkye0%3D","expireDateTime":"2024-11-20T12:21:36.0841174Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"CONFIGURING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:33.114Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4915' + - '5010' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:34 GMT + - Wed, 20 Nov 2024 11:21:36 GMT mise-correlation-id: - - 2a8586d3-9f42-451c-813f-e65b462c8fa4 + - 4496a536-a47b-45ca-9222-d8d2fb7fa0b8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100933Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b2mq + - 20241120T112135Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000u7d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1713,31 +1791,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A39Z&sr=b&sp=r&sig=aFDozArbyo7Vr9n0aYpLzJO5lHfNPxPF5Z6bcUawCQM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:39.3896981Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A39Z&sr=b&sp=r&sig=gRVVL2z6QzRTFJW4TViS%2FtpDKgmGiPIGOrnSAxR7phI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:39.3893393Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A39Z&sr=b&sp=r&sig=P59x5w90ytP4RwNvKCxLIc%2F3HYJsgBnmzAx9ISsOAIA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:39.3898359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A39Z&sr=b&sp=r&sig=9S6yObbR%2FQQHwsba39mhw4PoEsTn2AzERtILpDaGzzc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:39.3899729Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A39Z&sr=b&sp=r&sig=y5f4QAO74%2FU6rvwCM1xXef6PZKLhsGU9OP04FGVNs8s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:39.390155Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A39Z&se=2024-11-06T11%3A09%3A39Z&sr=c&sp=rl&sig=Cp1Owr2puSYj2%2F%2BJX4rU4%2B4rQ2APxjYNq1UEVstddcE%3D","expireDateTime":"2024-11-06T11:09:39.3902799Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:36.647Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=I3e92%2FfX9ONkFVjJOo2ATW1s9tth8HOSjVmqk%2FHvGXw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.2089936Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=rqNqY4HMK0QwlI%2BUzpnD2Cnwb63JpfvfCYVzCnqo3R0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:41.2084988Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=SxivAiETP5SkmiM5ldq4L0vvfZqjv2FtfZsKrTMHfa4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.2091897Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=aQdRIrgxlqx3MNZWNX16boIr3EBrLQSlzLMVL4xboS0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.2093716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=UAVvW3HpHOT3Me3aCTvQZsCSefsYPfnzlNtrK02c%2B8o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.2095667Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A41Z&se=2024-11-20T12%3A21%3A41Z&sr=c&sp=rl&sig=QAn3UD9hnYNmNviyM3N3Ky96qQ%2F%2BZ7rJvvDT0Eq2E%2FU%3D","expireDateTime":"2024-11-20T12:21:41.2097659Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4916' + - '5017' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:39 GMT + - Wed, 20 Nov 2024 11:21:41 GMT mise-correlation-id: - - b22c7cf4-35f2-4baf-a50f-0d47e0e634b1 + - 64a25423-245f-4bb3-b133-86e20ac73eb0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100939Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b2yw + - 20241120T112141Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000uec x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1755,31 +1834,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A44Z&sr=b&sp=r&sig=V6kNhpomA%2Bg2pxwf3Vm16q%2FPoNNSd9%2BNKDWskBBHzrI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:44.7171651Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A44Z&sr=b&sp=r&sig=3Y2zbTE1zJLpd8x4%2FLD3ulogcpiQ9YAzZ7VA3uSMzQw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:44.7166987Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A44Z&sr=b&sp=r&sig=5HTVQ3YdTVJr3BUKpBw9U1gzcgxh7HqwD1NiC0%2BhB3A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:44.7172641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A44Z&sr=b&sp=r&sig=a4zVQHQIB5l1q0IUY%2FbRRfBYzUvlXvvda%2Ft6q5I5S7o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:44.7173597Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A44Z&sr=b&sp=r&sig=HWk%2Bp8OdnyHvfElVK5lMWi1ebsVpZDLPiSTMf3c0HXk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:44.717455Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A44Z&se=2024-11-06T11%3A09%3A44Z&sr=c&sp=rl&sig=iIrumags6yWTBy6hpwmDBEtCsINfPxkMWpEutLzRKPE%3D","expireDateTime":"2024-11-06T11:09:44.7175488Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=UlrwnzLRH%2FatT2nXGUi4qZrOeQIM2oMjnTucqKioewE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.621552Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=1CvSecj7LwXjfhMB1o39SgES5crn27nwzWMY7DX6iPQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:46.6212702Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=hiUgKS3LDm1IE3EN%2BUpfV8N8n0lJhGavxYX2psIuVuQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.6216964Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=cxss3OOvkLcD8SwTpSReuLTHzEvQZF7D1gBRrerGQ70%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.6218394Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=ZUCS1ZZak5aAN6X%2BR1h3qtMg8cljFvV%2BKxSa3ZXMKKU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.6219796Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A46Z&se=2024-11-20T12%3A21%3A46Z&sr=c&sp=rl&sig=SBYJG6GGAY3jhEGBRGb0HnDCeriMk4KqK3CGoSfWlzc%3D","expireDateTime":"2024-11-20T12:21:46.6221172Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4916' + - '5010' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:44 GMT + - Wed, 20 Nov 2024 11:21:46 GMT mise-correlation-id: - - f4fdaccb-cdc4-49d8-99ba-fd74b4616a9e + - 324be155-9365-4398-ae92-80455e2e5167 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100944Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b39v + - 20241120T112146Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000umt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1797,31 +1877,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=nrn2WjwttEFHvwJuCGFQk%2F0wu%2Fnl%2BnCm4xgycH27mB4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.0683828Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=3gYCexyurQEeZ26MtKQKS43FCMdSjYVwwCTVXcK1wDc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:50.0671789Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=XsqcqLARvkdTajQ9ieDKkC13VM7eE5BgAbe09EgHPNE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.06868Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=gKmp2s%2BFt7ki1KGHmbI7z%2FpXhqu1ETVxLnAo7E%2BzGPc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.0689727Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=jFTTDkO5gNtgXVyrBKP0Uo8L0TgKPvBA66D6n0IXD%2BE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.0692567Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A50Z&se=2024-11-06T11%3A09%3A50Z&sr=c&sp=rl&sig=IPfGd1%2FcjWCLRHBOzXhTFMuT4ikyu%2BHbdEtUfckK%2F2Y%3D","expireDateTime":"2024-11-06T11:09:50.069564Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A51Z&sr=b&sp=r&sig=k%2BdTrLrzeRZZY7X8LKHtiYAovBL7vcUQ9emCHxlBWzo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:51.7450654Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A51Z&sr=b&sp=r&sig=N3IVqvjmGTWA971eMC9gWZNJm73wBysm%2B64RH70O1wE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:51.744805Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A51Z&sr=b&sp=r&sig=%2F6LxxzoOIy6L0pUkN8t4rHRa%2Fguh%2F8dzRTvATpjpdJ4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:51.7451718Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A51Z&sr=b&sp=r&sig=rmGL05E6GayTfhbUPTLBKFvKESfbZvW3BfpgpGQ8kek%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:51.7452804Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A51Z&sr=b&sp=r&sig=eLglmAQ4297pvOte0rg8QQcItmj%2BHKCNSYAEsVql1sg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:51.7453948Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A51Z&se=2024-11-20T12%3A21%3A51Z&sr=c&sp=rl&sig=ch6wQfbXWRR7gLBa1g3soCDf3Duj9oS9TFUqP3njtMw%3D","expireDateTime":"2024-11-20T12:21:51.7455831Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4918' + - '5014' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:50 GMT + - Wed, 20 Nov 2024 11:21:51 GMT mise-correlation-id: - - 9503bf54-2baf-49af-bc4e-a7be44d2c1a4 + - 04f018b4-2994-4164-8da7-033b01c343d9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100949Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b3pa + - 20241120T112151Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000uub x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1839,31 +1920,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A55Z&sr=b&sp=r&sig=%2F%2BFAZiaLigEKtLXpTGKDx7tNzl6UdMIgPmU%2Fd9cKbHc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:55.3913707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A55Z&sr=b&sp=r&sig=6oKtQGhci2l6hgVGxk6IzKHa%2FxLK0E6QnsKiCNC0Y2s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:55.3909449Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A55Z&sr=b&sp=r&sig=1UJEJv6CHntUseu7cOADVN%2BWDQVxb%2FgsVoX8%2Ft5l8ho%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:55.3916715Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A55Z&sr=b&sp=r&sig=cJydfyuHU8Z9rS8ItatRYEDXF%2Bbm4DVVGhhw6sUdeiQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:55.3917501Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A55Z&sr=b&sp=r&sig=dZX6SrWYKDcs8VKPnwaksndkLsd3dBoeqPZwiESTVEs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:55.3918242Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A55Z&se=2024-11-06T11%3A09%3A55Z&sr=c&sp=rl&sig=lE2aWGyO8GYMm9Tuy36p%2FcFFISSPoAerNmGg2E%2BNV1U%3D","expireDateTime":"2024-11-06T11:09:55.3918968Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A56Z&sr=b&sp=r&sig=wHyKpC0Ge09M6YNN06UKCO8un5yREBxK4lw7ewCRy1o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:56.87273Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A56Z&sr=b&sp=r&sig=XllIz2pJ3RA8ZJfbAMvgWJ%2B%2F8ai5oVnSLyCGI5GcHNY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:56.8722747Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A56Z&sr=b&sp=r&sig=8VR2eH%2FafHrs%2BAb%2BTWybYaDDket%2BCrYn%2FEA84Vwe7lc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:56.8729348Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A56Z&sr=b&sp=r&sig=vCfy0cOapk3QnDi0nc9iyYjMZ8wxVoskIFjlxrQ3mXo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:56.8731146Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A56Z&sr=b&sp=r&sig=bXw0YXDmX1emApMqSjXxhFli%2Ft01ttMv7Q9ZkogogqA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:56.87329Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A56Z&se=2024-11-20T12%3A21%3A56Z&sr=c&sp=rl&sig=guZr0gxtc4r1CqHWnFybVrtTs2LXs1mnIkT44IHSNCE%3D","expireDateTime":"2024-11-20T12:21:56.873465Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4921' + - '5014' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:55 GMT + - Wed, 20 Nov 2024 11:21:56 GMT mise-correlation-id: - - 7efec623-aaaa-4030-9e08-56380b8719c3 + - 6ee5219f-95e4-41a4-b458-38e3be5f6fa8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100955Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b40u + - 20241120T112156Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000uz3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,31 +1963,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A00Z&sr=b&sp=r&sig=czzpV81qOuLGBS7ypI3%2B82hlTZp7zIWqkVhKHUqRyQA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:00.748062Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A00Z&sr=b&sp=r&sig=3LXqF36Jr8UTcgMVIx%2FVIZbedXmlVh%2BgT7m0IiCbPWQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:00.7477742Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A00Z&sr=b&sp=r&sig=67PUcX83q%2By05jHc68jzw%2B1t0O8WgksmQPJC8ng5UA0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:00.7481426Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A00Z&sr=b&sp=r&sig=ssC6zqh0yqcY4gzeeq1UZHeb%2FTr78ejIsuOq6%2BpYs7U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:00.7482372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A00Z&sr=b&sp=r&sig=1fYMxVhYi5%2FJbsEqoeyEpyazMVPoCHnE0SFgc9f88Nc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:00.7483338Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A00Z&se=2024-11-06T11%3A10%3A00Z&sr=c&sp=rl&sig=PPMYYaGFIc3oocTDNjwq6q7G3LSDNhsTYkClZdBs2Os%3D","expireDateTime":"2024-11-06T11:10:00.748427Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=pdxUv9ebPGJ1vwJ6ySHSej5Y2NGJ3O6qiqTJvL0uwDw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.0189643Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=TGj4PlujKrIE0BXU9S%2F8UKnqitKMOo8noR8%2FkKvbVRM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:02.018571Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=P5pmbiINfj3S6%2Fqs0xVC50vNfNRePTikAR45YlRuGq4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.0191338Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=NuQ8xuBx0IRjRa9BUPRB4Bjl1DN6xsSudUWcPJJl35Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.0193951Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=R4gNQsZLioLQHv82KuXSAVk7FL50Vfqvx5eFRSGIuIk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.0195717Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A02Z&se=2024-11-20T12%3A22%3A02Z&sr=c&sp=rl&sig=0EDLvjSTnMHGfYWx3zHKlfp2P3fbQHHR8ShUpECEEu8%3D","expireDateTime":"2024-11-20T12:22:02.0197457Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4915' + - '5008' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:00 GMT + - Wed, 20 Nov 2024 11:22:02 GMT mise-correlation-id: - - 2df03263-12b4-4364-ad25-696c43a3b520 + - e028517e-d981-41c7-831e-d1190d75cb79 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101000Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b4bt + - 20241120T112201Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000v6b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1923,31 +2006,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=LVpvVyDKBxGxJ8XUZNDeE3cn67Idcc09wE2O3PU9E%2B8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.2076104Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=%2FSmbBh8VXNWtdgcUKCGtAqI3uVWChDrcfP3g%2BOiaqsE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:07.2070987Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=JVWiwywvzZ4x79oTJrnu2tEYYNmWR8v6j3sg4HeMWnk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.2077908Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=tWnPCsEQJtXOB49b8r7lwWgqYWtL31xuIzWMAR6djOQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.2079679Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=mL9apIHLHtBF3f6V4uAH52HtL4FmJMy%2BH73cWUpexYQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.2081431Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A07Z&se=2024-11-06T11%3A10%3A07Z&sr=c&sp=rl&sig=JgWPYCSdqZ2wNaqhAZreL39%2FE1ZhUCXI4iLBFNlhqhY%3D","expireDateTime":"2024-11-06T11:10:07.2083095Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=KNpZ9EcrTe5lCbEbqre9K9GuyFkxVTrSMeQ1i1OtNBM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.1890869Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=YDqd6rWUBW53GjGs6eEhq0UfN%2B8K9GHYAUneJaEhNLw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:07.1887171Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=beqdbgx%2Fu8BLk%2Bek%2BJMoDN18aDK6s6enijhW6MaxeoI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.1891924Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=dGH%2BRmJhaKUsnamNXnK4oC%2BrN1Dwxsy%2FLZAGgvP4FJQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.1892959Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=9qLgvLsVdzxbK40dkg26quoKVLf1Gc5mJaBL5bkr4rg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.1894046Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A07Z&se=2024-11-20T12%3A22%3A07Z&sr=c&sp=rl&sig=urXJOE7sl7ivWaXxTlL2vEIGqnMJ9YLuDbK%2B8MoB8sU%3D","expireDateTime":"2024-11-20T12:22:07.1895053Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4911' + - '5019' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:07 GMT + - Wed, 20 Nov 2024 11:22:07 GMT mise-correlation-id: - - 42b8d02c-2311-4722-bee9-cc67c47b7e69 + - 837bb44d-7418-46ef-8e0c-064be2222bcd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101007Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b4u2 + - 20241120T112207Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000vcp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1965,31 +2049,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=%2BkycUl%2BmW1cFANoenkOE%2BFgvf87WMrQv07eO0W34LIE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.6349077Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=QOgsqTv2Au%2Btfx5S2GiaVuW6xp%2BPaOIYrtuDZO%2FlnsI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:12.6345914Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=fHJ6jT9BtSp7iZkJX6HRiS58bBXYyni7zKoHKzG0BHc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.6351609Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=Ez%2Fd2KB2z1bl9yPYDcUEFFb%2FJ3rRy8i2JW9%2B8Oo04MA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.6352683Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=38sQfThHbdAMGhLWLsJX0UEbSgFMwaBdT3itfM80Xk0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.6355314Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A12Z&se=2024-11-06T11%3A10%3A12Z&sr=c&sp=rl&sig=6zH6350t7g6HOLUjwlgTYXmflYxZ2aUatLa0ZTfCsms%3D","expireDateTime":"2024-11-06T11:10:12.6358068Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=geLEkBG8upjtWP%2BhViN240kwJV%2BaOWK%2FYo0TxXahCBY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.3161788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=s0Fgwr%2F158O4N6zlqGfyf%2BW%2FKWk%2FgLJ2iIYgbqgWhMY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:12.3159091Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=I9Niw2xAdAI%2BAY%2FJKod4v6Opr0CgdDpsl1LnnwYlANs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.3162696Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=fPmabWZfmRNvIu4g0PjN%2F3NE3cjr0RZhzyCOyCcb94g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.3163568Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=wUvdCUazoxLTi7fm0RZushOkf9PKZ88Bna%2FZGDXlHcw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.3164457Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A12Z&se=2024-11-20T12%3A22%3A12Z&sr=c&sp=rl&sig=uYzIMkNpQwsE6ESww8PUasjMW38rGCaGwbvJylIRigM%3D","expireDateTime":"2024-11-20T12:22:12.3165285Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4919' + - '5025' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:12 GMT + - Wed, 20 Nov 2024 11:22:12 GMT mise-correlation-id: - - 96633b06-b880-4855-a358-a4ad719bf823 + - 9c35357a-4b70-4579-b2d3-44268add7515 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101012Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b57t + - 20241120T112212Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000vm2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2007,31 +2092,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=co%2BLn2ki2R9ArqVgijGagseGD3AHD70MIWW0N4u3eiM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.0408914Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=Cs6XuJ5mwkWh0SkqdWFHsgVAq10wzwhhAJIjumRPP%2Bs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:18.0404283Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=WRs5LFyVlfXOuiPFyYeeGYxbpxJRx5Rst6KiJADLCoQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.0409889Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=3OqhPgDHZpjMVLY5%2F49Agjp2X7tfl4L%2FC1E8wmjbqIw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.0410831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=v0hf5X5TCkwf8itFRvLomMqBRQN8Y51peKhfofRNh5s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.0411789Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A18Z&se=2024-11-06T11%3A10%3A18Z&sr=c&sp=rl&sig=ZGB69tEJGveAyFFdaneDWxiVlyOvwUs%2FwQVWYC6nc18%3D","expireDateTime":"2024-11-06T11:10:18.0412707Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=3OG80i25Rck5NjLoC1Q5sDNFZuVDHNvuiNCd6087534%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.4530399Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=ilLcgMwobtRS8Mh8sIrCmr0sn%2F4LKqEt1afb2%2FtKWHs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:17.4525494Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=azgZZG6mWqFFwgF4psvqbQWUYshV0yboYNY1RNR55l4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.4531928Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=tfGy61DbLIGlNG2YptT%2BTpMrnQwQaYauSDyu7YfNe40%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.4533194Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=FuFyAtHpMokeTtRY58DoHVcNmd8wjRghrKtlhU51AXo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.4534683Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A17Z&se=2024-11-20T12%3A22%3A17Z&sr=c&sp=rl&sig=l%2Bn6e62jZcto%2Fs7FZAx4pxa6kIxLB3lUFiGH2HW0DZU%3D","expireDateTime":"2024-11-20T12:22:17.4536049Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4911' + - '5013' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:18 GMT + - Wed, 20 Nov 2024 11:22:17 GMT mise-correlation-id: - - d42aed0a-b394-41c4-b551-a314cb8d0fd6 + - 6519455b-9511-4949-abde-b01671ab0a40 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101017Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b5kk + - 20241120T112217Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000vsn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2049,31 +2135,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A23Z&sr=b&sp=r&sig=LnWVI2poQYdcNxKMuAWFfCWL3Va4QesSlvD3JRzzbA8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:23.3886211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A23Z&sr=b&sp=r&sig=uLXRjVf%2FN2ot8uiYrGmMyCXGzE7iMnEOogRcSJJE9E4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:23.3883533Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A23Z&sr=b&sp=r&sig=ISsSHUTmyApUf6WsjL%2F8GlK0%2F4bE7idEAXzvyKcG%2BbE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:23.3887039Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A23Z&sr=b&sp=r&sig=1IsOTGDYebJc3ZZBiJ2qCC65NN%2FsBVz6nAS1Lz0xIm8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:23.3887835Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A23Z&sr=b&sp=r&sig=x5BziyqGl1OrhKgzca9fTbSYzTVs297f%2BTI8PG0DElM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:23.3888608Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A23Z&se=2024-11-06T11%3A10%3A23Z&sr=c&sp=rl&sig=322g1oBo0hnupghGEiu%2Fz%2Fduqx9%2BKsq8%2BdRfTx4K5M8%3D","expireDateTime":"2024-11-06T11:10:23.3889364Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=oMx0REGEUfk0Bwi1cgzBb8fNRQstJRlFab0JYfPoa%2BE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.5834573Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=Uo4J1So9f1Vwipj%2Bz49ZPnwZj7PiokFdKBoiigS5gRw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:22.5831882Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=Vck2VcBs8So3%2FGDhYs2lnE2YuglzO55N447d3ddmwM8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.5835318Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=aZ2YJVGZc2Qi0aOxDhY0fy7ieoVYiopQLVAFejBCBbY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.5836116Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=RBY9CUC%2BCEYCAZHf8vR2U9e%2BQjNzP04RPalyrWThkQo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.5837007Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A22Z&se=2024-11-20T12%3A22%3A22Z&sr=c&sp=rl&sig=v1ukCG7ArGTuc7DKVLK6OI2flUNZpMtHLbtksu%2BzDcc%3D","expireDateTime":"2024-11-20T12:22:22.5837872Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4921' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:23 GMT + - Wed, 20 Nov 2024 11:22:22 GMT mise-correlation-id: - - b1df6e00-61af-4337-8e0c-4a7e8de64b42 + - 813058cc-134b-4390-acf8-ce2b995061b8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101023Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b5x7 + - 20241120T112222Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000vx5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2091,31 +2178,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=b3OL1jz0ZzJS7aQ2rUx0lcqWjocqox1jUPdcqXvJ6t4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.7614181Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=9x2ERuI7bcle%2FBZY7enN6ElLhXVNAREbzbH36aihrpY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:28.7611429Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=RoiyNDfFS79ZhtgBale7lFSd3vfO2vJlgIVRsYgpJTc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.7614915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=4zGE1DkoVL0tv9mdrcVCox26PY7xX%2FrKV%2Bffucc44UY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.7615628Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=zo8A%2FgEfbj0a8G%2BHKR6dPco9UsMH6hp55ORphKr8idc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.7616397Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A28Z&se=2024-11-06T11%3A10%3A28Z&sr=c&sp=rl&sig=oxl3tMnnsZih%2FuYcbZYgkKoBAtxzU5wkASHCxmboYSw%3D","expireDateTime":"2024-11-06T11:10:28.7617109Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=5Np07cQ6WJvLl%2FOGlZYxllrq2%2FQE9Mduq3dW91ieBv4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.7110709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=flOKP0s5gHTzp5TqNLmD84KXaqm3CXTnEt%2BLDy29oCY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:27.7106408Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=qwGvimd5kDjIqV8gLkIYEUXtxxZf%2BleIK3TXXxQULQ8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.7112414Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=LB0LX71OLAV6hsT76scBrtluU18FBXhNaIZg12dU83I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.7114168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=BouGc9ef3lBb0VgQbp8YA8FyTAc%2FCkGzKxska7K4sQ8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.711599Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A27Z&se=2024-11-20T12%3A22%3A27Z&sr=c&sp=rl&sig=BVigmuvPoIpAYceiuyxYGq5snhSaFMyHuH8JZHBlPdE%3D","expireDateTime":"2024-11-20T12:22:27.7117723Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4913' + - '5012' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:28 GMT + - Wed, 20 Nov 2024 11:22:27 GMT mise-correlation-id: - - bbfcde36-b994-49e7-be88-236a6d69567b + - 9e3ed3aa-0ecf-4318-b6df-e4409af84c9d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101028Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b66g + - 20241120T112227Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000w0u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2133,31 +2221,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A34Z&sr=b&sp=r&sig=gAKBPWH7V%2FgdAR%2BDucFg1p19Tw93oMzbKVlpe2IUmb0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:34.0994656Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A34Z&sr=b&sp=r&sig=MTkUGV2WDrOSNzaMh7kkPKAR%2BrDnZRreGlcm9AaofJY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:34.0992655Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A34Z&sr=b&sp=r&sig=5LNmtYzhCfg1jR9L7NauH1ZZTRjUWjPyvv%2BQhmCWJmM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:34.0995566Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A34Z&sr=b&sp=r&sig=i2TfQ1x%2BiGda%2B7CwEXWMUv14eLKXUb%2BzsPBlSVClps8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:34.0996454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A34Z&sr=b&sp=r&sig=xwunyLCksVm6YLBn8REWZURT3P2XnMCkWX1kMU8GK8E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:34.0997687Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A34Z&se=2024-11-06T11%3A10%3A34Z&sr=c&sp=rl&sig=yw8V7lwsDLT6Bc8y3x9E8voZt4lyEXLyf9EVLwBiyDc%3D","expireDateTime":"2024-11-06T11:10:34.0998652Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A32Z&sr=b&sp=r&sig=fMcAyZq4bK%2Fm4PODgLVsUYVq1Nvk81Ql3zjx99QMSNk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:32.8326817Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A32Z&sr=b&sp=r&sig=tFBvzFZWI4cicMYZG3%2F6YNPc6BbU62x9vDlbdz7x%2FwE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:32.8322397Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A32Z&sr=b&sp=r&sig=VYnqm8LmerEwJziORLhtsMRUWdmLPbBzvrkAvByxTiM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:32.832871Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A32Z&sr=b&sp=r&sig=dtDen7eLfIKI2wxI58NSrbjjm2zJPJxmdGjx%2FPIsvjI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:32.8330691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A32Z&sr=b&sp=r&sig=yxobkLZFWFeRMqiRnUsmZQR5NokvZtVuB8tEb%2FEpX34%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:32.8332435Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A32Z&se=2024-11-20T12%3A22%3A32Z&sr=c&sp=rl&sig=3aEVPYL1xIxLzTn55e0%2FL1enOZ0FLtX30PWt0935k5Q%3D","expireDateTime":"2024-11-20T12:22:32.8334178Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4915' + - '5014' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:34 GMT + - Wed, 20 Nov 2024 11:22:32 GMT mise-correlation-id: - - d651502e-e84e-4d98-b598-11c90bfaccba + - d2f9e243-9f9b-4ec8-94fb-26b4fa65b1b5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101033Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b6g4 + - 20241120T112232Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000w5h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2175,31 +2264,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=Ur7YIJHqyyZ60DJEaA6JCyN0tzUwT2hbvrebZJvK1s0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.9996362Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=iWDyNVVtLy67k9shfdQ3Hede2WNYAloUbPTdJcgSKVQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:39.9993602Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=3OaABW78hFhlyu9GD%2FXEIAv15yAbgX7y1wjg4DNT46c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.9997303Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=OQmWTsIAMSGTPdTptgaV24nkT6XkW5AxVy8Ome%2BfEZQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.9998186Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=XUBci4iC%2FBxrsBjqLqOdCTg4rZmop0o6cA0k%2BDyKm4I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.9999126Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A39Z&se=2024-11-06T11%3A10%3A39Z&sr=c&sp=rl&sig=5EUrRW1Mt%2FTZi%2FWj8oZXYT7yPXjl33F%2BB8YOnNNtppo%3D","expireDateTime":"2024-11-06T11:10:39.9999991Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=b7AtswAinQW%2FhAQtiGBxz%2BIvzYK%2B%2BSCNBPDYibeGNIY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.0017294Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=CvH0NEMfdL2K%2B3AfmPBzOr1ZyUqh5zMrlBZQXCNJw%2FM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:38.0013845Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=3CwCPfbmmdtr802HSlzRwGg90zZHsn8C3TVBm85t%2BBg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.001885Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=NXB5NLpFBkR%2FMB3z060RAs5h%2BcQGPSD2XnVHvjkKnrg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.0020119Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=lVJVnwD5A1yN8%2FWw7sAy94aSZ6U6b%2F46pXeFshCPiZY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.0021786Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A38Z&se=2024-11-20T12%3A22%3A38Z&sr=c&sp=rl&sig=q2I6gGMbOUOKJeD3RqIZKj6Y9r5VbksvlHuIu4EClo0%3D","expireDateTime":"2024-11-20T12:22:38.0023068Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4915' + - '5024' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:40 GMT + - Wed, 20 Nov 2024 11:22:37 GMT mise-correlation-id: - - 0144c7ff-8885-44ff-86a3-95da53dda15d + - 85c0e343-9e38-432c-8cfc-1b28315521a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101039Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b6uq + - 20241120T112237Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000w9n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2217,31 +2307,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=jHk4wZ4eIfKCHnqErlSLBF1GmH2veq4%2F%2FaBkeH7Uwcg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.3565028Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=OpPGgKmhexTgHPh0Jjz1yPgLtLADXkbR5BjmpbEeCD4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:45.3560158Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=ZC2Mt7RiE57DEf%2FP8TxOxA2XsAI4CUvIUNw83Kq6mFw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.3566801Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=%2BLmp9d1e24eaNSMN9Yl1hju99Yd2Fln6jmlrq2QwpvM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.3568401Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=ue4%2B1hkUeiRVyEY%2FXnn%2Bbae84oFgKeE740UFZTLAkxk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.3570039Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A45Z&se=2024-11-06T11%3A10%3A45Z&sr=c&sp=rl&sig=30%2BtFByGOp6eoqT3mYT1HZaci%2ByKL%2BHdOn8Tord%2FQjY%3D","expireDateTime":"2024-11-06T11:10:45.3571686Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=5u956y%2BAkgcc9xAErTDtI827SIWia%2B3GO6zfG9l%2F%2F9Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.1214674Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=MjBboN3%2FSd1I4AbLHWybQA87lJ3pefEk6q4D6tKTIek%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:43.1212685Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=RUB2V2Rxzg9fvK6FiXH5nLqU6e3aPhubh14CpYlYauU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.1215186Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=Kz1ICQnVxBh1UK%2FyddvBu42x9Blw%2FdRLPkgY4aNC%2BP8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.1215669Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=VSs7zDU7KtCUqpRY5%2BbRumGuob890%2FTqytUHlLMbo2E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.1216151Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A43Z&se=2024-11-20T12%3A22%3A43Z&sr=c&sp=rl&sig=DaJ02NWJPYCzOjHIMZAxcjFzFYpNLMEOVB1WoUtom04%3D","expireDateTime":"2024-11-20T12:22:43.1216627Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4923' + - '5023' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:45 GMT + - Wed, 20 Nov 2024 11:22:43 GMT mise-correlation-id: - - 2274f7ae-40b7-434f-bfbb-f15444308ab6 + - a1fce6cc-8b3b-4f08-9b0a-c30e17a7e191 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101045Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b768 + - 20241120T112243Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000wcx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2259,31 +2350,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A50Z&sr=b&sp=r&sig=ls4oILX3ZdTk1y9KqjodWirAQom99o7UqM6pqqdhkLA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:50.6891389Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A50Z&sr=b&sp=r&sig=r7UJiYfkkW4ZAhMmEOCNatxuJc4J%2BJtruDgonyEewCE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:50.6887799Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A50Z&sr=b&sp=r&sig=itClOH07NWy18uQ50tWV4fgKP9yJkhESs36%2B7Ii5qmg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:50.68928Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A50Z&sr=b&sp=r&sig=ezW7OnKcyP0%2FjlnWdAwYpq0eKMyqaXKD6x5YLK5%2FKeM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:50.6894174Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A50Z&sr=b&sp=r&sig=dQ574BZWdYdlyz8nJ%2BD4pyA7s2kHRYkt7Hmg0Aezcr4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:50.6895526Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A50Z&se=2024-11-06T11%3A10%3A50Z&sr=c&sp=rl&sig=xv%2Flh6ljHF7X0zuJ%2FexOSXFSoXTiJYa2UoHxHXcmgfs%3D","expireDateTime":"2024-11-06T11:10:50.6896904Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=SQFT4HnBlUM1Zc6goxCRlJhDZTQYp6MmkN6SsCdCpeQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.2451294Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=Znfp87MOQLBdyc5kJQ3s6pC1iToHbmnqttPBb8Va6Ro%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:48.2447583Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=g4VW2lzV%2B02rt%2BGZfJ%2FCIPWL645TmEbd3TOdvuxfX9Q%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.2452744Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=z1khKfUhAF5hH0%2FfLHBPxBgH5T2npQcC6E6KVjeCo28%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.2454208Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=wbk1CExiDsCl6yTWO60c0ZlKuAAzRMkQGOE9lolhj38%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.2455564Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A48Z&se=2024-11-20T12%3A22%3A48Z&sr=c&sp=rl&sig=6qtlfEEaZw5SELyehp3RxsZ9Jz60o6PArQPlNEPglTc%3D","expireDateTime":"2024-11-20T12:22:48.2456988Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4913' + - '5011' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:50 GMT + - Wed, 20 Nov 2024 11:22:48 GMT mise-correlation-id: - - 2728db13-0b03-4e58-b1dc-a7af31d08387 + - 1dfea5ed-3525-40fb-a556-c5831d8e59ea strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101050Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b7gp + - 20241120T112248Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000wge x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2301,31 +2393,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=CLtDQWwv%2FZZSomRt3Z1KUyP7QSQX8nHEh3kRrGTbBRM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.0334075Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=IpBq0O28%2FoE%2BgvIOv9lnkH%2Bu0nW7vTJZYmp0LlmhhWU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:56.0330192Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=N1kk1Nu%2FkH%2BE%2FMoNLKrL7c4sRN6IuUbU3HXkoXv8N%2F8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.0335803Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=w7fBOdTJF3Fcks57nsbpz35XWhyMf7Jc8rKeRwstQ%2BY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.0337115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=l%2BOMNp%2BfYVEzLDNYEsO5BxFr4juM5JTW98qS3Y90kqo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.0338954Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A56Z&se=2024-11-06T11%3A10%3A56Z&sr=c&sp=rl&sig=FGt%2BtRFF8AuU3dY8gmo59RShgPB4SVym7EgzK8y9GmI%3D","expireDateTime":"2024-11-06T11:10:56.0340364Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=39uubd3DvLxHh94OSeV31YHxK0qNsYLv6uIZxpFSOJ0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.3674745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=m4dVFz3sUjJq3B4w4%2FkxHnUWc2Cd17JQ%2Bk%2FQXdMAgUc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:53.3671051Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=wKd5a1M1%2BWR2zClgM0Jh50OeY0Zfu9QIywa8hfhIaGE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.3676158Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=eIRMZY%2BMTegKKnUvI2czSKwzHdzcrhOogZk1LuoT6ic%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.3677555Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=JRG%2FZ00UqCnmvdT%2BhFpMTpwWgT727c405mcwvCgFF2E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.3678887Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A53Z&se=2024-11-20T12%3A22%3A53Z&sr=c&sp=rl&sig=Fad65g8YBflf4tH0XGhCq6ozUVW0SWQwFsfoWjLxTog%3D","expireDateTime":"2024-11-20T12:22:53.3680276Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4925' + - '5017' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:56 GMT + - Wed, 20 Nov 2024 11:22:53 GMT mise-correlation-id: - - 28a22c10-f9c4-4f48-9e3a-6794d25060b3 + - 9a3a68a4-de07-4ffe-8e4e-9c41b7cd9a69 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101055Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b7ub + - 20241120T112253Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000wmw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2343,31 +2436,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=MfZ2LzSvyIsSHpT8EjNzBx7bXesbjP0z8ZGtRxuIRms%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.4007733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=7I208TpxL%2BiCHxASol%2Fg8ZXh96b9h4DXTRNludLNhr0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:01.4003759Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=Rl5XD3Fe69gS%2Fr%2FBiFAIKBG6CeYu4%2BKXJn41M45SWxs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.4008649Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=OqD4PBXVSPnYDxK2TF4DbEwPiDwsMrSwPa4sd3PbYMQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.4009542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=XaXiMdpuDBuzoKm4uTjNAbtDoOalxp3qLpmEn5vftTg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.4010421Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A01Z&se=2024-11-06T11%3A11%3A01Z&sr=c&sp=rl&sig=rc1HOTwaeowCCiMe%2B0VNSIpAP1Dym15G1LFpCbunFYo%3D","expireDateTime":"2024-11-06T11:11:01.4011284Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=cn5W0GhFM6%2Fa9rE1OHrxL%2FhtkaJaCEp95IL7slNohgI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.4865972Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=9Y6k8qAd8m59CDXaTH2xukM13LzmfGIhFUzPPldRotY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:58.4862581Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=lSmUWopwMC20Ok6qK7y5qdYtikk4RQNUXK1cGrsdu70%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.4867006Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=EeuKxKURn8vk%2FiAFCQLY2gGegOIMCAave39FAhzn%2Byc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.4867985Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=Izfc324p%2BECyyIW38hGSjCtrWth%2BsuInVGsHOxGyYEA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.4868937Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A58Z&se=2024-11-20T12%3A22%3A58Z&sr=c&sp=rl&sig=CxdCOKJpVHuXMMXaILnzNWCpzufZkdqcv0XKNVRSqxU%3D","expireDateTime":"2024-11-20T12:22:58.486988Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4913' + - '5014' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:01 GMT + - Wed, 20 Nov 2024 11:22:58 GMT mise-correlation-id: - - bdf19c5d-9dcc-47c5-b579-99459745889d + - 56f9ac36-70ab-410f-945d-ce04c0927c2c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101101Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b84g + - 20241120T112258Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000wsr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2385,31 +2479,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A06Z&sr=b&sp=r&sig=pbbW7OkWqdiUeGlK3dDOUntrlcP7e9vJRm2Ljckg%2FBE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:06.7383179Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A06Z&sr=b&sp=r&sig=Jx5MikvQc1ffMOTXGe5b%2B9GPUpmRx8qFXIW1Z7zBH64%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:06.7378603Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A06Z&sr=b&sp=r&sig=jAMehx%2Bxrsf%2B%2FgRa0WwNFwGe1%2BGkU1dy73Ot8h88Ncc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:06.7384655Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A06Z&sr=b&sp=r&sig=DfGZUZaWtnZax0LKNQKsG%2FpmjcYI7UemRCsJfQCO%2FWE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:06.7386001Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A06Z&sr=b&sp=r&sig=eSgS%2FUAT9qeg3e2NVlwXJlfMAbc%2B7DBZwgVk7z%2B50XI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:06.7387312Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A06Z&se=2024-11-06T11%3A11%3A06Z&sr=c&sp=rl&sig=2bjreqIRSjPMsbvxEGtqhmmGtSYX8on83QgfzVg0Be8%3D","expireDateTime":"2024-11-06T11:11:06.7388653Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=8v3YJ6ZtbmbBvHnUdUFO9Lws1RiAvTnerU1seRLu3lw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.6234216Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=UIrNJi3rZyMas6NWHyCoInX8rufCf2Z27Wcxp1U%2F9A4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:03.6231435Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=R4UYWMvdU86DM4aciQKWQudesQYiVY1wGtdeQdt3Dcg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.6235191Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=pyKDrbcMnVSlJjptVRMSDahW%2Fm9Jbk8a1T92dgjTIf4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.6236383Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=IAia0gFrmHR89VNUeqD8Iv%2FtIc5fRrYO%2Ba0uZm1pLps%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.623736Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A03Z&se=2024-11-20T12%3A23%3A03Z&sr=c&sp=rl&sig=c%2B0rGpp6IFMD6XfeEPs4H%2BTsRDyYQr42kz4Aszx%2BGXc%3D","expireDateTime":"2024-11-20T12:23:03.6238308Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4923' + - '5016' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:06 GMT + - Wed, 20 Nov 2024 11:23:03 GMT mise-correlation-id: - - b0f7fba7-7192-41a4-855d-e26902e6c242 + - 9bfa91e5-0acf-44b4-93cc-977d39c44c98 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101106Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b8e3 + - 20241120T112303Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000wwr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2427,31 +2522,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A12Z&sr=b&sp=r&sig=YVwSENKLJH2Qd2NFkkqgbK9ZjJFqr%2BZg6f%2Fb8tmD%2FeM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:12.0672541Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A12Z&sr=b&sp=r&sig=6BZkVeuBPqVYfx1sfJ%2BU7OhOXbrvlB8hMOuSPjo6uBc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:12.0668326Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A12Z&sr=b&sp=r&sig=zEcRcDaAwgaBkEKzRYHtrWEyiedwoUr924BxHnUw2rE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:12.067392Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A12Z&sr=b&sp=r&sig=FxbjRbw4YXNEJlSHBGCFaDwMljJg6Ai0%2BtbJPeH3YiI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:12.0675219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A12Z&sr=b&sp=r&sig=3gk%2B%2BE6Z8EStND%2BSE%2FFrTd5kHq3%2FpVuHT1gMt0b%2F3IE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:12.0676554Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A12Z&se=2024-11-06T11%3A11%3A12Z&sr=c&sp=rl&sig=60LGP2bc8xW%2B0Az9aVQbVuCNoeCnH177X7JEstqfgN0%3D","expireDateTime":"2024-11-06T11:11:12.0677856Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A08Z&sr=b&sp=r&sig=hGPULYJ0r1l8dB8AJkLWTyIg1NPrAG3W5u2h7xUjG64%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:08.7704422Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A08Z&sr=b&sp=r&sig=OThAcOqZsh%2BnzGjOYcGZ2c2H%2FDvDZMrWC7NY2FkAVsQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:08.7696738Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A08Z&sr=b&sp=r&sig=bQ%2BYm16g%2BdD4BYqivp9mGrsw%2By%2BF%2B0G30A6RbJiE%2FEs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:08.7706792Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A08Z&sr=b&sp=r&sig=kq3y7BklkhUibiVZtCXTh4TnQLQvQobkfcm%2BL9kYa0Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:08.7707993Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A08Z&sr=b&sp=r&sig=%2BNfmVLgdG0xGJdm2N0yj7IJKz1uskK%2BCgOKp6clMIwc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:08.7709346Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A08Z&se=2024-11-20T12%3A23%3A08Z&sr=c&sp=rl&sig=58IHf1c%2BBKu1Pj5Ej7Y4sHJFjfQ2fQc3IKBjUqvswuw%3D","expireDateTime":"2024-11-20T12:23:08.7710713Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4924' + - '5027' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:12 GMT + - Wed, 20 Nov 2024 11:23:08 GMT mise-correlation-id: - - 0a84cef7-22dd-41d0-8a5a-03783e4454ad + - 11cfb1dc-4a78-4e1d-baf3-3aa937fb8759 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101111Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b8sf + - 20241120T112308Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000x0g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2469,31 +2565,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A17Z&sr=b&sp=r&sig=OIuqktxxSmNQZjwPZ6cYNr%2BnHAB6O3JdT4wBfFBcSG0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:17.41858Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A17Z&sr=b&sp=r&sig=c%2FJx7CSL1Mo4me4ftVYwis3E5Dthj2EP2zJI1CZBfko%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:17.4180099Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A17Z&sr=b&sp=r&sig=IhlZZ%2B62W22obEW1mrcCULxFalNp5uA4QMyucuZGcug%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:17.4187949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A17Z&sr=b&sp=r&sig=ka8FtiSHLgKHi41EQh39H4Md0GJKdXQBzY87%2BFqj7Mc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:17.4190159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A17Z&sr=b&sp=r&sig=VU81fagTUMJM0jxFj9HSsrD%2BMLXAD1u7z308pEBFVxA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:17.4192208Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A17Z&se=2024-11-06T11%3A11%3A17Z&sr=c&sp=rl&sig=PjBdPxQsXnQNoa6wWLAQRp2exTkSssp74midcrDzmIA%3D","expireDateTime":"2024-11-06T11:11:17.4194388Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A13Z&sr=b&sp=r&sig=IfwOt2dHhrgx1wOrPhr1CFDUV5rPSjRGLrTl9N5FYYc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:13.9098824Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A13Z&sr=b&sp=r&sig=ieu7%2FK9CWp3m69yeL8gFrMRpVXWyaLN52zPLFkZaqzY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:13.9096527Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A13Z&sr=b&sp=r&sig=voTImuYrwdUrrloYRuNaSAY99YgwRW250%2BvzngzuKCQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:13.9099489Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A13Z&sr=b&sp=r&sig=eQnF7WkeL3Wo1fimCqwqGsW1w%2FgldIts%2FPkWtRhpRHQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:13.9100413Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A13Z&sr=b&sp=r&sig=Y0a49LO2yFPVOf4cEd3RFY3z%2Fz5sTdkxtj6ZSsxa81w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:13.9101349Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A13Z&se=2024-11-20T12%3A23%3A13Z&sr=c&sp=rl&sig=q6vSYf9Slxrv4lFlgtCwYo%2FLr0lpxQdOkSQ9lxpJ%2Fp4%3D","expireDateTime":"2024-11-20T12:23:13.9102174Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4909' + - '5017' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:17 GMT + - Wed, 20 Nov 2024 11:23:13 GMT mise-correlation-id: - - 162efab7-5f48-44d3-ad13-ae64c699a01f + - d27703ff-4323-4dbe-ae7b-94609fbcef99 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101117Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b90s + - 20241120T112313Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000x3q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2511,31 +2608,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A22Z&sr=b&sp=r&sig=QQM8v6AEtAmY24oyhfIJfrEhXR118EPwTZ8szT%2Bmjrc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:22.7684117Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A22Z&sr=b&sp=r&sig=RnpHV1AcRK0IrOlfPOwIfuJMp3pZHSqhFnJZ74qbcfs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:22.7672427Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A22Z&sr=b&sp=r&sig=nyvI2KTx%2FMu4m6Bb0erEge66Nndjx5ZWYBmgwsjVNcY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:22.7688643Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A22Z&sr=b&sp=r&sig=JKwnLRgKaRrtNwvE7ObO1088TmeI%2FScob3xXkfLC8l0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:22.7695725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A22Z&sr=b&sp=r&sig=PgVWxhdv1ulIyQGUMSNEonecmeZHB13hiRtxnu75XS0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:22.76969Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A22Z&se=2024-11-06T11%3A11%3A22Z&sr=c&sp=rl&sig=HxnE7FFbTO6baxx%2B3Q9bA4w8W4ZgH5SBxq6g4eUdvpM%3D","expireDateTime":"2024-11-06T11:11:22.7700126Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=ypds0OpDuzF0vS0%2Bhd2uRKTh2MzsHS2FrqbUVC4Rf%2Bs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.0479467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=MpYqMNTcA4AXhRg6lpr5MJegw6KQy9PfWpJL0tSUPZU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:19.0476592Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=HtSxz7jIc3VmmXdY6F28QgPdlS%2FJfc9nZCU9K6kkg2c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.0480892Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=hBbSKWyKD5xQQCSj9tBDVsr%2B3HeRC%2FYWxoe23HIO0YM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.0482115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=DI%2FRHa4EJ4P9iVDUGAe8etA1RZvL9UCOqmKvid%2BsxSo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.0483534Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A19Z&se=2024-11-20T12%3A23%3A19Z&sr=c&sp=rl&sig=7S5bots2XJWf9%2BxAKUt9dFVRX4jkJMDC1KpsWGQzSK0%3D","expireDateTime":"2024-11-20T12:23:19.0484755Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4907' + - '5019' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:22 GMT + - Wed, 20 Nov 2024 11:23:19 GMT mise-correlation-id: - - bc6013cf-d074-4f48-a03b-030aeb9a8adb + - 8ec40cf7-d758-4c64-9e09-d725028c7c33 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101122Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b98e + - 20241120T112318Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000x7b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2553,31 +2651,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A28Z&sr=b&sp=r&sig=DaZPhf3CcG3RPMTsKzkiFXzpPGHBcgArALxThmDJshQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:28.1273494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A28Z&sr=b&sp=r&sig=5jRANAOrrmNkjei8AeowIXcelGrdHwiwxHyG3aYRzbM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:28.1265976Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A28Z&sr=b&sp=r&sig=KURrqSPR2qOVC%2FpajA69Es%2BWInltI3FW6yOJxvMpx6Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:28.1275599Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A28Z&sr=b&sp=r&sig=2kZQh4N5Lif81QdYllv%2BbUgs%2Brr4KeL%2FemUfr5i0b10%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:28.1277469Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A28Z&sr=b&sp=r&sig=mtocneqnJoTRunkt83OnkAer7PhzXle7rLMxQLzG2xg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:28.1279327Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A28Z&se=2024-11-06T11%3A11%3A28Z&sr=c&sp=rl&sig=BdKUUDcMx0E0POH95kBujFkoxbmWgClIT8Jhd4a1uR8%3D","expireDateTime":"2024-11-06T11:11:28.1281202Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=Xm8K4ldbi6yM%2F%2BNuLdaExJ0Z%2BlXYTY7eFhknq%2Baaeb0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.1772144Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=fQsAzKM0qXK843J7p3jw%2FXaDPKQIfV9oONDXN3AO7Xo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:24.1767124Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=%2Bc95QylRp1%2BsxqnmByLzJR9dCv%2Bg7UCL3AIXhYZDP8s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.1774128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=j4PKtVYnPGnQfVWzQLnDlBQxFzfC75QY5KCA5o6EF8Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.1775863Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=KVf0k9orzTjYT4OdLOl%2FoVzEXadxR8gdCGRjXhuH%2Fnw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.1780958Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A24Z&se=2024-11-20T12%3A23%3A24Z&sr=c&sp=rl&sig=nDUqOo6OTU2mEAn1%2FuahU6qLU2V87iBZ8yTMpXqfLJQ%3D","expireDateTime":"2024-11-20T12:23:24.1783079Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4911' + - '5025' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:28 GMT + - Wed, 20 Nov 2024 11:23:24 GMT mise-correlation-id: - - 74e13edd-1fda-43e2-a8ab-5bcdef45910b + - fbfb3897-d950-426a-aa6a-0de188a084f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101127Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b9mr + - 20241120T112324Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000xbq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2595,31 +2694,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A33Z&sr=b&sp=r&sig=tK9i53B14RczMtds63%2FGmnNfU7XuXZUVSxJyI3ESjks%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:33.4636352Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A33Z&sr=b&sp=r&sig=2LUdV1itZUcAbO%2BDiD9imxOsLYd1QtiB143g%2FrXxOcI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:33.4620227Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A33Z&sr=b&sp=r&sig=Do1%2BLTK3NcfZZurWCiUoB%2FvScm7yvdRPME6owh9%2B2yU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:33.4640832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A33Z&sr=b&sp=r&sig=YUUO4bF46If8jSnWqYfgFEgaGfKFU41EDRzO6tJibtw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:33.4645945Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A33Z&sr=b&sp=r&sig=23gFZJ1GSgjOnGNwgq67WV2aPO1UbZbeZnSP%2Fg0qKTg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:33.4649357Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A33Z&se=2024-11-06T11%3A11%3A33Z&sr=c&sp=rl&sig=byDQctl8hQ2IGgHiXco1JDC75gZ7sb3RvmlVSHMgRuE%3D","expireDateTime":"2024-11-06T11:11:33.4652789Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=kg793ZDttbby454lbAzvugv4RM8hefm4eO9HeMaFXHs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.3016027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=cb6Glv6RpDbQEKkHy8DAky4BRjSBVXpJqeGb1rJOkbY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:29.3010665Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=Y4zBfJvinlfaeY0%2FRDGZzpUOEu2TtNYguVAT6slEisE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.301832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=m%2FZ%2FbBMsI3SQaQa479Dg6xtlUy5TBRLGPhxrNohBFwA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.3020501Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=TXup43K2uXJeJ5WsPTTXRtDBK9tpUrcY73SLqjdd4D8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.3022764Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A29Z&se=2024-11-20T12%3A23%3A29Z&sr=c&sp=rl&sig=s9r%2FRuQA2WG%2Frfx90GH6DNo3XsssaIbR4IV4xpbmMo8%3D","expireDateTime":"2024-11-20T12:23:29.302489Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:39.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:37.834Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4915' + - '5011' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:33 GMT + - Wed, 20 Nov 2024 11:23:29 GMT mise-correlation-id: - - 50045f21-5813-4562-9fe7-310fc9c5c8e7 + - 53716988-1527-49cc-be39-9db6d1ff49bb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101133Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b9uv + - 20241120T112329Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000xg8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2637,32 +2737,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A38Z&sr=b&sp=r&sig=7II0wrBdhqI6cVY0SlobysiK00rCvPF6lwJMm7OnxbM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:38.7970914Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A38Z&sr=b&sp=r&sig=nY6KibCiTg81sGloUcfDwxz%2F8M8goHfYJwPjpuXXcEs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:38.796682Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A38Z&sr=b&sp=r&sig=Vacor3KWQoFRbogBB7cTQ0%2FXwCEmxZWkuMiKSdoRvzk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:38.7972653Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A38Z&sr=b&sp=r&sig=wpa1YCxzJg7jQDYkSFDI1YjCrTIO%2BLWFPC670u5IXXU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:38.7974261Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A38Z&sr=b&sp=r&sig=1jrWDXqGXVv%2BbVoDkQR32SgSVY60ayfdxall%2FVxtKQA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:38.7975676Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A38Z&se=2024-11-06T11%3A11%3A38Z&sr=c&sp=rl&sig=dLFEHEgXOyD%2FMuem%2BKqsRPLv7hAnDLJVSNIgRNxREO0%3D","expireDateTime":"2024-11-06T11:11:38.7977058Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:45.615Z","endDateTime":"2024-11-06T10:11:36.195Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:36.97Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=o80BkT51MDEGJf0njV1kY42bPeGzO6ECDNlVqsbstis%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.4225912Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=NpkbPUOYde7uDOuLPar1VYJNwWDHig1FQQESYnU%2FxS8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:34.4223116Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=7tUoUUC7XKXiof4J2x9MUMDI0Cv38yrbCROT4sVQWuI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.4226769Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=GH38rtYj5lXD3XxdgPZw8yF6y%2BPTKpXZ2BfwKbDIxLU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.4227574Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=VPaMHhFKsrOBKW4ltMFx5oRLAHhTW0FFTDCiZ%2BFz7KM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.4228337Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A39Z&ske=2024-11-20T18%3A19%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A34Z&se=2024-11-20T12%3A23%3A34Z&sr=c&sp=rl&sig=mQqdIoI95TNnwBK2Q7OQd6cmgmJUvjaImW%2BMDXYd0%2BY%3D","expireDateTime":"2024-11-20T12:23:34.4229054Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-20T11:20:39.135Z","endDateTime":"2024-11-20T11:23:30.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:23:30.685Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5041' + - '5141' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:38 GMT + - Wed, 20 Nov 2024 11:23:34 GMT mise-correlation-id: - - 2fa8c8ac-32f5-4b13-8264-6f4305def1da + - a3c58c2d-a2f0-4574-899d-b90ded237a94 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101138Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000ba11 + - 20241120T112334Z-r16f5dbf676v2djshC1YVRqhhn00000001rg000000000xna x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2680,23 +2781,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:06:49.436719Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:49.436719Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:04.5607515Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:04.5607515Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:41 GMT + - Wed, 20 Nov 2024 11:23:34 GMT etag: - - '"fa000829-0000-0200-0000-672b3fd20000"' + - '"9703ff00-0000-0200-0000-673dc5be0000"' expires: - '-1' pragma: @@ -2712,7 +2813,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7CC6913AF6B04EA89C0570D87AF0BFB6 Ref B: MAA201060516035 Ref C: 2024-11-06T10:11:41Z' + - 'Ref A: 7F598065DD684236AB2C93086100ED32 Ref B: CO6AA3150220051 Ref C: 2024-11-20T11:23:34Z' status: code: 200 message: OK @@ -2726,32 +2827,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=download-test-case + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=download-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A44Z&sr=b&sp=r&sig=3Auf%2BEvtCQ%2ByhqcdFx0pmQQDhb%2FXvyEX441lqBU9Abo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:44.2425172Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A44Z&sr=b&sp=r&sig=EqkFs0qi%2BJFYZL1%2F9ed0oX4Dm13yJF%2BCRAiQDhVde%2BM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:44.24171Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A44Z&sr=b&sp=r&sig=paaL5xA0wWtEkVE8DNLk0CR941krTPIr750PZ1w1%2Bgg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:44.2427915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A44Z&sr=b&sp=r&sig=INL3pS1Ixw8FLIpYYeyfy6BXJE0jLA9lG6ytKKxHyTg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:44.2431943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A44Z&sr=b&sp=r&sig=eArOyP5d2aYgzIwxlTG3ojaLdv8kL7OSQDJdEJLHzMQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:44.2434631Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A44Z&se=2024-11-06T11%3A11%3A44Z&sr=c&sp=rl&sig=8lKA4t7sidOLClBnGu47JFQGbBSwTrkuVLOjnIIyCwA%3D","expireDateTime":"2024-11-06T11:11:44.24365Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:45.615Z","endDateTime":"2024-11-06T10:11:36.195Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:36.97Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A35Z&sr=b&sp=r&sig=CokhWF3vFVtmIpNVeSxWnIciSzd3NI8dYqeoRcG2S6s%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:35.4219584Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A35Z&sr=b&sp=r&sig=UWv88guK%2FJQnRFNqExy3aFyINOsmU16ptfdkHXP%2BhG8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:35.413974Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A35Z&sr=b&sp=r&sig=5z4gNjO%2Bvgh1unshwgw7%2Fk6MDIkcA24FeAdvnMyMpY8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:35.4221388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A35Z&sr=b&sp=r&sig=dFjQBsoLoLSsfJqj0BJ3ghpenFTccCkYFWFwYomxfGE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:35.4223156Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A35Z&sr=b&sp=r&sig=Z7m9sR0yo93cjbKvYz4%2FFSCk%2B9qA9T8Ax3mMs0AeSFU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:35.4224892Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A40Z&ske=2024-11-20T18%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A35Z&se=2024-11-20T12%3A23%3A35Z&sr=c&sp=rl&sig=mS1QQOhIl%2Fv4ZKrTdCaw6djdHBOu%2BFqkMGW%2F6UzwNOw%3D","expireDateTime":"2024-11-20T12:23:35.4226644Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-20T11:20:39.135Z","endDateTime":"2024-11-20T11:23:30.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:23:30.685Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5052' + - '5160' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:44 GMT + - Wed, 20 Nov 2024 11:23:35 GMT mise-correlation-id: - - 724f4489-0ab3-441d-98ae-b90efe82d5bc + - 38f8d8e6-4900-418a-a975-412c388f48f7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101143Z-18557d4f7b8mmbtghC1SGEzqgs0000000550000000003xb7 + - 20241120T112335Z-1789fbbbd78z6tj4hC1PDXnyz80000000h9g0000000035m3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2769,23 +2871,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:06:49.436719Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:49.436719Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:04.5607515Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:04.5607515Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:46 GMT + - Wed, 20 Nov 2024 11:23:35 GMT etag: - - '"fa000829-0000-0200-0000-672b3fd20000"' + - '"9703ff00-0000-0200-0000-673dc5be0000"' expires: - '-1' pragma: @@ -2801,7 +2903,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B8EDB1F4E1104233A6E23AE1984AAEF8 Ref B: MAA201060515029 Ref C: 2024-11-06T10:11:46Z' + - 'Ref A: 39C5E723BE154335A88B442966A480BF Ref B: CO6AA3150218047 Ref C: 2024-11-20T11:23:35Z' status: code: 200 message: OK @@ -2815,33 +2917,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://e35b78e6-7fdd-445a-bb01-f18f9d25de0e.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=c267rvHkTOFFBMRbrwFuf0IXP5IMb64IMZlE2oB6Rwc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.6505776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=Em6X%2BorwB7IK6Auvatd1GT7NmUn6mcYMr0UhAbmZnc8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:51.6501278Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=PO3cW%2Flxpv4sT%2Fu7mX1MnD0%2F2jlOWOBAzqr4wrVeOyI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.6507499Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=GV2WB92XvudZy3yVioc8ClfK32jmfyIabOVA5lquvo0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.6509393Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=2hh8gX7ZncFhx04tPajsmYS0l5B9xDQ0kG3qAtV8o%2BE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.6511201Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/fbadfa5d-2188-4ed6-8025-91001ef6af84_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=t0BO4JP0bs%2B65n8HfGRhBARA3SSGz65DZDJmD%2FVShRQ%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.65131Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/fbadfa5d-2188-4ed6-8025-91001ef6af84_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=gfFsTxcdYtIznUqJzXF6QmfBj1s2I68cOC5GP8WXvfc%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.6514856Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A51Z&se=2024-11-06T11%3A11%3A51Z&sr=c&sp=rl&sig=ZXZkr%2Fe%2FltFNxTwXITDiguTEkQJFYC7MZfDOy8927kY%3D","expireDateTime":"2024-11-06T11:11:51.6516716Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:45.615Z","endDateTime":"2024-11-06T10:11:36.195Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:44.37Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A36Z&sr=b&sp=r&sig=VajuamIQFFUvknV7xnQwQp9iPq8EYZZyNK6XxP1wE9M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:36.4518184Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A36Z&sr=b&sp=r&sig=qp4gzXZpEMQvCCU245zHO%2FA9%2BDN3a37LHNFOYLb0HdI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:36.4515544Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A36Z&sr=b&sp=r&sig=wyapJ9e2lFeq%2Fk66ViX1J%2FEblIpw5x6fIGSTP9aiSPc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:36.4519048Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A36Z&sr=b&sp=r&sig=xv5Sf%2BqNo1IC9p1tsi1nG%2FoMW8sW%2F2KBzMqaF5SKTz8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:36.4519774Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A36Z&sr=b&sp=r&sig=Nf7I5jNHotNwb7EOLLLFjuYCexG6aSpqrCi%2Fr2VfU%2BE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:36.4520502Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A36Z&se=2024-11-20T12%3A23%3A36Z&sr=c&sp=rl&sig=D6AVIaoCeecC7rmQ2Iz44SDZeOBvmolUxU%2FLx6k58bk%3D","expireDateTime":"2024-11-20T12:23:36.452121Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-20T11:20:39.135Z","endDateTime":"2024-11-20T11:23:30.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:23:30.685Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6256' + - '5150' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:51 GMT + - Wed, 20 Nov 2024 11:23:36 GMT mise-correlation-id: - - b545fd9c-b837-4eb8-91c3-84c7e3a8684f + - ab238fe0-fea2-4bb0-b65a-358ffd31e0bc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101151Z-er1d798b584jjq9jhC1SINbpms00000005m00000000040eu + - 20241120T112336Z-1846dc7bb4dz5kmbhC1YVRrpen00000003ng0000000057m7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2859,9 +2961,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.32.3 method: GET - uri: https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=c267rvHkTOFFBMRbrwFuf0IXP5IMb64IMZlE2oB6Rwc%3D + uri: https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A36Z&sr=b&sp=r&sig=VajuamIQFFUvknV7xnQwQp9iPq8EYZZyNK6XxP1wE9M%3D response: body: string: "displayName: CLI-Test\ntestPlan: sample-JMX-file.jmx\ndescription: @@ -2869,22 +2971,22 @@ interactions: JMX\nsplitAllCSVs: False\nzipArtifacts:\n- sample-ZIP-artifact.zip\nconfigurationFiles:\n- additional-data.csv\nfailureCriteria:\n- avg(requests_per_sec) > 78\n- percentage(error) > 50\n- GetCustomerDetails: avg(latency) > 200\nenv:\n- name: rps\n value: - 1\n- name: duration_in_sec\n value: 1\n" + 1\n- name: duration_in_sec\n value: 1\nautoStop: disable\n" headers: accept-ranges: - bytes content-length: - - '441' + - '459' content-md5: - - yLK28Aoz1wtkZ5QQqWOQAQ== + - l9T6c+FX/+/qa/IH9djruw== content-type: - application/octet-stream date: - - Wed, 06 Nov 2024 10:11:53 GMT + - Wed, 20 Nov 2024 11:23:35 GMT etag: - - '"0x8DCFE4AFDD5C778"' + - '"0x8DD09555C4977E0"' last-modified: - - Wed, 06 Nov 2024 10:08:41 GMT + - Wed, 20 Nov 2024 11:20:38 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -2892,7 +2994,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Wed, 06 Nov 2024 10:08:41 GMT + - Wed, 20 Nov 2024 11:20:38 GMT x-ms-group: - 713ccf3d-dc33-4787-a1ee-6b0cc537c37a x-ms-lease-state: @@ -2928,9 +3030,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.32.3 method: GET - uri: https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=Em6X%2BorwB7IK6Auvatd1GT7NmUn6mcYMr0UhAbmZnc8%3D + uri: https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A38Z&ske=2024-11-21T20%3A20%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A36Z&sr=b&sp=r&sig=qp4gzXZpEMQvCCU245zHO%2FA9%2BDN3a37LHNFOYLb0HdI%3D response: body: string: "\r\n","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"4c3f22d1-3491-4b5a-9836-b43a8ec85d81":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e88e657d-40cc-4d4f-aaf1-53f30e3a3843":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b468aad8-cbdf-41b2-986e-42914a730eef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=IO%2FQAjXm8Yk1t7IqnibLB2z9ePOuRQ5VfBCs6n1C99w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.116009Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=tXyRwfHLS4Sv1YTUAtFMGR6wE53SDkvQoO%2Bdu7z51FY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:12:17.1155872Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=3vlVpQkrk8tmrPT%2FPSyDmJd7hHUFF2kh9uyT7BSgPhA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.1161864Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=LNYlrK9Ly%2BOQDsdugUPBHE3jR%2FdSg9c6fL0Y1vZIgcg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.1163555Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=9gSxb7uLw2rCrBYljHsukHQq3orQlbtdfjsOcqBCddY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.1165412Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/fbadfa5d-2188-4ed6-8025-91001ef6af84_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=8if0vd8Y6zEH0i85HwB6Z11q1qQ1py3o3tnt2I2u97g%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.1167363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/fbadfa5d-2188-4ed6-8025-91001ef6af84_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=HqRLOEUxd9FWFqwqBnv4nZ4tuCLa%2FX9bh78MvjwaRU4%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.1169096Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A12%3A17Z&se=2024-11-06T11%3A12%3A17Z&sr=c&sp=rl&sig=OBn4m2cb9GBVC6Ihejx%2FkEuNzqkY2WwDnsJEJxtwmQQ%3D","expireDateTime":"2024-11-06T11:12:17.1170849Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:45.615Z","endDateTime":"2024-11-06T10:11:36.195Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:44.37Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A39Z&sr=b&sp=r&sig=RMGihkGpWHzA9aQKoqj2uyrkvYv3XoqGaj%2FCOg0dXi4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:39.1969921Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A39Z&sr=b&sp=r&sig=MNALfQMcgjDn%2BqyLskdctBgNRr%2FEnnd%2FsrDeeqhe8xA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:39.1964963Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/a77bb1ae-0841-41f7-8226-eae1b19d728b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A39Z&sr=b&sp=r&sig=ZsBfiHX9qFtT%2F7XpA3xzZMN%2Ba%2Fo9ck1bNHYQdYbxei4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:39.1971361Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1ac5d67b-83ce-42fe-90a0-57e88eecb8f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A39Z&sr=b&sp=r&sig=ye5t7xkWWMoKfbAK2pIKz9FagbSDOWX4FlZFsfiTNtk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:39.1973616Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/3308a0e8-ec7b-4c60-80e9-29e791e0ba47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A39Z&sr=b&sp=r&sig=oMDmxccGuZ0VcGStB8Q1297imIoPZZzlEGEnhx8wpc8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:39.1975511Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/c237bb73-d27b-4429-b945-41d5bfb964a1_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A39Z&sr=b&sp=r&sig=55oquN0JchlVEVMc%2FiJzyj28PKrvrd2TPGAKtE95XFs%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:39.1976878Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/c237bb73-d27b-4429-b945-41d5bfb964a1_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A39Z&sr=b&sp=r&sig=r22Kf9l3VS%2BZumpn6rlyRSt7e0KwDvFXWTy3c7TL2gM%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:39.1978731Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/c237bb73-d27b-4429-b945-41d5bfb964a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A39Z&se=2024-11-20T12%3A23%3A39Z&sr=c&sp=rl&sig=W31SoUxA3%2FreBkUW9DleipMsMcwQL3HpGhAj618x4Y4%3D","expireDateTime":"2024-11-20T12:23:39.1980254Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-20T11:20:39.135Z","endDateTime":"2024-11-20T11:23:30.135Z","executedDateTime":"2024-11-20T11:20:38.095Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2024-11-20T11:20:38.488Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:23:38.375Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6253' + - '6363' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:17 GMT + - Wed, 20 Nov 2024 11:23:39 GMT mise-correlation-id: - - f20597e0-0562-490e-b951-0c38df29cb7f + - 7a7c374b-97b6-4dd8-9970-0f5f60e167d3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101216Z-er1d798b584sbn45hC1SIN1a0w00000005mg000000000bk6 + - 20241120T112338Z-1789fbbbd78t74tvhC1PDX9fys0000000ggg00000000b4h3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3579,9 +3551,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.32.3 method: GET - uri: https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=IO%2FQAjXm8Yk1t7IqnibLB2z9ePOuRQ5VfBCs6n1C99w%3D + uri: https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/20592e07-b829-4b96-af96-41b0be02f078?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A39Z&sr=b&sp=r&sig=RMGihkGpWHzA9aQKoqj2uyrkvYv3XoqGaj%2FCOg0dXi4%3D response: body: string: "displayName: CLI-Test\ntestPlan: sample-JMX-file.jmx\ndescription: @@ -3589,22 +3561,22 @@ interactions: JMX\nsplitAllCSVs: False\nzipArtifacts:\n- sample-ZIP-artifact.zip\nconfigurationFiles:\n- additional-data.csv\nfailureCriteria:\n- avg(requests_per_sec) > 78\n- percentage(error) > 50\n- GetCustomerDetails: avg(latency) > 200\nenv:\n- name: rps\n value: - 1\n- name: duration_in_sec\n value: 1\n" + 1\n- name: duration_in_sec\n value: 1\nautoStop: disable\n" headers: accept-ranges: - bytes content-length: - - '441' + - '459' content-md5: - - yLK28Aoz1wtkZ5QQqWOQAQ== + - l9T6c+FX/+/qa/IH9djruw== content-type: - application/octet-stream date: - - Wed, 06 Nov 2024 10:12:19 GMT + - Wed, 20 Nov 2024 11:23:38 GMT etag: - - '"0x8DCFE4AFDD5C778"' + - '"0x8DD09555C4977E0"' last-modified: - - Wed, 06 Nov 2024 10:08:41 GMT + - Wed, 20 Nov 2024 11:20:38 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -3612,7 +3584,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Wed, 06 Nov 2024 10:08:41 GMT + - Wed, 20 Nov 2024 11:20:38 GMT x-ms-group: - 713ccf3d-dc33-4787-a1ee-6b0cc537c37a x-ms-lease-state: @@ -3648,9 +3620,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.32.3 method: GET - uri: https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=tXyRwfHLS4Sv1YTUAtFMGR6wE53SDkvQoO%2Bdu7z51FY%3D + uri: https://gp850luhrb1r53uspibh8uc7.z19.blob.storage.azure.net/9eee0951-cdec-48f0-b92e-3b2d8541da85/1db833b4-da80-47b1-a1da-1a8f328a65d1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A46Z&ske=2024-11-20T18%3A19%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A39Z&sr=b&sp=r&sig=MNALfQMcgjDn%2BqyLskdctBgNRr%2FEnnd%2FsrDeeqhe8xA%3D response: body: string: "\r\n", "value": - "78"}, "0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "166f0c4f-8d7b-4fb5-a70e-784638748c58": + "78"}, "ccdee3a3-40fb-4fab-82b7-66500f175993": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:09.767Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:07:09.767Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:19:12.071Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:19:12.071Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1044' + - '1146' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:09 GMT + - Wed, 20 Nov 2024 11:19:12 GMT location: - - https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-03-01-preview + - https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 40e45c62-222d-42e1-8e2a-509ed4982d04 + - db6cd546-bd5a-4e17-8fd9-e6cd183ea003 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100709Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000sseu + - 20241120T111911Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pevt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:10 GMT + - Wed, 20 Nov 2024 11:19:12 GMT mise-correlation-id: - - 886b9b93-29fe-40bb-b7aa-dba9ceca2d12 + - a9c47aeb-35d1-4d08-8aaa-5a8f55863cb3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100710Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000ssgd + - 20241120T111912Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pewd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,17 +207,18 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A10Z&ske=2024-11-06T17%3A07%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A10Z&sr=b&sp=r&sig=Z9lTLA4fCObcN7v%2FcEt1AJsj%2FnwOUcT%2Bv6u9K%2Fsoz1k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:17:10.7078833Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A13Z&sr=b&sp=r&sig=KWV%2Fd7n%2BqZG8fr%2Fc2L5AmfF2tayn1EpUwO%2FcQHyvYtc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:29:13.3080262Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -221,15 +226,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:10 GMT + - Wed, 20 Nov 2024 11:19:13 GMT location: - - https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - b2b6c10f-6ac0-42d4-8aa0-22be61b4b880 + - c785d49f-a3c8-41f5-8112-effd9e3f0a01 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100710Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000sshe + - 20241120T111912Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pewk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A11Z&sr=b&sp=r&sig=9KhsfExdjHc54ralGCzPgaCvzBLhbtPpvDwZhpHk7hg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:17:11.7223828Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A14Z&sr=b&sp=r&sig=JNW6eMMVEh1n97Y9QAi%2F%2FQo8XE1RGQSTuROOquQzXKg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:29:14.2667361Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '571' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:11 GMT + - Wed, 20 Nov 2024 11:19:14 GMT mise-correlation-id: - - 0470e6ee-22af-486d-bba3-33955bbb4a67 + - 16a33ee4-1fd3-4829-8a3a-08ab08e2e1d5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100710Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000ssmv + - 20241120T111913Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000peyw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A12Z&sr=b&sp=r&sig=XUFZte3FT6zrv5C9Er3uuf26DkM032LCfkj5UErDC2s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:12.2675046Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A14Z&sr=b&sp=r&sig=7%2B8YwGy2bj8AktBY7nY7sU1%2BryD2xlSdFELetVbVgjk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:14.5304789Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:12 GMT + - Wed, 20 Nov 2024 11:19:14 GMT location: - - https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 031a31e9-30c7-42e5-b011-91e92f79f076 + - fc5878d2-fd35-4300-be60-6fa7bf992b57 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100711Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000ssrz + - 20241120T111914Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pf0u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,31 +351,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A10Z&ske=2024-11-06T17%3A07%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A12Z&sr=b&sp=r&sig=7z27qTrp3MC1oH4zpZ7FiUMweA2nAjAP%2B4QbnuxQ%2FAU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:12.595566Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A15Z&sr=b&sp=r&sig=UCsl2aLS4wTM48Rjx8pMUJdAKRZo64U8Mw%2F3zg9Qf54%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:15.1369512Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '571' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:12 GMT + - Wed, 20 Nov 2024 11:19:15 GMT mise-correlation-id: - - 91b53392-c178-46e7-95e2-a382ee91cb55 + - 19f84837-914c-4e8c-b94c-743ffe77dcce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100712Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000ssu6 + - 20241120T111914Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pf1b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A18Z&sr=b&sp=r&sig=kwEgeUUe0YOt1WbvkQ8ojAqA3U1LlrIcfc%2FIZb%2FLcVQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:18.2413056Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A20Z&sr=b&sp=r&sig=uGXRuvccdg4fcwCudTT6rNsvrBTbZVGQgJ9KMaAB1DI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:20.265675Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:18 GMT + - Wed, 20 Nov 2024 11:19:20 GMT mise-correlation-id: - - 715d17bd-14b3-4335-802d-9fc388ad8240 + - 06d6f72c-c6db-4fec-8194-23479663f161 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100717Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000stg3 + - 20241120T111920Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pfdg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A10Z&ske=2024-11-06T17%3A07%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A23Z&sr=b&sp=r&sig=eDPdrgISvYDCco6I0kcrIg5uHH9CF8nLrnLttMJU36o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:23.5427268Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A25Z&sr=b&sp=r&sig=mun1BwHefLXZboQfm%2BeOz8UnQI8MhCIUVzXL3n1bs70%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:25.3947051Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:23 GMT + - Wed, 20 Nov 2024 11:19:25 GMT mise-correlation-id: - - c5a7e357-2df5-403c-819e-fd2297bf09af + - d7c531b2-acaf-45a0-b4b6-26f82aa4fd00 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100723Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000su7m + - 20241120T111925Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pfue x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A28Z&sr=b&sp=r&sig=zPlxENQsym0VJu%2BfPbhE2X5p%2FA6x9N%2FLOsi9wSj0IFY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:28.8557048Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A30Z&sr=b&sp=r&sig=xmnoQw0aUAzj0fMAYcReN32DLN4Jt5taOKkPmsF3r0U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:30.5448844Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:28 GMT + - Wed, 20 Nov 2024 11:19:30 GMT mise-correlation-id: - - e7d71f6b-3ba4-43af-8a7a-29e4e83a3f8e + - 4056c282-591d-4d04-8457-69b8fedc0cb8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100728Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000suxm + - 20241120T111930Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pg6m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,17 +523,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A34Z&sr=b&sp=r&sig=qCOjpuRDxHFmhddjJdtspo1MhCaDKkCLM5SbzXbusco%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:34.1735972Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A35Z&sr=b&sp=r&sig=cBhfA9hiQERcwMnCfL0i2FycuXEc8OpoTj1d7RpkQoU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:35.6487661Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -530,13 +542,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:34 GMT + - Wed, 20 Nov 2024 11:19:35 GMT mise-correlation-id: - - d7d612e9-7680-4627-8208-c2f37371a3e7 + - 4195ad30-8023-439a-8468-3fb634d41572 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100734Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000svkq + - 20241120T111935Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pgsu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -554,31 +566,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A39Z&sr=b&sp=r&sig=%2FgVHxL2TyAHwuUFbmnwNqxZkCLiHYD%2B0V0dYDY45d3U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:39.4935042Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A40Z&sr=b&sp=r&sig=jA1S2%2BCjoNGu%2BnN%2FKeMt9vDCBYFzwms06tsbDkIKa5Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:40.7563843Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:39 GMT + - Wed, 20 Nov 2024 11:19:40 GMT mise-correlation-id: - - d52a5fe7-6c18-4b50-b35e-14f836579b81 + - 339be3db-b80f-4049-8dd9-0302bd1270dd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100739Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000swea + - 20241120T111940Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000ph48 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,33 +701,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A40Z&sr=b&sp=r&sig=BXP929kooTdDSYJSbmI9xxvFqXnBI9sdVNelg04gmQg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:40.692916Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A41Z&sr=b&sp=r&sig=hFfers7HmXPL2e2fBnMD%2FXyO%2Fr7KPAIEThlkEshDlkc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:41.5835363Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:40 GMT + - Wed, 20 Nov 2024 11:19:41 GMT location: - - https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 15d88f32-9636-4757-9bca-318482b39b8a + - 7533b15b-d815-4010-898c-8e1ae7d5a5ff strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100739Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000swfz + - 20241120T111940Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000ph4k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +746,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A41Z&sr=b&sp=r&sig=EJu9gimW5pAWazHNXMYiS1jeTyWZJhG3SkJJMX7z73Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:41.0006685Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A41Z&sr=b&sp=r&sig=X2cK6tB4NmhN6pvnuDBaSBTWkfPIKJ8v3MpDlsjxk84%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:41.686011Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:41 GMT + - Wed, 20 Nov 2024 11:19:41 GMT mise-correlation-id: - - df0f3738-9918-43cc-9dc9-dd76427d48c7 + - 367b93c2-f9ff-499f-a6e4-1bf529831910 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100740Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000swqc + - 20241120T111941Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000ph76 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,31 +789,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A46Z&sr=b&sp=r&sig=6c%2BofejxE0YGgz3OsPwGKKrlo0lHiWg8qjHeq4R8hlo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:46.330798Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A46Z&sr=b&sp=r&sig=tk4rmgCVXzkbKUr9vvkm2pkQzalA7o%2FZkY8o%2FkCSqYE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:46.8128955Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:19:46 GMT + mise-correlation-id: + - cf9b1c5a-268d-4f47-8626-3810c28be6b6 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111946Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000phkv + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A37Z&ske=2024-11-20T18%3A19%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A51Z&sr=b&sp=r&sig=chRH1xlXGtIgBVM24fe03cdG7EFd7nv1suBbH%2B3HqPo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:51.9303577Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:46 GMT + - Wed, 20 Nov 2024 11:19:51 GMT mise-correlation-id: - - 8313164f-cd3a-4e2a-93b8-8b5be098dfe2 + - acbbb306-5579-46e2-bb41-d9453e082526 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100746Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000sxga + - 20241120T111951Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000phy3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A52Z&sr=b&sp=r&sig=WNZXk2IubUhMLwTo9EVKAmsE3BvRXL4ohCgrMA9HbpI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:52.3069168Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A57Z&sr=b&sp=r&sig=IF5EcbECEPX7ccoAgX1uHjW0NG5KlbYyt0aQWOLzQ%2BI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:29:57.0418171Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:52 GMT + - Wed, 20 Nov 2024 11:19:57 GMT mise-correlation-id: - - 7db4260f-7a0d-4047-9b05-eaf56a85867e + - 77b1d4c6-929f-465b-ba88-47c6fbbd3f83 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100751Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000sypz + - 20241120T111956Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pkb6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,17 +918,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A57Z&sr=b&sp=r&sig=y%2BDWfJ4foKchU4IGcbrau0en8dyCL1mC2IHnj%2Bj5iUw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:57.6067032Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A02Z&sr=b&sp=r&sig=XV%2FoNeGpoGfhQZtK9c67%2FUrypSkCnAO4L1SuET2iP2E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:02.1509127Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -876,13 +937,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:57 GMT + - Wed, 20 Nov 2024 11:20:02 GMT mise-correlation-id: - - 11038a69-500c-451a-b8c1-a35c3105e94d + - 75dfd17a-bd04-4564-8af6-0c14d932dcdd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100757Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000szsw + - 20241120T112002Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pkrx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +961,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A02Z&sr=b&sp=r&sig=2ppJtllQVsEDKGkpIEgJsoYW7noRwgcvirEvpNCdGYk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:02.8989792Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A37Z&ske=2024-11-20T18%3A19%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A07Z&sr=b&sp=r&sig=K6N7JgLdu85GONVu3APWu%2BMtKEPw2HVkbVsJi1xQGYg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:07.2555217Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:02 GMT + - Wed, 20 Nov 2024 11:20:07 GMT mise-correlation-id: - - d1e9666d-4e2f-46b0-bf10-be0e0b9137f7 + - 908502cb-ae84-40ce-bd8a-b2e74cb91c91 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100802Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000t0wg + - 20241120T112007Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pm4g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +1004,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A08Z&sr=b&sp=r&sig=be8MICbbKneUE90SOf%2F7GpYN9A%2Bb%2FpDlmgJ7ny82DCo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:08.2034928Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A12Z&sr=b&sp=r&sig=dSBM6wQHgG9Kku3sT9eX1CnWryt%2FnLtEWmu%2BlpUBJ78%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:12.365081Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:08 GMT + - Wed, 20 Nov 2024 11:20:12 GMT mise-correlation-id: - - 0790f3e8-fb9d-44ea-b6a4-ba23ad784718 + - 99f3a357-b610-4974-85ee-38bd4297e0dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100808Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000t1tf + - 20241120T112012Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pmg4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,32 +1047,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A08Z&sr=b&sp=r&sig=a179Tuq0Ujt%2B4Ow1jWNSwCfHU59wRd8oQOKuI9ZehQU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:08.5074564Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A08Z&sr=b&sp=r&sig=QrUh%2BIKChlUEH81MBBhFkxupyBgXrvcntyOmiINsyXA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:08.5389614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A08Z&sr=b&sp=r&sig=IGDa5dICTQojtP9FpWclqyIbW29a8NmSz4ius6J5I9Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:08.5390404Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:09.767Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:07.245Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=iKHvDD7Uwm5fLlkJfKjHWlvUAeW0KDo9YFciwn%2Bcg7M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:12.4702035Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=4RWpQtcd1CKE5LaTHnWuOvl6Kwlbqpe4lM9MIFnULfI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:12.470619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A12Z&sr=b&sp=r&sig=xC3fL%2FndXBvvMk3%2Biyo08KgRcOmWRsbJ3VL%2BrSXQxU4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:12.4707691Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:19:12.071Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:08.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2762' + - '2867' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:08 GMT + - Wed, 20 Nov 2024 11:20:12 GMT mise-correlation-id: - - a6e4ff80-384f-4379-994e-a0367f6997df + - a78ba4fd-eaaf-44fd-8ff6-8737e78b152f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100808Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000t1vm + - 20241120T112012Z-17b7777dc45mwcxxhC1CO188kg0000000w6g00000000pmge x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1027,23 +1091,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:06:22.9269478Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:22.9269478Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:18:39.7397546Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:39.7397546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:10 GMT + - Wed, 20 Nov 2024 11:20:12 GMT etag: - - '"fa005927-0000-0200-0000-672b3fb70000"' + - '"9703da00-0000-0200-0000-673dc5aa0000"' expires: - '-1' pragma: @@ -1059,7 +1123,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A71B838DFA91467B8D86BA7910A50D24 Ref B: MAA201060516023 Ref C: 2024-11-06T10:08:10Z' + - 'Ref A: 0C46FFAE1E0844C880D522C756B39FAB Ref B: CO6AA3150219009 Ref C: 2024-11-20T11:20:12Z' status: code: 200 message: OK @@ -1073,32 +1137,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A12Z&sr=b&sp=r&sig=fYTbVGNEojzu1rSCe%2FH7xgQa%2FAeIgEG1AeKWLkWF%2FQ8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:12.7835381Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A12Z&sr=b&sp=r&sig=03kaJapFqv2J7D9Ez0QoOSXZRJNXuaa210%2BvsmINan8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:12.7839295Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A12Z&sr=b&sp=r&sig=bZOgK5t%2BC7mEzQ9Hk5nZOE4D2uSf9AVLZhuWDEFOMVE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:12.7841024Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:09.767Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:07.245Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A13Z&sr=b&sp=r&sig=Z52NQ6t7prj1%2FNWY4KM8%2BkBkn45QK42l8rjEH3krKEc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:13.4069311Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A13Z&sr=b&sp=r&sig=AWWykfAzHEXTHE%2BW3Ot%2F79wroob4CQKLGfj9FZwZheA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:13.407296Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A13Z&sr=b&sp=r&sig=lJQeE2aGmZY1JYWBw%2FVTQ%2B89g2Tub7PErfLk9mhpwz4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:13.4074024Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:19:12.071Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:08.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2780' + - '2883' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:12 GMT + - Wed, 20 Nov 2024 11:20:13 GMT mise-correlation-id: - - f4abbbd0-fddb-4b6f-873a-086d2dbbfce1 + - deaeb936-792d-4777-93d6-6a6bce683690 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100812Z-1556595cbbckqfc2hC1BOM1r60000000069000000000pvh4 + - 20241120T112013Z-1789fbbbd78flwl6hC1PDXd5ac0000000gm000000000hswn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1116,23 +1181,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:06:22.9269478Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:22.9269478Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:18:39.7397546Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:39.7397546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:14 GMT + - Wed, 20 Nov 2024 11:20:13 GMT etag: - - '"fa005927-0000-0200-0000-672b3fb70000"' + - '"9703da00-0000-0200-0000-673dc5aa0000"' expires: - '-1' pragma: @@ -1148,7 +1213,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 782B94EF50134D9ABC3579FD1881DF92 Ref B: MAA201060516049 Ref C: 2024-11-06T10:08:14Z' + - 'Ref A: 494C7342D48F403BB78379666D6EAFB0 Ref B: CO6AA3150219019 Ref C: 2024-11-20T11:20:13Z' status: code: 200 message: OK @@ -1162,30 +1227,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with given name \"list-test-run-case\".","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:08:17 GMT + - Wed, 20 Nov 2024 11:20:14 GMT mise-correlation-id: - - fa294f2d-ab8b-4f71-a5be-143881f2cf24 + - 71b6749d-75b8-42a8-af1c-5ad35792f7f0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100816Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cfee + - 20241120T112014Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005emu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1209,31 +1275,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A18Z&sr=b&sp=r&sig=HNMHj7tJ9aXi5VbMZ7KiARsR0aeLWNEqb0qG3ACdtQg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:18.6847387Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A18Z&sr=b&sp=r&sig=TG9haddcbfxqnKoaOo6LGhGmZNd%2BJSTIq8K1T184CoE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:18.6844288Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A18Z&sr=b&sp=r&sig=hdAv7uR8f2pIWqxzm1LZ0PW9v44FGuZmIMExZkbZdqs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:18.6848605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A18Z&sr=b&sp=r&sig=pJEFy0WwkqmdqPFRnrk4uOTCO5QEmGm%2BJN1Yd79njA8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:18.6849797Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A18Z&sr=b&sp=r&sig=wXji5pfj4xUY3wwbhP3lchJ8z1wK987notixEcmIiyM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:18.685099Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A18Z&se=2024-11-06T11%3A08%3A18Z&sr=c&sp=rl&sig=8Sxai%2BT82%2FUfEGRUS0b0dGYuPYTP0yKAi%2BAETRk%2FqPI%3D","expireDateTime":"2024-11-06T11:08:18.6852116Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:18.439Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A15Z&sr=b&sp=r&sig=bfIx04XuDXq70pxM25HhCokqkZoDExBHsFhOZvllT1c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:15.078171Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A15Z&sr=b&sp=r&sig=IwqawsCyD2dEeNt%2BzLseaBzcTmCJBIJokiVWmSI6SX4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:15.0777672Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A15Z&sr=b&sp=r&sig=eyLsnK%2BpCbDKwL43AEbp0WmaV0XwYR%2BXnJqjiGHeOR0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:15.078349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A15Z&sr=b&sp=r&sig=OvMvJlDS0NEDdm6kkTPOfXUhw0JGlmE%2BnjobAOMpUao%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:15.0785175Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A15Z&sr=b&sp=r&sig=K9SheGmtntptNM1k%2B66W6tkagypGb7UzlEpyeZORto0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:15.0786918Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A15Z&se=2024-11-20T12%3A20%3A15Z&sr=c&sp=rl&sig=6%2B%2BaBVYCZfa05PtF4IHMpVXD6MkgiPhkPMoPnn1EMqo%3D","expireDateTime":"2024-11-20T12:20:15.0788543Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:15.068Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4848' + - '4951' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:18 GMT + - Wed, 20 Nov 2024 11:20:15 GMT location: - - https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2022-11-01 + - https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 617413e3-bbe1-4c26-ba11-a24910852592 + - bf3f9cf6-22a2-472c-8e2a-98df5b9b12d1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100817Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cfha + - 20241120T112014Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005enf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1251,31 +1318,118 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A15Z&sr=b&sp=r&sig=f8a7iJhGJLKnQLivAsZewv4sJziFQOBUzX%2BCLVIuQvs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:15.2154095Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A15Z&sr=b&sp=r&sig=vaQ7T0%2BSt7c%2Fv3gOZIDjbrBIVlx0gwlaXnAEKGsI3ls%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:15.2151523Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A15Z&sr=b&sp=r&sig=jQ71h1di9NQ%2FLNeq7juKmzaNYOzF172TeQRYnGtmqD0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:15.215487Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A15Z&sr=b&sp=r&sig=zNKNdTxq1pAlGYj17saJtmDeKAq3Dqa1ozEJ4RgM%2Biw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:15.2155601Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A15Z&sr=b&sp=r&sig=Dmwn8JGna%2BTpbbR2r8oSejifwiBGNf7qJnBMoSjMBfg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:15.2156329Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A15Z&se=2024-11-20T12%3A20%3A15Z&sr=c&sp=rl&sig=clZalkbY0U1RYUD2TA85QCtuGEBgr6%2BoSfgFsk%2BqlW0%3D","expireDateTime":"2024-11-20T12:20:15.2157046Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"NOTSTARTED","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:15.201Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '4999' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:20:15 GMT + mise-correlation-id: + - f8ae54d6-3581-430b-bb83-138966130a9e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112015Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005eq2 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A20Z&sr=b&sp=r&sig=hL23ohLOFz2lYo3X08m1F65OqbgxxUw8SuCyqVxCcwE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:20.3916632Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A20Z&sr=b&sp=r&sig=YrN%2BCFpmjq1%2B4OmzMabiMZYxiawm0BkwLnx4is50%2B9E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:20.39Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A20Z&sr=b&sp=r&sig=31VLotULwWQuSJ%2Ba8mjUS9eu%2FtULPBAWBal%2BOAOHjyM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:20.3919241Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A20Z&sr=b&sp=r&sig=6LTg48ZxXvK5ksrYLHuY1EZhh4p8Wj6xF7z9mgT0aok%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:20.3921528Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A20Z&sr=b&sp=r&sig=XU2y96Ub8ue2doMnP5tayT0Abw2M3w%2BWLjfgcmPL%2BFg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:20.3923742Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A20Z&se=2024-11-20T12%3A20%3A20Z&sr=c&sp=rl&sig=LqOyhTxnkKPzmAmSGBdUaTARnJFQwg6v%2BOA0luWZFYM%3D","expireDateTime":"2024-11-20T12:20:20.3925897Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:15.449Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '4999' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:20:20 GMT + mise-correlation-id: + - 5b2d1c36-abcc-4da8-ae94-c4c51c65c60e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112020Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005ey3 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A19Z&sr=b&sp=r&sig=ZjVhFl4A0q613oLPJ6goytzLeTWKpyUj%2BzUN4wLpOHM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:19.200856Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A19Z&sr=b&sp=r&sig=tzDCR2%2FfoZpcAOoL94JOG2G%2B7kBdRTSk%2FmxHNKh5SDk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:19.200027Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A19Z&sr=b&sp=r&sig=l8riUEQJIwdktVnFXUq%2BuVPL8L%2F7mTCR%2BWLkTaNWw%2FI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:19.2012497Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A19Z&sr=b&sp=r&sig=bBdKZ7HgcZ8J0U%2B6ZWdxTyyKU%2BIAxxEtq6b6y2GKEgA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:19.2015155Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A19Z&sr=b&sp=r&sig=QyAI1HUZWvAecMwv87nTh9wuXYWF9Qd%2BTgDgnxLKBT4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:19.2019137Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A19Z&se=2024-11-06T11%3A08%3A19Z&sr=c&sp=rl&sig=JLoEqZ%2Bsn%2F3kt6m2uimLoJ%2F1vAJvX%2BZAsox41HeenFk%3D","expireDateTime":"2024-11-06T11:08:19.2021784Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"NOTSTARTED","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.082Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A25Z&sr=b&sp=r&sig=y80sqy9%2FSpXj9rO984VDjI4CDx8vzbA03h9D2%2Bp6HPE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:25.5515558Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A25Z&sr=b&sp=r&sig=XhrNqVPor%2Bs7Wxctf6TIxipSYX6q7zA9S0nj3h08Xbk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:25.5511544Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A25Z&sr=b&sp=r&sig=%2BF0wkjnBj3PTcwxceYc4ugSQwE37i299swBZeiFvaM4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:25.5516483Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A25Z&sr=b&sp=r&sig=N6RPYWy1mqhU7U10GT2t92EOaxYvvzKSwzH4ignOWjs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:25.5517382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A25Z&sr=b&sp=r&sig=9C2I9g6zDFM0D4u5KYqG4peh5NstVl0wO7HHixLWxA0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:25.5518274Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A25Z&se=2024-11-20T12%3A20%3A25Z&sr=c&sp=rl&sig=IqeUqlLugkH7aYx7gevrhxEcDdTZMQD%2B2Mb7UadbfC8%3D","expireDateTime":"2024-11-20T12:20:25.5519107Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:15.449Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4910' + - '4996' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:19 GMT + - Wed, 20 Nov 2024 11:20:25 GMT mise-correlation-id: - - 1c2a209b-3c46-41f3-bb5c-4956080ab825 + - 4cc69255-edb9-4880-bd9f-8aedef025cbd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100819Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cfsd + - 20241120T112025Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005f6a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1293,31 +1447,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A24Z&sr=b&sp=r&sig=6UhPy3MqpIRUArR02J5TKyeIYJGkvg7KhuHYBdKsbZs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:24.5478598Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A24Z&sr=b&sp=r&sig=WWLU%2FMHGwxWUQJu31nlNVRbBchplu8f73YJlI1FC1lE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:24.5475437Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A24Z&sr=b&sp=r&sig=ZE5Y%2BNHP0TOw4G%2BrlF%2BR6lHLfNFPoIjm1nB9b5GE6WM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:24.547982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A24Z&sr=b&sp=r&sig=T11NeFeWag5qO4qKll8shmdRvhcGC4vjvlnr2fdPq%2B8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:24.5481068Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A24Z&sr=b&sp=r&sig=HfIPIZPhxD%2FY3sBhjI%2FpjReLSnhL6avXEUjz1TxZTzc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:24.5482333Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A24Z&se=2024-11-06T11%3A08%3A24Z&sr=c&sp=rl&sig=a1V3IdzVCEd1RzFSMGxbmp7QANH0eAQeLq8C%2FXde9Ic%3D","expireDateTime":"2024-11-06T11:08:24.5483571Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A30Z&sr=b&sp=r&sig=lEOGnObAt7Kp%2BwS9C6XcvEzJeSIrL1SCKxUDB7mJ3Gc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:30.6910622Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A30Z&sr=b&sp=r&sig=VUv8JnDo3P%2BRtCJst6xnqvah1rzgY0AxbQeECcUsLFU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:30.6906634Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A30Z&sr=b&sp=r&sig=eTZ6maTR8sLrYFF0diqDGD725jA4r3XW9phIqj1hZY8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:30.6920144Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A30Z&sr=b&sp=r&sig=sFQo32WHCHvyuEiZ1RvEo%2FhEjWK1HM7V32UwNmwBDI0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:30.692109Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A30Z&sr=b&sp=r&sig=5Ny87jx7bilbxoy0n4Fud6DFVe71MPGRUd8CcwfDbO4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:30.6921796Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A30Z&se=2024-11-20T12%3A20%3A30Z&sr=c&sp=rl&sig=dpIXzsMMhcDbKbRamPL9lsdfFGjvaow%2FMe3YiE4QMxo%3D","expireDateTime":"2024-11-20T12:20:30.6922415Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:15.449Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4899' + - '4993' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:24 GMT + - Wed, 20 Nov 2024 11:20:30 GMT mise-correlation-id: - - c445b480-6a3f-461c-b7eb-d3dd61b94b81 + - 44763509-285f-40a8-8c60-b41eac5787ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100824Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cgcf + - 20241120T112030Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005feu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1335,31 +1490,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A29Z&sr=b&sp=r&sig=Pm20nUXf0rzR4GzP2fxQbYtYpA6npc0Zq7xmk4TwgAg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:29.8676498Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A29Z&sr=b&sp=r&sig=%2BhTD6o8XQvVWWrriChBPP9nrw2eEZ7s6d6F25eDc%2BpY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:29.86719Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A29Z&sr=b&sp=r&sig=Gq9FrTpFE6UBg574TJa4Vf0cl%2Buj7Ga1JhgN0cZhaD0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:29.867829Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A29Z&sr=b&sp=r&sig=yupQq8WEx3lVyobluc4hDH1V5iZA1vRKyB%2FkJPTAgVg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:29.8680091Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A29Z&sr=b&sp=r&sig=%2FLQ%2Fd9wHauDQg8BSDsgcHF75v6aa2rdwqYkbNa9TYVo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:29.8681861Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A29Z&se=2024-11-06T11%3A08%3A29Z&sr=c&sp=rl&sig=OsX4Jq1SOVnCef42pnxKKJXKb7AY7ayFMxutKziXJpk%3D","expireDateTime":"2024-11-06T11:08:29.8683622Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A35Z&sr=b&sp=r&sig=P8wCseJqv7mKnlVa%2BsJzRkcnEgdJm8RCcxrwX3N3iuA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:35.814227Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A35Z&sr=b&sp=r&sig=524WWYqTx1f3kps70UA1YZtTPstIytF%2BTqxoL1diVWk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:35.813866Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A35Z&sr=b&sp=r&sig=BR7iS2qwCqThyLnq3YFUt2tWp6pCYubfZYPOvGmyZ8w%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:35.8143171Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A35Z&sr=b&sp=r&sig=FmkzZHSh0HTscie4v2E0M2D2UFH708A1LLb7Td159qs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:35.8144201Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A35Z&sr=b&sp=r&sig=CqLsxGfP5W46gcChXhvs9bOitDYqn3i72dFYhU49UY4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:35.8145203Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A35Z&se=2024-11-20T12%3A20%3A35Z&sr=c&sp=rl&sig=yWCd4YI4csubl6GsSlmqrTcF2B5lDTEAvIlIlSLkbv4%3D","expireDateTime":"2024-11-20T12:20:35.8146229Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:15.449Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4893' + - '4988' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:30 GMT + - Wed, 20 Nov 2024 11:20:35 GMT mise-correlation-id: - - a5a404c1-b61b-4bcf-91ce-49cd3721d10b + - 374331df-c20c-4250-b1fa-1db6ac135cc1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100829Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001ch0q + - 20241120T112035Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005fqh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1377,31 +1533,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A36Z&sr=b&sp=r&sig=aVPY64Wbc749p8QeiOMPznyoyJ4VSu8bTWmksXHCGRY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:36.2614372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A36Z&sr=b&sp=r&sig=3d5DOHS73yU6rK9gFqRyLDuGUZ6cokXMqXDel37hhz8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:36.2612174Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A36Z&sr=b&sp=r&sig=70MiunPUADquGqTHKkYVKfuXRsHRZJih2Stv19mTB3U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:36.2615243Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A36Z&sr=b&sp=r&sig=WJ8LK8HkBgonBVOpaggLhJm8cgb3wG163phAGrPHwZA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:36.2616019Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A36Z&sr=b&sp=r&sig=FuDodQg4KjlBXFpigDVE93%2FWGQ%2BTqR9UYsTuPr7pQiM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:36.261677Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A36Z&se=2024-11-06T11%3A08%3A36Z&sr=c&sp=rl&sig=FzxS4F2h3NDK6FTypEg%2FgcNnpVF2%2FKql7Aqrnh%2FtKrc%3D","expireDateTime":"2024-11-06T11:08:36.2617541Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A40Z&sr=b&sp=r&sig=geGvkYSF%2B9XHp4enuyMg%2F8mJwOsrBWogi6PuKzwCp0M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:40.9433322Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A40Z&sr=b&sp=r&sig=asNKgQp2jks2XzP1jOLoKh8wBWRCZ5bLTBBD0dA%2BPjo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:40.94289Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A40Z&sr=b&sp=r&sig=O%2BdDwkUJeqn3BOH%2FNG8%2Bvi0jLMfC3S0ogtGzyTJrgtc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:40.9434668Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A40Z&sr=b&sp=r&sig=ntw1CaHKyP0YSv3phaThCYkVWUDY2QbxcUFQPtbfjtg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:40.9436087Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A40Z&sr=b&sp=r&sig=iZWFMQWbGxM0IVZxnCE9l8aiEQ521Kmfb4c7TDLeJjw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:40.9437502Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A40Z&se=2024-11-20T12%3A20%3A40Z&sr=c&sp=rl&sig=NeWuRgWUclcK2IDlC2oh8zOOwZba2xdQToja9k8cSzw%3D","expireDateTime":"2024-11-20T12:20:40.9438892Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:15.449Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4893' + - '4996' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:36 GMT + - Wed, 20 Nov 2024 11:20:40 GMT mise-correlation-id: - - ed47f19a-effa-4eb0-b8ab-e060cf64e94f + - 8ee5de82-9da8-47bf-99c7-e87084803d27 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100835Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001chhh + - 20241120T112040Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005fxe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1419,31 +1576,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A41Z&sr=b&sp=r&sig=Smz19aVRSeZJJRYZmHdytuckuWW2ZZir%2F%2BgNGbYW5ig%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:41.5727913Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A41Z&sr=b&sp=r&sig=lwfsJT6jqKPqlr68Fc1O5FHS8qDd59kahJJ625jCBew%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:41.5724899Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A41Z&sr=b&sp=r&sig=RIly5%2BbTUwWGSnLNF7I8nXfq8Blrj3UYKdxuz%2FrBcfU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:41.5729268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A41Z&sr=b&sp=r&sig=t5GtUwnZqGo%2F2kizvStmKeU8RD9JSgOnBNfA2OZ7Vgc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:41.5730629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A41Z&sr=b&sp=r&sig=EvInZ7m9TJhdC1aeHa4DFYH7w2k%2Bg5AmYGu1rLx6NqI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:41.5732022Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A41Z&se=2024-11-06T11%3A08%3A41Z&sr=c&sp=rl&sig=hfq3kLIgTFWUMI9xYnfLxqdEaaVsyywAGRX9KUDbIYY%3D","expireDateTime":"2024-11-06T11:08:41.5733564Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A46Z&sr=b&sp=r&sig=cVhjAA%2B%2BE8tTdBZ089bgfuE2VBuhgBZB4aSjqOV3WhY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:46.0652453Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A46Z&sr=b&sp=r&sig=P7Ow3RbyQkwtXk3MCI0MfUQ0RBm4i1TyMK2RbLmvfT0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:46.0648679Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A46Z&sr=b&sp=r&sig=vDTmKH1%2FK1WmC9rKdveuiWDrUNTfRaSUgmsz9Gg9kKw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:46.0653869Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A46Z&sr=b&sp=r&sig=VRYAbjbXSvXviYbClPtOvPQJ8qy1k7JR2Yiy5AqpMvg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:46.0655341Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A46Z&sr=b&sp=r&sig=nHOYaAy2sCSQqzAwCgPRH%2Fs154tRtxiYxxk5bZz%2Bq8g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:46.0656728Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A46Z&se=2024-11-20T12%3A20%3A46Z&sr=c&sp=rl&sig=CYKWMSp%2FatRVMDgOb0WTpSR1gzYyjkuqM4m3ZLVv2gY%3D","expireDateTime":"2024-11-20T12:20:46.0658104Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:15.449Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4896' + - '4998' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:41 GMT + - Wed, 20 Nov 2024 11:20:46 GMT mise-correlation-id: - - a5b10fdf-4e17-4f52-a3c0-1c752b9464b2 + - 147c0487-bf45-458e-8c9a-8f3615e18a0b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100841Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001ck9q + - 20241120T112046Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005g50 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1461,31 +1619,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A46Z&sr=b&sp=r&sig=c1SYOKVStjRPZVEedSviCzZcvFT6uAp6iiTMSSoLEXc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:46.8852859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A46Z&sr=b&sp=r&sig=tpupfHOw7jiPFutLVPHrVCxVkOrovaN5Iiq8cthF7qI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:46.8845742Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A46Z&sr=b&sp=r&sig=Iv9W8tSeYpn0CvGMysbTO1%2Ffpq6AEKwmkxM25PSKop8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:46.8855962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A46Z&sr=b&sp=r&sig=epyLHDJMmx7EwUXMbvWMtKkz%2FxcNP%2BpvEY%2FQvxLvJoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:46.8858878Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A46Z&sr=b&sp=r&sig=wNHRGrmfnLpkaTVDPZ1s4ItiRkAqQcYF5iOJmPM2QZY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:46.8861872Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A46Z&se=2024-11-06T11%3A08%3A46Z&sr=c&sp=rl&sig=ZRttbUlBFxTyb9I39iQhp6CxzVaYAfcwk1cnYCVdqFU%3D","expireDateTime":"2024-11-06T11:08:46.8863956Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A51Z&sr=b&sp=r&sig=P5TTUqwW02WGL2dqLG9HvYU7ZTr7lbLDQb6Oyi0luOo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:51.1878142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A51Z&sr=b&sp=r&sig=VjXAm4yXVYof3bM18rh6Nr4qH0NrEE1c6H1OOuDPGMs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:51.1874966Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A51Z&sr=b&sp=r&sig=OrFL0910rhCfQahbX37ZiOhLV8eWPRWJSdIRjDZLCps%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:51.1879183Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A51Z&sr=b&sp=r&sig=ESbOVEw0IdPFVg2vD9aaoYyQPcD5ksQStN20dXVjzac%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:51.1880217Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A51Z&sr=b&sp=r&sig=BQiViSy0LonD8vPT%2FuuJ9wjumr1%2FTY%2FFtMicHSDwW94%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:51.1881467Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A51Z&se=2024-11-20T12%3A20%3A51Z&sr=c&sp=rl&sig=zflOXelDPor1NWjV5CWnYddATiikjVGjPyjl1%2Bt2PEQ%3D","expireDateTime":"2024-11-20T12:20:51.1882484Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:15.449Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4892' + - '4994' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:47 GMT + - Wed, 20 Nov 2024 11:20:51 GMT mise-correlation-id: - - d7e66576-8b22-4920-a607-1dc5141b6050 + - 029a31c6-7e9b-4e5c-bc1b-a6ded7ea826a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100846Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001ckux + - 20241120T112051Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005gb4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1503,31 +1662,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A52Z&sr=b&sp=r&sig=UGpPU3QBrZN8%2FWqEbq91Max0jT1nIJ6KnGfWjSCfpWo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:52.220043Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A52Z&sr=b&sp=r&sig=DkDjfKywy4zReVceVmQLHiBX4FcQQQr5%2Bk0v1dRd0iQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:52.219608Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A52Z&sr=b&sp=r&sig=XT1oySwJThsvWj7sFFSGMJ3csph4LbrDq%2Bh7ruStpn0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:52.2201535Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A52Z&sr=b&sp=r&sig=nkDoaVSSeBgt2yAylei%2FsqsEe%2FJbAPz9ODvngBvKTG0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:52.2202528Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A52Z&sr=b&sp=r&sig=mpeclNpSaeBbG7nn0GMBIFkce9Th5f02z8JOHvXgJZA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:52.2203496Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A52Z&se=2024-11-06T11%3A08%3A52Z&sr=c&sp=rl&sig=bzHPWzbzvrYIXURzuJxQWoDwVVdILFKnSTpuG6SGS6Q%3D","expireDateTime":"2024-11-06T11:08:52.2204454Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A56Z&sr=b&sp=r&sig=tSdYLABMMsorijQQ9TWJO06aY3%2BQ9wbfow7sBonfACM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:56.3128653Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A56Z&sr=b&sp=r&sig=ny5VxckFkc2oDYxgJZhVCj%2BRMA4ANK4tq4goebPwSPg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:56.309549Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A56Z&sr=b&sp=r&sig=NM41d016x9N916w5Ep2L7u2yJn0SpSCUrwXcsBgC13o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:56.312932Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A56Z&sr=b&sp=r&sig=A%2BH4qZ7U0M7%2FyCO4GRx9ZIqmV%2BheROiLb%2FZHXTzRWts%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:56.3129977Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A56Z&sr=b&sp=r&sig=TqlIm9twIgIAYwrgNDJV3Fjf9JeQTOsd3AqWgWCls3U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:56.3130612Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A20%3A56Z&se=2024-11-20T12%3A20%3A56Z&sr=c&sp=rl&sig=U33lMErfK0uWGB2%2B4bveGPgtO1i0PFBrb4IVpApNDJ0%3D","expireDateTime":"2024-11-20T12:20:56.3131235Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:15.449Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4892' + - '4998' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:52 GMT + - Wed, 20 Nov 2024 11:20:56 GMT mise-correlation-id: - - 96fa7585-8d78-4de3-bdda-e95cd495adb4 + - 5dfcaa9b-38d2-4048-9247-c32c80636070 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100852Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cmax + - 20241120T112056Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005ggs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1545,31 +1705,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A57Z&sr=b&sp=r&sig=VPbLotqgaH2GUKpVj6pw0aGgr%2FsODclkoNrso4eYZxQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:57.6401996Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A57Z&sr=b&sp=r&sig=IXBwo8DdZirTjfOHsj5B7zC6k9xgycYjgc4GklZ19PU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:57.6397682Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A57Z&sr=b&sp=r&sig=lcp8F%2FY%2FLRaNS9QSUiyo96sK352gbNxny6Se3oECjdQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:57.6403816Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A57Z&sr=b&sp=r&sig=riXwN5K7fOcqtiBLyJpizUYgvhH9ur1GkTLczf9995s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:57.6405633Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A57Z&sr=b&sp=r&sig=Qv9QQXiR0Nh06q01VBsNkJrj2uNInuBX%2B9YEMo%2FxErA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:57.6407542Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A57Z&se=2024-11-06T11%3A08%3A57Z&sr=c&sp=rl&sig=oJMj3c3ZUOPy58E3rJxEnWsZzx2%2FImJPHXstrN1VfkU%3D","expireDateTime":"2024-11-06T11:08:57.6409236Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A01Z&sr=b&sp=r&sig=z8Lahb5uAJRCg%2BENu3%2BRyGJID0uCZc%2BtBxBoHxYkQzs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:01.4306713Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A01Z&sr=b&sp=r&sig=0LxDNTFnDhx%2BPnJH4UBz2FZZbjTpAbwgkEVN%2FQTdKLI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:01.4302443Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A01Z&sr=b&sp=r&sig=HB1sX9dg8x2gDNOoKP4uX9tx%2BK9T6HGsv4LXHiMd3uc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:01.4308441Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A01Z&sr=b&sp=r&sig=AUO2kK%2FFZ3hEtdvPhPNW%2BOqyeRdw0GBdQkkXjeZbHV4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:01.4310196Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A01Z&sr=b&sp=r&sig=aIJVp4FzeMoyQL%2BTD6S0nYvtMjqOTSZ01B5mGUFOubU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:01.4312165Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A01Z&se=2024-11-20T12%3A21%3A01Z&sr=c&sp=rl&sig=KhlR%2B9heY7oTz0a%2F3j6mgQvT562EjI5OLMdvXtKy300%3D","expireDateTime":"2024-11-20T12:21:01.4313909Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"CONFIGURING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.073Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4896' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:57 GMT + - Wed, 20 Nov 2024 11:21:01 GMT mise-correlation-id: - - e2fc64af-bff5-4985-9432-588dab033337 + - 64004e3c-e324-4b1f-ba47-42142855ca4a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100857Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cmwq + - 20241120T112101Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005gqe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1587,31 +1748,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=B8K7rOqiwxVPZUZ4juTBSft7B90FUaEIl%2B%2FKXaxdftg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.969139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=EimfSZVwIRmUWPUv%2FbSGH6OdC6A0W8MvjqE6V4KaNz0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:02.9688614Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=ind2ZXUbIsld9%2BxX%2F9xRABr3ADHZKV%2FBXu8ll3u1Cus%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.9692343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=I89aSLieHYhO1ZvAk6WeXn8KC%2BvJPXC%2FS9BaU%2Bz7NE4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.969321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=j%2FZshUvOq82X8bYKcBk3Uo4i0H3rcU4BI6GSiu%2BCbEI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.9694099Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A02Z&se=2024-11-06T11%3A09%3A02Z&sr=c&sp=rl&sig=lkPKR4YYNJFmbTscd%2FhP8wFc5RVwG6aD6T8Qdiq4zjM%3D","expireDateTime":"2024-11-06T11:09:02.9694946Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A06Z&sr=b&sp=r&sig=KMzerTyG%2BigXv8H3z%2FDUq%2Bd%2BQH1dR3OG3jLzLgUpsi0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:06.556442Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A06Z&sr=b&sp=r&sig=pLNenTOCqRwUOYPoxWTyra9y5JYgjM9Yq8I9q%2F3vr6Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:06.5561736Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A06Z&sr=b&sp=r&sig=y5zfWA%2FYvNYwf%2F7TdTLydWCOWi0p%2Bgv1CM52QhzM8K4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:06.5565301Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A06Z&sr=b&sp=r&sig=aEBjkjddV%2BlkkD%2BIM1IoT1qbxrhe9k15vBQvbTtPInc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:06.5566163Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A06Z&sr=b&sp=r&sig=rQEEzNvBn8ffFJH5gzcs6GqaoA6%2B%2BmowNzpbgehI2hY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:06.5567016Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A06Z&se=2024-11-20T12%3A21%3A06Z&sr=c&sp=rl&sig=c9EhdrOmvzI1nAKmBr9y8jxzkojk%2FwtNi%2FTGsKTuKPQ%3D","expireDateTime":"2024-11-20T12:21:06.5567778Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '5010' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:03 GMT + - Wed, 20 Nov 2024 11:21:06 GMT mise-correlation-id: - - e1bba415-f1a2-4269-b09f-80b40dca61a4 + - f267f8ea-8389-4f7a-a834-aa277c282e3f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100902Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cnfa + - 20241120T112106Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005gv9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1629,31 +1791,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A08Z&sr=b&sp=r&sig=S%2Fs0ZVt9ELC%2FG96cs2ThsqjylgoQ2wXiC5ZwJ40i0Vs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:08.2549177Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A08Z&sr=b&sp=r&sig=9cB6CsYgx3GV%2FAOgROAUCGxGT3qAH65EKLWpUaY8Y48%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:08.2545713Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A08Z&sr=b&sp=r&sig=A66%2FEJujM7VDbo%2Fab%2BEq%2B3j3%2FppE8fv7V5UWv760rdE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:08.2550532Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A08Z&sr=b&sp=r&sig=0I%2FR%2FtHq85c8mOnev9PGzJP0B1XDXHMEZm2cWh6bLXQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:08.2551884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A08Z&sr=b&sp=r&sig=sF7WokPGMbecNgWKwDlX2q6hU%2B9985DO9qJABCR05Do%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:08.2553248Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A08Z&se=2024-11-06T11%3A09%3A08Z&sr=c&sp=rl&sig=kYAUvUwPhsH%2BaIk2fSHXgYk7c%2FMu5EGgqYZxTW7BoHg%3D","expireDateTime":"2024-11-06T11:09:08.2554555Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:03.815Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A11Z&sr=b&sp=r&sig=ThctFxa12dAUSySXQ4sGl0XY3QkDzMnA%2Bis7SJFE6i4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:11.6814407Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A11Z&sr=b&sp=r&sig=Xq3Mod9onjRL3zWCDvcSsvU8f3y%2BjNUv4Fj4xM1sEIQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:11.6810733Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A11Z&sr=b&sp=r&sig=Rpc2o06fvu5VXDkqDJQrFvcOlfl3Ld6PSVf9mKD4vUk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:11.681604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A11Z&sr=b&sp=r&sig=K2tnvsAgUe8oDiWRriKUojhqBB6tu1vHWc4OG82pQUw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:11.6817451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A11Z&sr=b&sp=r&sig=SgPR8wfd5%2BKNKxZtl%2Btj3FWjA0cmqZ4LsrKwgvu2%2F5A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:11.6818829Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A11Z&se=2024-11-20T12%3A21%3A11Z&sr=c&sp=rl&sig=Q2Yr6dKVtCg7lLxF6KYUM%2BBHvWQFgnHssnpm4XLoXZU%3D","expireDateTime":"2024-11-20T12:21:11.6820166Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4909' + - '4994' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:08 GMT + - Wed, 20 Nov 2024 11:21:11 GMT mise-correlation-id: - - d910b0d1-ec72-4ab5-865e-4ab4bac9bd4e + - 0a92135c-baf4-44ca-8eff-3976b58c89ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100908Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cp3t + - 20241120T112111Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005h07 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1671,31 +1834,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A13Z&sr=b&sp=r&sig=jsdh4q%2FEE4UEwRTYgUvFYgvAmjB%2B6mliFBZ6trLZN60%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:13.5465259Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A13Z&sr=b&sp=r&sig=lcAGIDCewldrsqma3b4I5Y4wjrMI8hfyzm7wXtj2Ntk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:13.5462097Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A13Z&sr=b&sp=r&sig=RIgHGOMya7dudrvqE1vKpCv3HsvRS%2BNK0mBpXxQNkiw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:13.5466428Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A13Z&sr=b&sp=r&sig=iz%2FGs3wh5I7Pfz2mUtnlmqjGIkl0lIgDxTkyiU%2FV3Kw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:13.546767Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A13Z&sr=b&sp=r&sig=TAZgSgFRuCObA%2BBu0xTOV5Zhwojb5%2Fo1X36A93v13sw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:13.5468741Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A13Z&se=2024-11-06T11%3A09%3A13Z&sr=c&sp=rl&sig=zEMkzlM8xAG3FCVj9wsGmqazK70toehBsWbLIxHswEY%3D","expireDateTime":"2024-11-06T11:09:13.5469922Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A16Z&sr=b&sp=r&sig=UJD99BMaolruuakjkYeXjmexGkn0Bmggu0ugL7P45qo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:16.7939565Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A16Z&sr=b&sp=r&sig=iyPo2hVIcihCuiWGcHRNKRqLwyiWJGxmUgsU2TXe3BE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:16.7935697Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A16Z&sr=b&sp=r&sig=TMgF5syISz2EzgdzBTidEsooWUDYC6ZX%2FtW5SUKlBXM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:16.7941331Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A16Z&sr=b&sp=r&sig=7dZ8yZrSkUUNokQWAg%2FBLH3ajMuJJjYtAE5XFQ7NOAY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:16.7943176Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A16Z&sr=b&sp=r&sig=GT%2FDkpDQTLsixI4B%2FXJKlDYjB%2Bhtv%2B6wBI6h%2FaWgMF0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:16.7944968Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A16Z&se=2024-11-20T12%3A21%3A16Z&sr=c&sp=rl&sig=bvrVSKfA9v7uCHDKVbxr1vF0v%2BUFdxLAQ0sZ%2BPhsHjU%3D","expireDateTime":"2024-11-20T12:21:16.794677Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4894' + - '5000' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:13 GMT + - Wed, 20 Nov 2024 11:21:16 GMT mise-correlation-id: - - cfa20691-a51f-428e-a4dc-6a1482cd6c5b + - bd2e4bf9-9da4-4919-81c3-d21e1f9a6c5a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100913Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cprf + - 20241120T112116Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005h78 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1713,31 +1877,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=M4QXBIVi9ea1wG3kzk4CJo5sBNQjB4pZH8VkgV%2FOCwo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.8451122Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=ITpYXvtUZwI4dISrBsm3Bj%2BgwOpB%2ByHtSN7TTnmkJoQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:18.8446813Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=KigmOhx1Z6%2FMhQZtWTcJYhfFZqnlAh9ygA01bCNRQvg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.8452393Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=7mRrcEu7nJnbTrkV9e0GX7qjV69Hd9HQ6TzY426Smhw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.845382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=N%2BHTlJWI8PJlDHUgUlOf%2BSyDp1mlGUg1%2FO7eEdy%2BG6Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.8455262Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A18Z&se=2024-11-06T11%3A09%3A18Z&sr=c&sp=rl&sig=3ppqlvijhscxWEDYJPY9i2iKKgDGJLiVW60khlcU13A%3D","expireDateTime":"2024-11-06T11:09:18.8456661Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A21Z&sr=b&sp=r&sig=Rnx9BWjH5a7FxPwtsc1SkI5lctUR54%2By9z9%2BHQcuX2E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:21.9171793Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A21Z&sr=b&sp=r&sig=rjWTiE1SZVNMZ25Zzf9NeOg5ASi5CifWl0MX%2FttPIlQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:21.9166871Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A21Z&sr=b&sp=r&sig=Osrg7zXcIQXVkAd8NHYFkQeOmkwMwphY5mFTWx2ogjU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:21.9173757Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A21Z&sr=b&sp=r&sig=zf3BwHzWNq0K1HSUBN98v3l2aPdGylyflXut%2BiC76Zc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:21.9175842Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A21Z&sr=b&sp=r&sig=ZYXVIhkxmV4yKXTy97w2Haj%2FoyZnUDrsnYApBZ7aiao%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:21.9178043Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A21Z&se=2024-11-20T12%3A21%3A21Z&sr=c&sp=rl&sig=yhcQQYtPSst8MVThBazEDCjfbbAzodU4aB%2B8N6LAg7Q%3D","expireDateTime":"2024-11-20T12:21:21.9180145Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4896' + - '4995' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:18 GMT + - Wed, 20 Nov 2024 11:21:21 GMT mise-correlation-id: - - e1d52ff4-082e-407d-97b9-a61a03666f74 + - c34f2728-52c3-4283-bc29-33ec7711cf08 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100918Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cqb1 + - 20241120T112121Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005hdv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1755,31 +1920,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A24Z&sr=b&sp=r&sig=Rc8Wvzm60Pb0qihmmnmzzvPph0qfSO2wjDmATp%2B%2F4Tk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:24.1384707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A24Z&sr=b&sp=r&sig=zmp5LKkA97Zi7FxOrLsuoF8AQ6wMg4TgRhHgeV1OXaQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:24.1380071Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A24Z&sr=b&sp=r&sig=E0Gafj73F1t0wTZnjCR0Ql3OAsom26BrZSRZzNStjV0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:24.1386452Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A24Z&sr=b&sp=r&sig=lCp0iv%2FbSw7iMcBTFRO%2BO8qYQaqdrm8g7mE10Vlw%2Bc0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:24.1388197Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A24Z&sr=b&sp=r&sig=Hkc3VOTEZsPDendwC5RKNKyAqyO6kRnUyN7EbuDZAWE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:24.1389957Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A24Z&se=2024-11-06T11%3A09%3A24Z&sr=c&sp=rl&sig=x1bAvks6vS9zbNAZXJqqUQcIFULACXwJC%2FBxegl6y78%3D","expireDateTime":"2024-11-06T11:09:24.1391672Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A27Z&sr=b&sp=r&sig=9MxZxL4VXIpopZ5BrmW3Qv9kHJkJF6Ez19SVS2gIR3M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:27.0418906Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A27Z&sr=b&sp=r&sig=Q7PWWKq5L6b1aN7SfjcFFXDzU7KEoKCyD8qimXQVhvQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:27.0415488Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A27Z&sr=b&sp=r&sig=CkjMwKkjf6OXdmDDYyzrT8uXFGxFCd%2FqBF5raj6wMPI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:27.0420325Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A27Z&sr=b&sp=r&sig=CEy%2FgYFvI%2F4js9EV%2Fq%2F3JeavBRymKLeaHO4xxyAvAzE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:27.0421749Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A27Z&sr=b&sp=r&sig=Lgs%2BbwrVFvZmg2AIohAWoI%2BLXjnDpcMd1B6dSPb60DM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:27.0423099Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A27Z&se=2024-11-20T12%3A21%3A27Z&sr=c&sp=rl&sig=nfFQYKB2oRzOQy8JjqqMYFg1O6CyXXcowlPC2XPgp00%3D","expireDateTime":"2024-11-20T12:21:27.0424466Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4893' + - '4997' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:24 GMT + - Wed, 20 Nov 2024 11:21:27 GMT mise-correlation-id: - - f7a7ac01-efdf-4eff-b15e-8a9c6515643c + - 733a3585-3e0d-4387-a244-8b9ae1ef30a6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100924Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001crw0 + - 20241120T112126Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005hn5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1797,31 +1963,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A29Z&sr=b&sp=r&sig=zlmkZ1wvA8F00NGvE%2FGZSRxsMqnfI%2BaKhZJ2JAyfkVk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:29.624687Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A29Z&sr=b&sp=r&sig=febxIzeOs%2B%2FAecGwW70VvhexlNh%2BtaYnmqPs1WX0Tss%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:29.6242454Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A29Z&sr=b&sp=r&sig=248epdMdZ3USnUqa0S9AfJRXSFu8r0jS1iXth2al2uQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:29.6248601Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A29Z&sr=b&sp=r&sig=tfBNCcW89%2BZGDvF1by5%2BR3hk2YiVN%2F%2FsxKB8uaq1Hck%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:29.6249619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A29Z&sr=b&sp=r&sig=VVesaXxca7CT2QjPRRenz91F4x8OGz5vTlnDBOWiiao%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:29.6251246Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A29Z&se=2024-11-06T11%3A09%3A29Z&sr=c&sp=rl&sig=r4SH2Z4mPWM7YgScyIUnxeVrq24rVjiD%2FOWGQ3MnGlE%3D","expireDateTime":"2024-11-06T11:09:29.6252759Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A32Z&sr=b&sp=r&sig=vPjx6xOyz3ntCNs%2B6DLfUCMFp7gigTaz%2FeMDVVwqv8g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:32.1690747Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A32Z&sr=b&sp=r&sig=LF%2Fbixz%2Bn0PSz4kxMAxXZXmrPxIEZsWVy%2FYEWKxgKfs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:32.1686142Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A32Z&sr=b&sp=r&sig=qLUYxNFPcW7gQ4PvhEMN%2FLmKzvE%2BlYdCXRk7G9hSr0g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:32.1692458Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A32Z&sr=b&sp=r&sig=ARpOyISTo41JQ3fZLbgbVImL%2FtBJ6kKcbeGI1UR43hg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:32.1694166Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A32Z&sr=b&sp=r&sig=0eRKwApNLpe9Bo87WKPwp3zA0RkPqzPC07JnXe0xsDE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:32.1695878Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A32Z&se=2024-11-20T12%3A21%3A32Z&sr=c&sp=rl&sig=G9yY0g3bPySW2vkYfX0%2FdzETqCDLo7gOlyI6zbGELZM%3D","expireDateTime":"2024-11-20T12:21:32.1697545Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4900' + - '5001' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:29 GMT + - Wed, 20 Nov 2024 11:21:32 GMT mise-correlation-id: - - c5728100-1ed3-49d4-a0d4-68dc8b60afed + - 53026bcd-68d4-41c3-9e40-4774e1c8a541 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100929Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001ct50 + - 20241120T112132Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005hv6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1839,31 +2006,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A35Z&sr=b&sp=r&sig=UX3ZuuArrkq%2FPMLwzUVKA3IvLI2XZkujSWmQ4nc32nI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:35.0094153Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A35Z&sr=b&sp=r&sig=i%2FpF0nIWfsxNZ54xFDmSr3pys2ogCc5VLrjlyls4SzQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:35.0088686Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A35Z&sr=b&sp=r&sig=O3CYd9bJI6UxTM5Zf%2B7stKjw8pCvAd36YjGluoUXsaY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:35.0096369Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A35Z&sr=b&sp=r&sig=KRFA3yTALWPPtR%2BpL7PDcCnFm48mqB085mhhhpKztdc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:35.0097734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A35Z&sr=b&sp=r&sig=szShAJuE0LsEuK53zLDQqbu6%2BK6G8t1lQ0pVSirJQ6s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:35.0099028Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A35Z&se=2024-11-06T11%3A09%3A35Z&sr=c&sp=rl&sig=wOcfiUw2ixY6mYIImDuzorKudqaFIrfobJxRexhOfxg%3D","expireDateTime":"2024-11-06T11:09:35.0100009Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A37Z&sr=b&sp=r&sig=dK0rzXleI%2FUSK9XFB1qEwd9NAAn0DgIlmJeRG2VXV%2Fo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:37.2913542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A37Z&sr=b&sp=r&sig=Czq3ijQF73fGquMxJUrlo41LAOILA%2FGAK56TcL84yVI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:37.291102Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A37Z&sr=b&sp=r&sig=%2Brd8bN%2B6NBlG0kdSbB6uOTBrtzAYiL7EEPuRHKBk7SA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:37.2914293Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A37Z&sr=b&sp=r&sig=JLweK3%2Ff2G%2BRLn4sXWLvioNKqA0cJ%2FkDXjRmeXQjzgs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:37.291503Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A37Z&sr=b&sp=r&sig=f12vrlkKvHFnDxmB2aXAPFeNCL1iKORN5CzrlgPEaGw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:37.2915756Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A37Z&se=2024-11-20T12%3A21%3A37Z&sr=c&sp=rl&sig=hH9o25Ns8DmPNLp8SSvkZ%2FS23iCAp7QEthhfG30xCXg%3D","expireDateTime":"2024-11-20T12:21:37.291647Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4891' + - '4998' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:35 GMT + - Wed, 20 Nov 2024 11:21:37 GMT mise-correlation-id: - - 95860519-d2fe-4249-95db-ce842d0e802a + - f1bbb189-027c-43e0-9352-d8e862e26c3c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100934Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001curx + - 20241120T112137Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005k30 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,31 +2049,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=ngzpa%2Fv5wsIPIgU0teYN%2FxXtpuPJycLa4mEXrF1QVyY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.7343135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=kueLj9%2FOAoIvTwDHJBRlwmLGI2GRlNdjxmkt7We2k20%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:40.7340118Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=7vlIWxkMUmP6iyqRnQhyUDAdOg%2F5OKpNHCZ69hnT8kU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.7344413Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=52S%2Fxt2zEgELJZUsa6dRyV2lUkgLNlbXT88YVvZhtqY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.734567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=MhUQTx%2FlYH0m3MAO3fr94zSdhcclyypW4UrFFOKfqwU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.7346926Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A40Z&se=2024-11-06T11%3A09%3A40Z&sr=c&sp=rl&sig=QjRCik%2B3rVkAnc4oCReD1Rns%2FzceT1kRse0hkCBKUuw%3D","expireDateTime":"2024-11-06T11:09:40.7348167Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A42Z&sr=b&sp=r&sig=Z2KfNJvPqYBV8EcY8b5Pblu81znLb1tiGM3sggBS6ak%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:42.4139034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A42Z&sr=b&sp=r&sig=HktYr9qrvVLonaQz6UkyihJt9AnOrM0%2F9k8aNKsONS4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:42.4133871Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A42Z&sr=b&sp=r&sig=QX3OK%2BeD3v%2FkvUdjlhIiyt8vBeZmE%2BdRUzwIRhI1Rm8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:42.414149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A42Z&sr=b&sp=r&sig=ErDM1MMvZHJmb702gBRvzCh%2FJIn0m7UxguKIbN1hr84%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:42.4142758Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A42Z&sr=b&sp=r&sig=xgSBD6te0nPj9RPcqlN1Vm4CL7NIJICUn7P1AwpXUsc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:42.414413Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A42Z&se=2024-11-20T12%3A21%3A42Z&sr=c&sp=rl&sig=%2F2uz5KJ%2BJc1TquBmRLQ4Kx%2Ftz7czgxRlij3yXMbz3oc%3D","expireDateTime":"2024-11-20T12:21:42.4145569Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4896' + - '4997' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:40 GMT + - Wed, 20 Nov 2024 11:21:42 GMT mise-correlation-id: - - 29dbd31e-c0c4-4083-b5c6-869ace076218 + - 0b75dec6-1558-4fa0-befa-0c38c1acea6f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100940Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cw5e + - 20241120T112142Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005k9a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1923,31 +2092,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A46Z&sr=b&sp=r&sig=GoVNlqv4WGNPkEvQHaQxf2p8dXNWAEeOIz5VjuKofqg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:46.2084838Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A46Z&sr=b&sp=r&sig=tY9wdG7zB%2FIEnMos1P2r56F7%2FPgUdCr2QwjAB3DaLGc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:46.2078994Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A46Z&sr=b&sp=r&sig=bwiI6vEdhhqXX24yfysY52fKLSFS9A4in0Bz3P1Qc1o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:46.2087763Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A46Z&sr=b&sp=r&sig=RcdlWR%2FWj8hviFMLL8VHv2GJmGUKLB4Ox2%2FkRNVAwKs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:46.2091043Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A46Z&sr=b&sp=r&sig=G3s7sgWuGVaO83pxMKoC28MWA%2F6k7esK%2Fg35h6ErMw0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:46.2093977Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A46Z&se=2024-11-06T11%3A09%3A46Z&sr=c&sp=rl&sig=%2FEs0kH9w582m6ZYQ4wTyDVpIYYuSVD4H205Z1HkyfAA%3D","expireDateTime":"2024-11-06T11:09:46.209678Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A47Z&sr=b&sp=r&sig=z1zjsJebfer3ak7nw99Qo%2B4v%2FXsvZsrqSKU%2Fssf8JGQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:47.535224Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A47Z&sr=b&sp=r&sig=mPffvIbQkwBaRch5KaWJHEFI8aELDoCRj8DztFmqRc4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:47.5348534Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A47Z&sr=b&sp=r&sig=oXNXxdM0u3BqSFrFWU%2B2y1wPqv61XnUl8IZsDtl2jYc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:47.5353235Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A47Z&sr=b&sp=r&sig=PPaN2LTRiTmNJBglmL0J8jz8kmGBBHH6ADlvLHKdUhI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:47.5354265Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A47Z&sr=b&sp=r&sig=cqLNNcTJsWluGH1ghoX%2FEjYzfr%2BDxJLCJZEwUo06TFI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:47.5355248Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A47Z&se=2024-11-20T12%3A21%3A47Z&sr=c&sp=rl&sig=I9UoqSle%2FEbEb94pdlG%2F45hKR8ZaM7k8W%2BU363aYPcE%3D","expireDateTime":"2024-11-20T12:21:47.5356223Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4894' + - '5000' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:46 GMT + - Wed, 20 Nov 2024 11:21:47 GMT mise-correlation-id: - - 1bd99903-82f5-4c65-b63c-3b9b8c436b87 + - 83faaaff-9f55-4421-aee6-eb8dd563843f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100946Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cwnz + - 20241120T112147Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005ke8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1965,31 +2135,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A51Z&sr=b&sp=r&sig=OFO6CArlQOKUJiiTZms%2Bv%2B2P3SBTChOPpGP2xJRyglE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:51.5154896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A51Z&sr=b&sp=r&sig=x366suzBeBWfbGCPRNfsv4XeRbTQqsY1VwC%2FtxqI08M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:51.5152776Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A51Z&sr=b&sp=r&sig=ox%2Fr4sPu4FFjX9NqBp30jFcRtMrB2okBERWrtrvZg98%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:51.5155893Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A51Z&sr=b&sp=r&sig=RYHcI%2BvEpy1lh0r9qXJHC%2FCznrB09ZtKZfIeNzWv6TU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:51.5156821Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A51Z&sr=b&sp=r&sig=jRqHMkqi3vx%2FHRrqKIQEa%2BHNspH%2B57DhenGo5aVDta4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:51.5157723Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A51Z&se=2024-11-06T11%3A09%3A51Z&sr=c&sp=rl&sig=if%2FVfU00pf5kkE8ge1v6TECjtGtQ91RBPMCDRChFaog%3D","expireDateTime":"2024-11-06T11:09:51.5158604Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=fZzRjCgtXR7ASElXtkW2i901ho6SaIemYMyzwWQqWBY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.6851009Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=INl3K3rn5HNKKPMLcjnfQLmIClyKJrtoEw70QOs1lUw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:52.6845655Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=nh70i3eWZwG%2BJlu319uIhCAfQv7KJZdOGhPTOdAJPh0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.6852733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=dBIvZnb%2FXRfnhQSJXS3AmjRy%2FKW6cjpc28oUQkzWCa4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.6854501Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=l%2BU2kUbv%2BeMoTuZDPqkDirInq1XXOKTm9bEjyUyvvTY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.6856368Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A52Z&se=2024-11-20T12%3A21%3A52Z&sr=c&sp=rl&sig=fLfwfEnOqbQ4DEOdwHnqDGT7S7mvrBWNebu5nd4nWnw%3D","expireDateTime":"2024-11-20T12:21:52.6858105Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '4993' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:51 GMT + - Wed, 20 Nov 2024 11:21:52 GMT mise-correlation-id: - - b83b5dda-d828-4089-befd-9762418313a9 + - 94082e75-1fee-47d9-82d5-c5cfce97d94e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100951Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cxm1 + - 20241120T112152Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005kme x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2007,31 +2178,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=yL8ReqwPTDLzeAQ0DkkvxM91AO6JEnqsjVJZ8lwsdeI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.8139008Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=tOSfYIiTEX2wDkBOMeEisooXOJm0nHI0RWpsu8edvO0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:56.8134266Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=F8jAhijCqxPxuoeKqknL%2BvCaXMQSjskGqzoQuBreWNk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.8141228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=xQo3MzyvBM9gU9xYRMMYwyxlXtn%2Fsa6gRkzpu8v6JdQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.8143174Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=8v%2B32v%2FPveFC%2FqUKuwl9jUABX2N7JzQbKLp0x6brQ3I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.8145103Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A56Z&se=2024-11-06T11%3A09%3A56Z&sr=c&sp=rl&sig=MuE2UqShgvXrRjBLPgiwBRZckbKU1aBenD%2BCeCu2Xzo%3D","expireDateTime":"2024-11-06T11:09:56.8147126Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=r2Eb4N8%2FFCjBGxXzrIBHncPhhFqtJnoc2FU0xuyuGoQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.809191Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=ZEfDeYzFldMyrH8WTaqtiUl0xJIKv2Ul0R1gCGGXPbc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:57.8085784Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=9GYZ8jNS6lF3Wq7ZwjVR%2BhmcjJox%2Fu%2FykKSWLr8f%2BwM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.8093589Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=YravOweqHLRxIu%2FFjxRqYbnywd06AIpdOg7f9Njehf8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.8095352Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=gT%2ByKsiYCQv5f8xsn0usXyCigpvJyrtrKRf5YrHL14s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.8097005Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A57Z&se=2024-11-20T12%3A21%3A57Z&sr=c&sp=rl&sig=JEWmCKmCmDfRHC0WvhWvPT04WB463o0MTyHylSuqkvs%3D","expireDateTime":"2024-11-20T12:21:57.809872Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4893' + - '4995' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:56 GMT + - Wed, 20 Nov 2024 11:21:57 GMT mise-correlation-id: - - 49d7decd-dd7d-486a-82cc-2ba622eff4d6 + - 3be95a13-3120-42d5-8b4c-5794c5875425 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100956Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cy95 + - 20241120T112157Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005kut x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2049,31 +2221,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A02Z&sr=b&sp=r&sig=zqH%2F%2FdNxmY6pYQKcuaw3rRVaRDtPHkMWqJQyOuhXSNw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:02.3439991Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A02Z&sr=b&sp=r&sig=cQRSbenVKkarv3%2B9e%2B7aQIKcvp3Q7Lm4FMsYlkkmXjM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:02.3437651Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A02Z&sr=b&sp=r&sig=U3g5P8nBPPzTpkJ09I4xILHw9qQ8Jhr5KeTVHQeYN6k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:02.3440614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A02Z&sr=b&sp=r&sig=ojqhxBEbR46e7rTDEGa4v4uxuQ84uYlwq5UQuERQECI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:02.3441271Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A02Z&sr=b&sp=r&sig=qraGodxKIFHTDywQfkJGQ5qjDi1RDGKe3MDH2yA37Dk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:02.3441973Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A02Z&se=2024-11-06T11%3A10%3A02Z&sr=c&sp=rl&sig=eHKNhwSPW1dTUOfHDb1xa4p65LDOzoBu9LySC%2Fp8mLk%3D","expireDateTime":"2024-11-06T11:10:02.3442634Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=QCqMH7%2FmsHQSZ56BxJBtwJ6Hs0QnCKywkI7W3DlgRCI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.9241872Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=wZ5m3fPfHmL5XnQT3FVJAjxEbr10DSri9q9OcoJ9CH8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:02.9239236Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=sAMiFJz%2FILiHjzRyehvauPNsuTTh61Jn4m%2Fy4cz%2B4Lo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.924282Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=smA%2BRSy0wjWfjh2ZvTedplo%2BNeN6NI%2BQ2uey7ulhKWM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.9243833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=njnVaiX61VEkjpcN11JkgOKf9tf4CjvakWRRXY8oyEI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.9244784Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A02Z&se=2024-11-20T12%3A22%3A02Z&sr=c&sp=rl&sig=7zy6M5KieNKUHN7IC7dOOobP0AKB9npmhHTWHQdCkMU%3D","expireDateTime":"2024-11-20T12:22:02.9245731Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4891' + - '4996' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:02 GMT + - Wed, 20 Nov 2024 11:22:02 GMT mise-correlation-id: - - 60d2d905-9f5d-49ec-9840-499cd6eec064 + - 07e3ea3c-9944-47ea-8fe8-2c3c81ceb67c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101002Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cyyw + - 20241120T112202Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005m07 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2091,31 +2264,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A08Z&sr=b&sp=r&sig=DfdWlYTRma0mxr8ygGMemNOW9fKj6zRqD4J3KExGwQ0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:08.1518405Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A08Z&sr=b&sp=r&sig=LGcicNmoz56qxzQ%2B3ofnQqia%2F6PtKWxpfrvM8FBH3o0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:08.1515541Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A08Z&sr=b&sp=r&sig=wFQ8QVJVqT%2FCZedtERR4nv2aDd7JzLicaydUEvYmVdo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:08.1519374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A08Z&sr=b&sp=r&sig=MU9qK7GT3g0w%2BaPnBTGoNdES3lVPc6ULL1yO%2FXF9E50%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:08.1520291Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A08Z&sr=b&sp=r&sig=UW1%2ByqbkUmtAS879rwB3QvJvuVJYIVy6uj4pDUgiycA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:08.1521285Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A08Z&se=2024-11-06T11%3A10%3A08Z&sr=c&sp=rl&sig=XItBeYsYE%2BqJbsu%2B%2FeUAjHR2hXJfov7LyG5G4y6U434%3D","expireDateTime":"2024-11-06T11:10:08.1522222Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A08Z&sr=b&sp=r&sig=FEepzpRR2tBksoyNdpfvlUP69HD5NStLGO0EbCQEa68%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:08.046649Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A08Z&sr=b&sp=r&sig=KokF5vKyoTdUkuQhaWLglLJabeAgxVVDf7BXXFhDhWU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:08.0463872Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A08Z&sr=b&sp=r&sig=eV1fT5IsXaP7mHMlimrdb61frN93iPNj67fmVe2wEPM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:08.0467397Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A08Z&sr=b&sp=r&sig=SJZSgAJGD0my027ANXXbyZPu8P%2FOcESJp0mXshOePrk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:08.0468293Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A08Z&sr=b&sp=r&sig=7WfPOWrTTwFKPPd8Ci5END%2BHVMYAx395%2BgVnYmAF3rE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:08.0469161Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A08Z&se=2024-11-20T12%3A22%3A08Z&sr=c&sp=rl&sig=0S9lyEOn8j7XRQeuoQ0RVd6R5XOeRsGNnFVWcnrOLEE%3D","expireDateTime":"2024-11-20T12:22:08.0470008Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4899' + - '4988' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:08 GMT + - Wed, 20 Nov 2024 11:22:08 GMT mise-correlation-id: - - 25a69cfa-ce0f-4d70-8fd9-fdceb35b9a5f + - 58c34fe0-54c4-4a21-ae56-af2607099c66 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101008Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d03d + - 20241120T112207Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005m4r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2133,31 +2307,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A13Z&sr=b&sp=r&sig=HUmC66LaAIrxbwk3YF%2B7HBcFw6pZAPrseaF3wljl7rQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:13.53155Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A13Z&sr=b&sp=r&sig=d8nmpoKvDHfR43weCKsdn1y1wH97Nre9DZVFkIs%2FVsI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:13.5310953Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A13Z&sr=b&sp=r&sig=vfPzcA637atiQZt4TrGu%2B5m%2FVzFm4oZ1D3%2BL4GH6A1g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:13.5316866Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A13Z&sr=b&sp=r&sig=uGZUHYAnPpxfK7LEEQb%2BISK799LKCpRQSTKm7Yc5ZgQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:13.5318321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A13Z&sr=b&sp=r&sig=xxUPTJlwlQxfVi%2FB0VEgpJ5RKk9sg1KVjG%2BuF6J9JVo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:13.5319691Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A13Z&se=2024-11-06T11%3A10%3A13Z&sr=c&sp=rl&sig=MYL8KRJBY30vWNI4uMpjkrPekm00QV8o46Cl9laNsj0%3D","expireDateTime":"2024-11-06T11:10:13.53211Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A13Z&sr=b&sp=r&sig=3l3xp8Qfy6LiOyk5nWvVcaRk69j5QHlAGfpjhtx6%2Fj8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:13.1587595Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A13Z&sr=b&sp=r&sig=vWHMb0x8V2kyJSLPnMvyQ7r%2B6vR%2FD8Yex7CrFh5PEG8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:13.1581453Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A13Z&sr=b&sp=r&sig=gYuBU%2F9SIhOj7HG4vL8JJloFljpSpvUNn9wmj2ieC2s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:13.1589742Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A13Z&sr=b&sp=r&sig=5brt9Fm6JjTb2i9nDdk1bsuw%2Bl%2BxW%2BBl8cCT34xt%2FEI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:13.159177Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A13Z&sr=b&sp=r&sig=NvKVEv%2Fm1rlAVCe%2FLEestCZJKHFq4oKVn66lqKbpwOk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:13.1593938Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A14Z&ske=2024-11-21T20%3A20%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A13Z&se=2024-11-20T12%3A22%3A13Z&sr=c&sp=rl&sig=lIVBEMCL4BXihfaop1K0IXhRqUC1VpPCMart%2FaOd3z8%3D","expireDateTime":"2024-11-20T12:22:13.1595974Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4893' + - '5004' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:13 GMT + - Wed, 20 Nov 2024 11:22:13 GMT mise-correlation-id: - - 2e544dd0-3ea4-4f81-9a1c-26e80f33185b + - 05a9a160-012c-4139-96d1-54e74e9ac143 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101013Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d0q4 + - 20241120T112213Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005m8u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2175,31 +2350,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=kfVe6qxmwEQMXpisBnoInT91MQZHjnKiIWkdsv%2BvzZw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.9559306Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=6uMmhQraWgFkYsTt6S5IcB5VNxsJ7DxDxre1qEN8pFw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:18.9554592Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=mnjMg0MKxn7MKdy0PsCN5bfrWaq0ebKgHR673Tt3ag8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.9561034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=OLN0KCnfN790a5e%2Fe8dc60LsyNjJVQHXYmasqI3E5%2FY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.9562794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=xhv6e5BtfcZNv9qj3jeZWxICig3tQaTAioWIm70ON78%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.9564511Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A18Z&se=2024-11-06T11%3A10%3A18Z&sr=c&sp=rl&sig=xv26QTFZnk9rQwtZebw29AcLsGUe%2BjkFsmrhxAF9PiM%3D","expireDateTime":"2024-11-06T11:10:18.9566465Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A18Z&sr=b&sp=r&sig=rjSLnA2QjuD9t5uJQ9QvVgoNQiwsn8D2qZXe%2FU%2BFzRw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:18.2753296Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A18Z&sr=b&sp=r&sig=8wN%2B6yqMtP1eTRZVjDa2qAsmaqrkrdBNLpP6w3zrkII%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:18.2750889Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A18Z&sr=b&sp=r&sig=5NboFsJi7LhE5PJcI6Mk927s9A5jmhNpOGAQ1pQhfEg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:18.2753955Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A18Z&sr=b&sp=r&sig=oU9zGhnBvCXzjliqfMGkaI0lbCN4ENkAVLaBd5%2Fk3qs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:18.2754579Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A18Z&sr=b&sp=r&sig=YGy6m10rVTUcRi69XaKYjVy1lPCQcdBrZ56GHbi%2BkRI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:18.2755206Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A18Z&se=2024-11-20T12%3A22%3A18Z&sr=c&sp=rl&sig=aHZlzUyKzGlpkkkbAexJueyaIp1axcGtoYkG3hZSOkU%3D","expireDateTime":"2024-11-20T12:22:18.2755804Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4889' + - '4993' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:19 GMT + - Wed, 20 Nov 2024 11:22:18 GMT mise-correlation-id: - - 9bf6ca8d-b86f-4ba4-ba2b-2cfff7761591 + - 1b6052e4-a075-49ea-b07b-8ed42e6f93c1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101018Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d20m + - 20241120T112218Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005md4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2217,31 +2393,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A24Z&sr=b&sp=r&sig=xQZ1vVvpZea%2Fkc8pJgkWhiNsPv7gA8tI1etlmtQGjzU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:24.425702Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A24Z&sr=b&sp=r&sig=IBYO4UtWMmal8VtRlig02yzVFtLYmY%2FUMTObiQcIqSg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:24.4252257Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A24Z&sr=b&sp=r&sig=taRJtAiupF%2BSvc%2B8rWixOiwGw1qpW4HVmTHWV5jxqlU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:24.4258802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A24Z&sr=b&sp=r&sig=rC3ZJ%2BmbekqMqYuQz283%2FQIaHUDgQFs%2BEvNNoBCmF5M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:24.4260701Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A24Z&sr=b&sp=r&sig=TmBhdTTsrXj15YW%2FrJrsgtoMqgJ%2FhmtZ9cTO60K5%2Bmc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:24.4262374Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A24Z&se=2024-11-06T11%3A10%3A24Z&sr=c&sp=rl&sig=2zV8jeUNHx4IxbYnGUrXF20Gowd4DJxbKL0nfJ8XAQE%3D","expireDateTime":"2024-11-06T11:10:24.426405Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A23Z&sr=b&sp=r&sig=%2FpbzERMU73r37LMgu0lqHx5jeGaLVxgSn6bb35Q61j8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:23.3978085Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A23Z&sr=b&sp=r&sig=Qif0yc64HlV0fXMLOuiX9JwmEzVnUldoFKtpFsWVQqk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:23.3975078Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A23Z&sr=b&sp=r&sig=fhDM6CdkC700tyNpjjMzSHvm31F%2BELDhn3qbR1vehFQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:23.3978986Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A23Z&sr=b&sp=r&sig=v2md11e6oSOEgDkwsrfpe2DPjFYwRH7ejJa%2FB722yUI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:23.3979986Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A23Z&sr=b&sp=r&sig=FjC0UJzbhHPAnIlqopuodkYZECPD7HjYygdhRKNg3hk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:23.3980866Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A14Z&ske=2024-11-20T18%3A19%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A23Z&se=2024-11-20T12%3A22%3A23Z&sr=c&sp=rl&sig=IRzBuCzOTsBGLRPGCliYFxJbqsr5bR646ezLkh%2Fgjls%3D","expireDateTime":"2024-11-20T12:22:23.3981725Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4899' + - '4991' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:24 GMT + - Wed, 20 Nov 2024 11:22:23 GMT mise-correlation-id: - - caa4084b-25de-486c-9450-2516ac906686 + - 7b96a6c8-d5e1-4064-8f04-94d60a90f9da strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101024Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d35z + - 20241120T112223Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005mk6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2259,31 +2436,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A29Z&sr=b&sp=r&sig=MVfxk9ZKfQKRQq240XB7ttOrPRqTXzfu0WpVGyWYi04%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:29.8826493Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A29Z&sr=b&sp=r&sig=p76QVOg6nt7%2Be2DK6K40R%2FGf3oS2jajELbhpnUoEJwc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:29.8823634Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A29Z&sr=b&sp=r&sig=NtThZDsgtlCodqNyEtB%2BRgRGCCMJLWy8P4rCLC%2FiwlY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:29.8827505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A29Z&sr=b&sp=r&sig=L5Ce1w29BrF7luz6utjnFoYMzERAZmsxuXfVR%2BEzhKA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:29.8828731Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A29Z&sr=b&sp=r&sig=WyXJ2K%2FiUV6EGB7cS9UvbKzkHkxGjAxPM2fED0g504o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:29.8830289Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A29Z&se=2024-11-06T11%3A10%3A29Z&sr=c&sp=rl&sig=DAf7JqAu34tRJH6XfO%2Bs7opXVOYPfaChfTcuvM7IWoI%3D","expireDateTime":"2024-11-06T11:10:29.8832079Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A28Z&sr=b&sp=r&sig=CrG3WYvW7akR7YQw4oTVqLnz%2F9bjMuEHqzLNRFc3Hms%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:28.5214384Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A28Z&sr=b&sp=r&sig=zM3qh1DGFG28WIjQnoQPDU1PYQco5eEQLoaNdgLBBnw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:28.5211692Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A28Z&sr=b&sp=r&sig=iJmrePsm23nI7FA1dOWh3QaFtGRGdI3C8arf%2FKM%2B82E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:28.5215268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A28Z&sr=b&sp=r&sig=taJijRgHpZWk%2FfOOHiLdtgNKLi80MMlP5mz8yiXleZQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:28.5216277Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A28Z&sr=b&sp=r&sig=YA5xUrV%2Bo9c%2FfMnK%2FM8YOr%2FKk1YiDxqwGkJYn2w%2FQ0c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:28.5217155Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A28Z&se=2024-11-20T12%3A22%3A28Z&sr=c&sp=rl&sig=lZYDlRPgDBsuRBD81nYBzqAmur2mWMM2luBRIOiqAVI%3D","expireDateTime":"2024-11-20T12:22:28.5218111Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4895' + - '5001' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:29 GMT + - Wed, 20 Nov 2024 11:22:28 GMT mise-correlation-id: - - f889d42d-6895-4d71-ae31-d46ec5a91cf8 + - eb691381-bbcb-4672-b20c-f8b5765a8cf8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101029Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d41g + - 20241120T112228Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005mr2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2301,31 +2479,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A35Z&sr=b&sp=r&sig=dKbPI3dB%2FO%2F6OAZB3UfZrzybn8gPiYt%2Fepdpexeo2y0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:35.2882898Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A35Z&sr=b&sp=r&sig=wJ0WYhqMx3UVESnl6UrpT7bBMxVvZUrxq%2B8SN2sEpiw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:35.2877394Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A35Z&sr=b&sp=r&sig=l7oZXrWb88U9rvto8xm4SyB2Piz5pMo0K6%2BdwklZ7j0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:35.2885121Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A35Z&sr=b&sp=r&sig=sXwYScjXcCwwhHFTZpWfsSvcx%2FzKFJ94StbD1cH9EVY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:35.2887173Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A35Z&sr=b&sp=r&sig=BCdJvuF2TJU7EqIuLE4OFzteZsslm4u0uZF%2BvjPKzvE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:35.2889382Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A35Z&se=2024-11-06T11%3A10%3A35Z&sr=c&sp=rl&sig=6bpGZ1qojNAxsbMCkLIQBDXxLFzVribEowE3e0x9sHY%3D","expireDateTime":"2024-11-06T11:10:35.2891538Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=gDcdM%2FJH2z4psa9MHIOQ6wCbHIU0ckcw7x4yG%2FGw860%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.6438751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=ThptJckiKEwD1OvesnKNwMPT7gOjODmIV%2FtrlmP2%2BYs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:33.643611Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=RTwmufI6Llho3uSuFwY9NSCEwR1PnKHTCjZuAG1NVXM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.6439732Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=QNhT%2FFM7keQHRwlF5AUuQ1Or8ItP8XxvG4R7u38JORg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.6440908Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=2R96Gz25beEK4HwSkvu0vv0lc9S6oTJSFRHkBcilaO0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.6441826Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A33Z&se=2024-11-20T12%3A22%3A33Z&sr=c&sp=rl&sig=Vzfj1hNkOy0w84E10vTg2ww6GGu%2BhCBo50AkoBODkKk%3D","expireDateTime":"2024-11-20T12:22:33.6442987Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4895' + - '4994' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:35 GMT + - Wed, 20 Nov 2024 11:22:33 GMT mise-correlation-id: - - 4ee32d12-916c-433f-b044-9c38889f9d84 + - 649f7400-2ffa-4446-81f8-f3d28298b54b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101035Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d50m + - 20241120T112233Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005mx6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2343,31 +2522,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A40Z&sr=b&sp=r&sig=joTw3ahZhBG6ho8%2Bng8C6DA1okih2fxGm1U1FjmyBZ0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:40.6328482Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A40Z&sr=b&sp=r&sig=JPDeVse6DJ7JdSmAzSg0YL5t0NAH7POJK2Hm0V00GP0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:40.6325631Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A40Z&sr=b&sp=r&sig=Ghs64EolwXBDjLNEgjLY48dccI%2FrrZhasu0gE1B1xno%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:40.6329481Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A40Z&sr=b&sp=r&sig=ERkp62THCMb%2BEluQ6rKgDrDm%2Br9tJk4RX9h1KnLzWUU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:40.633047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A40Z&sr=b&sp=r&sig=RQpyxedki%2BzVgST8TAMq6wIz9aDvAtIvdc1VhaKDnLo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:40.6331442Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A40Z&se=2024-11-06T11%3A10%3A40Z&sr=c&sp=rl&sig=%2BuSvPcURIFiuv0sInAFaHPb1qWEQPlaRrMIrtDrJ1Rg%3D","expireDateTime":"2024-11-06T11:10:40.6332415Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=3rM7TnRKnlyrrqHJq1m8ZsyN0T%2FcDnWjgdDJPCcaj%2Fg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.7688978Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=dTcdLY5mMHwnwjhyjsEj85eENfDpvtrmVcTeNNs83kw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:38.7685063Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=zyO7UJz200NxdGLemWdAcQqChW7PvX1KFuc47jtWwiM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.7690846Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=vwd7gVF0AcMFNcRF5JEBiNb0LB%2FRfQk3%2BTN%2BAj%2BeE8g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.7692917Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=mj8LTbUhznk%2Fb2VC2nvZzVGP7i0sSk9W082l74oANBQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.7694931Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A38Z&se=2024-11-20T12%3A22%3A38Z&sr=c&sp=rl&sig=UkOmmkNNOtdFBo%2B1s%2Frejq%2FvVdXs36CgkSQaYonHqt0%3D","expireDateTime":"2024-11-20T12:22:38.7696798Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4892' + - '5003' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:40 GMT + - Wed, 20 Nov 2024 11:22:38 GMT mise-correlation-id: - - 4b5210ae-9d86-4818-8fd6-97260543e495 + - 5fb58edb-97e9-42f5-985f-aaf6e1c4d737 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101040Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d64h + - 20241120T112238Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005n36 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2385,31 +2565,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=DOJikmcEzCL2ntmlJ%2FPCFEVec2lTtyLR4y8R%2FBtzNCc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.986802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=tRcbx3%2Bo9VX8a9E%2BRjGDhpyoj7NUOCzhac0rKUJ6mbQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:45.9864232Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=G9AqVMCrLUkVdFDjGr11M9KoQHUnDo%2FXy8NyYwdBy1Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.9869417Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=3uz%2FvNC5yzS9YPbkeRzwStzgk9MKQ6WsSSMhGuzkSLo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.9870791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=p7xCvaUYiajemX%2Bxq0zBp9wWC9lL%2BggDQojnjqAnv1Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.9872156Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A45Z&se=2024-11-06T11%3A10%3A45Z&sr=c&sp=rl&sig=rbPMKsxFVybcKKvKVbKFVY%2FecxK0sk64tgLGdvM4j3c%3D","expireDateTime":"2024-11-06T11:10:45.9873496Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=%2BPR3hIQ4wYo1YbWlX4%2BeL4Jmr%2BUUGDVVpJ9u6qxaopo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.889811Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=pM9ZoV07PRrQ6IHckdAbZZJrG9ug5qBJgi2kZTMsUVA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:43.889547Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=ugc2Xm%2BMTt6x1bk5g3I0qWzHj2aeMwcNUf01GbGJ32k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.8899094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=qP2y%2BcwB7tNLKqpjFIYHVmD9P7MOUVd%2FWdu10rbkGIs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.890014Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=vF4VC2CHcCNs5fq7248a3pioREBOg54D0LXDD0lD2vA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.8901068Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A43Z&se=2024-11-20T12%3A22%3A43Z&sr=c&sp=rl&sig=QpwHQDn1VxMoRTxpq03xj7wfNWWcfd6n26a4FlsUFCk%3D","expireDateTime":"2024-11-20T12:22:43.8902016Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4898' + - '4992' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:46 GMT + - Wed, 20 Nov 2024 11:22:43 GMT mise-correlation-id: - - d9c015ff-609b-404b-94bb-689251e0a53e + - 5366e00a-caad-4ee8-abac-a68e1cfcc67d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101045Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d70w + - 20241120T112243Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005n78 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2427,31 +2608,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A51Z&sr=b&sp=r&sig=eKENZWf%2Fk2f%2BMLv0QFCqMlKaBfwXm3Ceh8pXhGxEsCk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:51.2759716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A51Z&sr=b&sp=r&sig=O4dzunerTIZ%2Fw9SluhZXRmTZ8HSWzivsnTX7WFCWssI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:51.275547Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A51Z&sr=b&sp=r&sig=9%2B1J%2FS%2Fh3da%2BCYWqb2LVbEu7VBbrguA2C41BWwqcz54%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:51.2760964Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A51Z&sr=b&sp=r&sig=34PaOrnsAM98Ey%2F0R7%2FdiE2yHwi2YzzWUO9si9OLyXs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:51.2762445Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A51Z&sr=b&sp=r&sig=ynU7v9HH6A6AumYLgrt4JzARU1gtSv3fmjvnxnVRpbw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:51.2763858Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A51Z&se=2024-11-06T11%3A10%3A51Z&sr=c&sp=rl&sig=3jJwgQ2biV3d%2Fdt%2FsCqycxGTDTrqOtUcStxMLAmMGHs%3D","expireDateTime":"2024-11-06T11:10:51.2765272Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A49Z&sr=b&sp=r&sig=dNhy8pM5i8%2FALz9l3RyloBX%2Bl87vJi4FZgYrADQ0lak%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:49.0134606Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A49Z&sr=b&sp=r&sig=K1lTGwc4XwljmqrB1A2zXuZPKgpk23MyCW%2B7J8DeSpU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:49.0130301Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A49Z&sr=b&sp=r&sig=cN%2BSZZzYd5kMPJpWIvr3Ljo32JCtQ5MlUwap4hGu0mQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:49.0136522Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A49Z&sr=b&sp=r&sig=IEmiyBSIfA944w8JiJq%2FzgTQerU1keIXEY1hYFA1kb4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:49.013832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A49Z&sr=b&sp=r&sig=KspkpZB973pK2frU5xc3%2FsSAx%2Fcl0oJwG4I8QItVIAY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:49.0140081Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A30Z&ske=2024-11-20T18%3A19%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A49Z&se=2024-11-20T12%3A22%3A49Z&sr=c&sp=rl&sig=0W2N%2By6mWRyw7cO4gmrm9c0QHHR6umhsewsDC8%2F5phU%3D","expireDateTime":"2024-11-20T12:22:49.0141832Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4902' + - '5000' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:51 GMT + - Wed, 20 Nov 2024 11:22:49 GMT mise-correlation-id: - - 158df71b-dc3b-45c9-9357-bff104d154e1 + - d10a938d-a739-4256-8066-d61480b41116 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101051Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d7w1 + - 20241120T112248Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005nbk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2469,31 +2651,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=kZyFQjLZIMg5SM2xZwo0CcZEhJP%2FtDHMhJc0vHR9Pzc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.5796395Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=LXxCtISIIgfZBQPn1pddHPPI9u5amKlrW66V5nUGVeE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:56.5792389Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=OTCqQYl04G4EdqAO1DL8vDBo1iohGdg2SxSEiarSo8E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.5799316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=OqK7%2Bhhpe8zNWCbflqj2rnTIaSCZ0KvgUBMPM3ikZw0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.5800604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=8favY2dx9hg68je%2F29bzl%2BokBeJvaL2PIQjylMcCWAA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.5802323Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A56Z&se=2024-11-06T11%3A10%3A56Z&sr=c&sp=rl&sig=ZIeknvWJzqAClE%2FctgmoPQ%2BFBxZAHVH3JTO42BWWTQM%3D","expireDateTime":"2024-11-06T11:10:56.5804099Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A54Z&sr=b&sp=r&sig=ebJlc%2BJYnl6q3pvx2wWcvc9qd%2FyKGj1IMPgR2flO1ss%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:54.1294605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A54Z&sr=b&sp=r&sig=bq3qZ6pyYHmWHbgXrGRn0wEKUJ7wm18Qq%2FlNKwmf%2Fx8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:54.1291061Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A54Z&sr=b&sp=r&sig=jtWghhQukPbN9F4xIU6p03%2BWkPwVuTKL8ptBCdjvecQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:54.1295923Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A54Z&sr=b&sp=r&sig=1nftLyG%2BOaTThFMtCUCXG0gz1Ktpi5TTCcd2v9TgPes%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:54.1297261Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A54Z&sr=b&sp=r&sig=nK8LyHJf2af4Mp7HUM45NQaNeEoec4SZoniT0D9XzeE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:54.1298606Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A54Z&se=2024-11-20T12%3A22%3A54Z&sr=c&sp=rl&sig=DJV1nrKh5Hlu9CtUirMgKjUGtxi%2Bupf8yD%2FG0SEMgEo%3D","expireDateTime":"2024-11-20T12:22:54.1299897Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:20:15.201Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:05.589Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4893' + - '4999' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:56 GMT + - Wed, 20 Nov 2024 11:22:54 GMT mise-correlation-id: - - 89c4ce38-055d-44dc-a22b-f4bf4c13a8d9 + - 0e1fa3b7-23cb-4c96-bf11-0635abca9093 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101056Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d8pg + - 20241120T112254Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005nfr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2511,32 +2694,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=Zcsb6bp%2Bfc4Q4ocvm117SCigSaIuwwnlCB6EZBtqk5E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.8754915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=uE%2BisoQYcTQKVsnzzf1w4aUPGkhXIGAAREoGR%2BAoiEo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:01.8747642Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=LsuAzAdH8zWwrYXmmaDk5zcT%2BJvVJM5xgaIBVztt3ss%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.8758051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=SY5QuHqXF1xK%2BZZ3aFunLrzbrsloyvQBYiYTJCPUz%2Fc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.8761098Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=zbH%2F5tc%2BEQ8GtaOH%2BhIc8yugXe3qMjFvoux2eKc0uu0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.8764314Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A01Z&se=2024-11-06T11%3A11%3A01Z&sr=c&sp=rl&sig=7nNZZVab%2B9x3ONzacK7Z7keLVVVe3r28KB163O9pkXM%3D","expireDateTime":"2024-11-06T11:11:01.8768084Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:19.082Z","endDateTime":"2024-11-06T10:10:59.827Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:00.886Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A59Z&sr=b&sp=r&sig=7l0tgpV%2Bd1mm2xbU%2BBqLmwKJ1yBO4Ird73faN69I2mo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:59.2541327Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A59Z&sr=b&sp=r&sig=l6iCn133DEcclPs0DfuEKWTlcyMDPNyrlnzWS6z%2By7Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:59.2536362Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A59Z&sr=b&sp=r&sig=IyvHOoLGCQG5hZl%2B8WC4fSJ5fULNVAc8GB0bCtDDKuI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:59.2543213Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A59Z&sr=b&sp=r&sig=N7yO%2F3f8teVuuBGMUH62%2FYE9GOD1vfe77HZfqCJPd%2BE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:59.2544771Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A59Z&sr=b&sp=r&sig=Y7o5KLxc%2BX%2FZwxJ%2BoheRXHkoR4Cl3Fq4AYe9lj7uZMo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:59.2546786Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A13Z&ske=2024-11-20T18%3A19%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A59Z&se=2024-11-20T12%3A22%3A59Z&sr=c&sp=rl&sig=02gPmd%2BOyD%2BTa1gNQU5fF%2FKwTV7Ppa%2BiFzVJJWl4WMw%3D","expireDateTime":"2024-11-20T12:22:59.2548555Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-11-20T11:20:15.201Z","endDateTime":"2024-11-20T11:22:56.894Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:57.518Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5029' + - '5139' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:01 GMT + - Wed, 20 Nov 2024 11:22:59 GMT mise-correlation-id: - - 9223b2e6-dab2-4e1e-8c1a-d02c45d26072 + - aaf4509e-d75c-44b8-acda-732efe22b8e8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101101Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d9aa + - 20241120T112259Z-r16f5dbf676nqsbrhC1YVRkv6g00000003p0000000005np4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2554,23 +2738,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:06:22.9269478Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:22.9269478Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:18:39.7397546Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:39.7397546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:05 GMT + - Wed, 20 Nov 2024 11:22:59 GMT etag: - - '"fa005927-0000-0200-0000-672b3fb70000"' + - '"9703da00-0000-0200-0000-673dc5aa0000"' expires: - '-1' pragma: @@ -2586,7 +2770,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2F83CD21A8B4439CBF1559B2BCA8E926 Ref B: MAA201060514037 Ref C: 2024-11-06T10:11:04Z' + - 'Ref A: 1D9CA73814674744BDD92BD92097D984 Ref B: CO6AA3150217031 Ref C: 2024-11-20T11:22:59Z' status: code: 200 message: OK @@ -2600,32 +2784,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=list-test-case + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=list-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A07Z&sr=b&sp=r&sig=kX63RNSaAB6Pmzk8P9zLjBEfs77W2idlByzzkJSB1rU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:07.9368221Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A07Z&sr=b&sp=r&sig=yfnL7CglS61BvM%2BhP5QcO3Tsw1wyWDYcyfB0I4EjTN0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:07.9364086Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A07Z&sr=b&sp=r&sig=%2FQjrApNISOZHR9fRUF%2BT3Y3Su0QrfPFtfsqLEokybp4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:07.9371468Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A07Z&sr=b&sp=r&sig=o2iyFnGWTqJJqX6X9S1FHkJAHU9ah0j6Eh8P%2BzXMLA4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:07.9373428Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A07Z&sr=b&sp=r&sig=KbFFZUadzWOZ8dP1r64gDzXB5Tn%2FZ6%2FzN30fo5d6gkE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:07.9375297Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A07Z&se=2024-11-06T11%3A11%3A07Z&sr=c&sp=rl&sig=%2FsisVsLxh6mAv2S%2F17%2FvoWiszaAlh2yOVHzjxW02yBw%3D","expireDateTime":"2024-11-06T11:11:07.9377732Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:19.082Z","endDateTime":"2024-11-06T10:10:59.827Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:00.886Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A00Z&sr=b&sp=r&sig=NIyf2lBX7mM%2FMvwq29yajYn9FyMdN0ZR%2BHTtQcEIc8Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:00.0714819Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A00Z&sr=b&sp=r&sig=TDAJIGYPkWtW2kW4HZ%2FQwERs4eLO7lZ3kXuXx7rx2Ec%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:00.0711926Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A00Z&sr=b&sp=r&sig=4ePZsZIZb8fZECkDxvuOzJlsYBdVjaZ1fbfg3S9qoAg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:00.0715709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A00Z&sr=b&sp=r&sig=091YGFEctFTyfjJN8vsVvh7NzJEjKJiclu0TR5CdjJw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:00.07166Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A00Z&sr=b&sp=r&sig=lZquwcMPqKmXNxnRdJEzkD%2F0gnxOKm2BMa%2BPQdMeN%2BI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:00.0717475Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A08Z&ske=2024-11-21T01%3A20%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A00Z&se=2024-11-20T12%3A23%3A00Z&sr=c&sp=rl&sig=Pg7%2FoqDOY%2BSficzU%2Fn2dVgijgVqvridVh5HkpS7JE0c%3D","expireDateTime":"2024-11-20T12:23:00.07184Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-11-20T11:20:15.201Z","endDateTime":"2024-11-20T11:22:56.894Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:57.518Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5039' + - '5137' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:08 GMT + - Wed, 20 Nov 2024 11:23:00 GMT mise-correlation-id: - - f490b69b-1b20-477d-a22a-9be946ce8c25 + - ab8c03a2-a291-4d00-babe-dcff865bc49d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101107Z-18557d4f7b8cdlk7hC1SGEb0x8000000050000000000ua88 + - 20241120T112259Z-17b7777dc45pfqdbhC1CO1st9s0000000w7g000000003emg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2643,23 +2828,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:06:22.9269478Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:22.9269478Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:18:39.7397546Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:18:39.7397546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:11 GMT + - Wed, 20 Nov 2024 11:23:00 GMT etag: - - '"fa005927-0000-0200-0000-672b3fb70000"' + - '"9703da00-0000-0200-0000-673dc5aa0000"' expires: - '-1' pragma: @@ -2675,7 +2860,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D9DF5F2CEDB64C67855A0C6C7F34736B Ref B: MAA201060516037 Ref C: 2024-11-06T10:11:10Z' + - 'Ref A: 71499B6B418945E68CC6CFB2DFC3FDB6 Ref B: CO6AA3150218035 Ref C: 2024-11-20T11:23:00Z' status: code: 200 message: OK @@ -2689,33 +2874,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=list-test-case + uri: https://f0e75f2c-6c9e-4416-ac97-1b46d8a05616.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=list-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=GRXx89GhDayg8G%2Bq1ET9BrPRR4PcFAbgLwhEHCfWChM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2752446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=xvNiobKAUYN0tRRxslaSz5PCBQq9HVku6gqIgTRhcIY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:15.2747746Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=4fMF5Cc87R76LLrSeCBOf6Y8svbw%2BiLEJ%2FOmTN35ARw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2753366Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=cjA2n5j2JRgSVzKBEO636a8Rxwhzya2ujxSw8HWI4x4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2754256Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=AQO7phAnXDepdCqDnITyXMXCb2DZpz%2BZ20fpx07hyyo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2755142Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/9fee8a32-0d64-4f9a-b0a6-bf7547376825_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=CkVk3OphfYv6MDgD6qg3hOQD3epdUSo40uduhUWdo0I%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2755979Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/9fee8a32-0d64-4f9a-b0a6-bf7547376825_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=KlAlDTIjt74Ta%2BS7TaPZVi%2BFINYg4OYwPevf4WJJOVM%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2756861Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A15Z&se=2024-11-06T11%3A11%3A15Z&sr=c&sp=rl&sig=jZWSym8ghYvrEDyJNPTgIzqTG3J3wrRgKQ%2BMUcknk2g%3D","expireDateTime":"2024-11-06T11:11:15.2757721Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:19.082Z","endDateTime":"2024-11-06T10:10:59.827Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:10.025Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"916649c0-bf7d-4d3c-9eec-0d72973f191c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ccdee3a3-40fb-4fab-82b7-66500f175993":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f87ba7f2-3e8a-4aa6-ac31-560ebd8ae5bb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/84d005f3-ee2f-47fc-8de2-954b25d80635?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A00Z&sr=b&sp=r&sig=sd%2FDVG1KHngCoLOGn73QO6f8SdTd%2FKNFgsuDQDfA2C0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:00.9537261Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/20b9b2ce-0244-4ccf-aaa0-6e9317e129df?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A00Z&sr=b&sp=r&sig=ndxZMarnK332UiIYMT3bf1r9lW1eenDWSubBzKHEYdM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:00.9532862Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/bf5ffea0-40a0-4547-a83a-f9741d3d408e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A00Z&sr=b&sp=r&sig=QW0O52TJM1ZUCn%2BtSebKj6So2TpNN5LXBvzVJuc9pag%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:00.953879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/2809b887-1efc-4b5b-b428-3482225611f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A00Z&sr=b&sp=r&sig=IExYEZkP7CyIRTxnEDGerPIw2SPGBTakufVM16JxT9s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:00.9540271Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/37b45f32-8690-4c19-b4d1-aa728dc2f062/4960037f-678b-4ced-8542-e9c457a58ae3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A00Z&sr=b&sp=r&sig=vDU95mjgS8D4fzTB4oO%2FD%2BcdmI0EFdRB1tVc%2F9fnGpw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:00.9542279Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zja66zhmksdma16ispt9wc3t.z16.blob.storage.azure.net/a53f2018-875a-4d66-a55c-31f9c2a3a1ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A20Z&ske=2024-11-20T18%3A19%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A00Z&se=2024-11-20T12%3A23%3A00Z&sr=c&sp=rl&sig=FnWNx2VRtPsQkvBbgDXQOXnGmecpiZfs7tpVeqtTszY%3D","expireDateTime":"2024-11-20T12:23:00.9543471Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-11-20T11:20:15.201Z","endDateTime":"2024-11-20T11:22:56.894Z","executedDateTime":"2024-11-20T11:20:14.446Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-20T11:20:14.745Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:57.518Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6247' + - '5134' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:15 GMT + - Wed, 20 Nov 2024 11:23:00 GMT mise-correlation-id: - - 135125c4-39e2-4472-a230-f5f62a212767 + - 7826e20e-868a-4032-a11a-f1a03680fb15 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101114Z-18557d4f7b8r8cpzhC1SGEvan8000000056000000000a5b8 + - 20241120T112300Z-17b7777dc45b4878hC1CO13uc00000000w700000000045bh x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_metrics.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_metrics.yaml index 9a08b708bea..7fa289594e3 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_metrics.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_metrics.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:23.902207Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:23.902207Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:09 GMT + - Wed, 20 Nov 2024 11:19:55 GMT etag: - - '"fa00791c-0000-0200-0000-672b3f0b0000"' + - '"97032001-0000-0200-0000-673dc5d00000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 11C95415811043DFA2577D26A57C0245 Ref B: MAA201060514047 Ref C: 2024-11-06T10:04:09Z' + - 'Ref A: D7D861231E4B4755949FB71E602634B3 Ref B: CO6AA3150219025 Ref C: 2024-11-20T11:19:55Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier metric-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:04:12 GMT + - Wed, 20 Nov 2024 11:19:55 GMT mise-correlation-id: - - 1e8bc174-fada-481c-8465-82afeee0b517 + - 8bb4c5c3-67a7-497e-9c7f-712841f36e42 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100412Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vs2q + - 20241120T111955Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa00000000019rg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "120"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"06c57e02-6c25-4c0d-be5a-48f2fe3730b7": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "e0639177-ccf9-4582-8ca6-fda71739fc98": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "1f2579fe-e31b-4ce3-ba64-7edbe671b549": + "78"}, "49ffee0e-1b6a-452b-b371-0493988a724a": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "350933cf-f957-42b9-a1e7-e6f1b7be5262": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '818' + - '866' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:04:13.26Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:13.26Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:19:56.225Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:19:56.225Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1046' + - '1150' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:13 GMT + - Wed, 20 Nov 2024 11:19:56 GMT location: - - https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-03-01-preview + - https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-03-01-preview mise-correlation-id: - - a07597fd-077d-49d4-9084-d5633869eb64 + - 0013ffae-35a9-4c11-ada9-22cbd512d010 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100412Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vs5h + - 20241120T111956Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa00000000019s0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:13 GMT + - Wed, 20 Nov 2024 11:19:56 GMT mise-correlation-id: - - 43947781-9e8e-4574-b820-fd7759c40be3 + - dd5d5c65-b500-44e4-b0ca-1889300d6378 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100413Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vs8e + - 20241120T111956Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa00000000019sh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,17 +207,18 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-06T17%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A14Z&sr=b&sp=r&sig=hjYZfLghOgCVnxa7VfbZoR%2FvHoumrjHGcq0mpbkRFq0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:14:14.1370645Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A56Z&sr=b&sp=r&sig=89rDpzzBw2oXtClMWPWrf1eeawQAVZ%2FlhdqYzGVTG8Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:29:56.6794271Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -221,15 +226,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:14 GMT + - Wed, 20 Nov 2024 11:19:56 GMT location: - - https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - cbf1cce4-d7b6-46ee-8536-2540cb8d4c36 + - acd07612-af92-4a36-b479-45c9f76c2d5a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100413Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vsad + - 20241120T111956Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa00000000019ss x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,17 +252,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-06T17%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A14Z&sr=b&sp=r&sig=hjYZfLghOgCVnxa7VfbZoR%2FvHoumrjHGcq0mpbkRFq0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:14:14.4824328Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A56Z&sr=b&sp=r&sig=89rDpzzBw2oXtClMWPWrf1eeawQAVZ%2FlhdqYzGVTG8Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:29:56.8092998Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -265,13 +271,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:14 GMT + - Wed, 20 Nov 2024 11:19:56 GMT mise-correlation-id: - - 4155b2a7-6fde-4bfe-8649-cdcf5291bd0d + - 68141e98-d6c6-4c17-a307-701a4d8df3e3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100414Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vsca + - 20241120T111956Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa00000000019t5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,17 +306,18 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A14Z&sr=b&sp=r&sig=eBSWI0wR89EHMLH2qGRk5m8evnGXHNFXfmuhoKZWk94%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:14.9958556Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A57Z&sr=b&sp=r&sig=4AQ0GjJW8VRRX73vCt4MCZa5wzGqCafLI1DrvE39Xz4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:57.9137696Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -318,15 +325,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:15 GMT + - Wed, 20 Nov 2024 11:19:57 GMT location: - - https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 054f72d3-555e-40c8-951d-31ed8cda8d50 + - 646d07da-d28e-4669-ace6-6cb7d2da463e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100414Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vsdx + - 20241120T111956Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa00000000019tb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,17 +351,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A15Z&sr=b&sp=r&sig=GuVJEQhWF8ubBAJ8sxxv8tpnWGETCEaO6ee%2FibZT%2Fl8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:15.3251533Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A29%3A59Z&sr=b&sp=r&sig=4Y8bScBuQNG8XoIEWMqsaj%2F%2BM3Fwtwj7tYnv37ObdjM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:29:59.6546908Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -362,13 +370,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:15 GMT + - Wed, 20 Nov 2024 11:19:59 GMT mise-correlation-id: - - 1484c1ba-281f-425b-b837-2cce0acb09a1 + - f15340b7-c633-4327-acb5-e0a5827db7ef strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100415Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vsgt + - 20241120T111957Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa00000000019uz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A20Z&sr=b&sp=r&sig=TCOqEASvUARZpZ9f43vDIpXZ9bZ2b837zEXLIrGX5fQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:20.6676614Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A04Z&ske=2024-11-20T18%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A04Z&sr=b&sp=r&sig=gTqIPdIiS3ZQuTLsXUAaIa%2Fqy%2BFFqbyk51CavbhnjFE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:04.8073265Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:20 GMT + - Wed, 20 Nov 2024 11:20:04 GMT mise-correlation-id: - - 4f0a85ff-eb38-4e7c-be2e-8afa7c9b0ecb + - 58e1ad61-bd53-47b1-ad27-77f82f15010b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100420Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vt5r + - 20241120T112004Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001ac8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A25Z&sr=b&sp=r&sig=34MgwNQ963wWOFNvF0aO9eRHTop8duswYEfHfOKqc9w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:25.9857804Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A09Z&sr=b&sp=r&sig=fSApBrgwrBYF%2B0va6YfjL5zySosjV1NpM5dx6VfvFp4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:09.9591036Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:26 GMT + - Wed, 20 Nov 2024 11:20:09 GMT mise-correlation-id: - - 4e952915-53ef-4f59-9482-f34953e8248e + - dabe9ea1-c320-48fc-86d8-baf2120f5997 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100425Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vu27 + - 20241120T112009Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001arp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-06T17%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A31Z&sr=b&sp=r&sig=UgbNcG%2Ba1AWsqfd5Kp%2FKx2IZp2XDayQ2f09RH5hjC%2B8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:31.2836086Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A15Z&sr=b&sp=r&sig=EijyIreHGQ1USa2htPKDna%2FJtvme6oCxuwvkf8riX8s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:15.0663459Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:31 GMT + - Wed, 20 Nov 2024 11:20:15 GMT mise-correlation-id: - - bed53583-1277-4ed8-88d1-30a70c1a128a + - ef9d8da7-e423-4ee1-ac25-b30bb28bf7f8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100431Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vuvg + - 20241120T112014Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001b12 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,31 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-06T17%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A36Z&sr=b&sp=r&sig=gIhzj%2FWhhR3C0b9dUJpx8anYBBt0hj1aG13e8PVjl20%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:36.5752328Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A21Z&sr=b&sp=r&sig=T0PZ4Ax1tutUq0375zWmEnxKDgp4B%2FGG5feuXDpYm%2Bg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:21.107265Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:36 GMT + - Wed, 20 Nov 2024 11:20:21 GMT mise-correlation-id: - - bb56f133-77f1-4346-b7d1-7f5eb1fb296c + - ddf816f4-b7a5-4127-a574-e5443dabbb2c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100436Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vvhh + - 20241120T112020Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001baf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -554,17 +566,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A41Z&sr=b&sp=r&sig=xgobI59ZbdQPUAlxrSOWb%2FilX0D2Iv2MRTlnVbLd0%2FM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:41.8659551Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A26Z&sr=b&sp=r&sig=ONwaJNB70iVhw%2BL%2BDzqz6zFuUOiwcZt46mws1t4CZcQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:26.2153859Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -572,13 +585,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:41 GMT + - Wed, 20 Nov 2024 11:20:26 GMT mise-correlation-id: - - 8f218b6e-59a1-4bcc-97f6-96055121feb1 + - d8578091-a818-4928-8565-edc64cd63a63 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100441Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vw6r + - 20241120T112026Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001bnt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,33 +701,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A42Z&sr=b&sp=r&sig=EcICtOYLcLMlifs3D49XceoCqGUjLE6Zwi3tnJaxXiQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:42.3678764Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A26Z&sr=b&sp=r&sig=bUig2O1YqbToQ%2FXFmxKNfzn6%2FSIeyN84UKS42WQU4Mc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:26.4895548Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:42 GMT + - Wed, 20 Nov 2024 11:20:26 GMT location: - - https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - e09f66bf-ba9e-4f93-9574-1a172d5f5f76 + - 5e452293-e398-4af7-8543-dd467ad7d5bc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100442Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vw8f + - 20241120T112026Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001bnu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +746,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A42Z&sr=b&sp=r&sig=tqXfQzFEp%2BzAEmxEQZEFvY%2FldKbeL1lAtVAhhNn%2FpU8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:42.6667232Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A26Z&sr=b&sp=r&sig=%2FccfpmWuWHjFYTFN3dwW7cmwFdv2bRYfdsCOWQj4f%2Fg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:26.5904991Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '562' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:42 GMT + - Wed, 20 Nov 2024 11:20:26 GMT mise-correlation-id: - - 7d1af087-5925-4d69-b98b-f4071bfe4d03 + - c66ada57-2b3b-4c39-8e8b-3ae5a02d7542 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100442Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vwah + - 20241120T112026Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001bp5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,17 +789,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A47Z&sr=b&sp=r&sig=YIQH1Ym6AjBuI4JRE4ZRwRYjSDcjoU%2Boz3emyl9qAj0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:47.9529534Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A04Z&ske=2024-11-20T18%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A31Z&sr=b&sp=r&sig=BPwyGwRaYebPWIfj3Zauiycrr6JM4qgTo%2Bh8tOEQ8GQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:31.6897078Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -792,13 +808,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:48 GMT + - Wed, 20 Nov 2024 11:20:31 GMT mise-correlation-id: - - e7d57dbb-514e-42dc-bd95-44a77834f00d + - d23cdef4-5645-4198-ae6e-3b964cd82ca1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100447Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vx9s + - 20241120T112031Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001c0a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A53Z&sr=b&sp=r&sig=75aor0Tft8EDV2FgNT5sWwvW9OR9bBLCbrv%2BUvjStFk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:53.2568899Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A36Z&sr=b&sp=r&sig=2Fui8uqQkHJLCUCm64%2FhD%2BGBYflpAdXGufbwjoy4Dag%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:36.8075183Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:53 GMT + - Wed, 20 Nov 2024 11:20:36 GMT mise-correlation-id: - - 4e2e45bb-d83c-46e5-8ef8-0b75f824369b + - 719309a3-2c65-49cb-8b06-b4a95e87381c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100453Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vy2s + - 20241120T112036Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001c84 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A41Z&ske=2024-11-06T17%3A04%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A58Z&sr=b&sp=r&sig=uR5%2BfR3XK37NCKiknRjy%2BMlFlgNq5VOM6F392vAetSo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:58.5417573Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A41Z&sr=b&sp=r&sig=gELb81OfEcKPbkdepaqtkFND695hIkpikGxUTfFr2w8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:41.9036971Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:04:58 GMT + - Wed, 20 Nov 2024 11:20:41 GMT mise-correlation-id: - - 13913d91-480f-4854-ae3b-bf540767be07 + - cfe19334-068c-4812-b5e6-d29898255244 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100458Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vyx8 + - 20241120T112041Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001cgb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A41Z&ske=2024-11-06T17%3A04%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A15%3A03Z&sr=b&sp=r&sig=cFMzvt%2BiQ4RDZKyiWS0yOacQ6w26cVEeOvpYL3bwgFY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:15:03.8741859Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A47Z&sr=b&sp=r&sig=BZ%2FN1Om6l1fgw%2BvcAZ0BBrzGHFw4KbFkLSRVX69eU48%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:47.017591Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:04 GMT + - Wed, 20 Nov 2024 11:20:47 GMT mise-correlation-id: - - 9b5114d4-31d8-492c-801c-1053a58331e4 + - c89808c9-f428-4f22-94f4-b6c14a89c437 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100503Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vzm7 + - 20241120T112046Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001ctw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +961,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A15%3A09Z&sr=b&sp=r&sig=nhT2KmfJeLfpSU9qhAm0ZBOcUjni3FJH3Z572%2BfFGsg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:15:09.6027563Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A52Z&sr=b&sp=r&sig=lTrwdpAMeOcJg0g%2B%2F%2FqJQ8B33w21UBv2DD0%2BW%2FS6pSg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:52.1166332Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:09 GMT + - Wed, 20 Nov 2024 11:20:52 GMT mise-correlation-id: - - 784408e6-ba37-4896-83f1-3e6b51394809 + - 98af9a85-27b2-4644-84a4-a1e2d15137a6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100509Z-1556595cbbcdp6k8hC1BOM684400000006g000000000w0ax + - 20241120T112052Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001d3r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,31 +1004,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A15%3A14Z&sr=b&sp=r&sig=uoSLQIsIb6ha7%2BvWs9QelK5lU%2F8RVSl908UhzentGTE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:15:14.8859862Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A57Z&sr=b&sp=r&sig=4MrkD2QsMETqFO%2BfE8nbSI19CCJ4hIrWvKkyxn6Agxg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:57.2243105Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:14 GMT + - Wed, 20 Nov 2024 11:20:57 GMT mise-correlation-id: - - 394c0658-1324-41d8-8df7-ce69c407b420 + - e9907b75-5887-4d58-8006-9bd990293485 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100514Z-1556595cbbcdp6k8hC1BOM684400000006g000000000w0zr + - 20241120T112057Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001dc8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1026,32 +1047,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A15Z&sr=b&sp=r&sig=%2BNwHaQuiuYTnS00gb%2Fg4b%2B1QyTryAPytN8WsIxc5sdg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:15.1774846Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A15Z&sr=b&sp=r&sig=hmBKihunCCE1CAnQC4C40qzn8%2BwdW5m6eQ9BiK2XVgk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:15.1780781Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A15Z&sr=b&sp=r&sig=Qe9nqu7ARB8tLw5hQy9dVXPnA3XdGxmvb%2B2ykBBxa3c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:15.1782675Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:04:13.26Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:14.848Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A57Z&sr=b&sp=r&sig=W8m%2FnSL08MywOFyvpdvWLPFpWI9xxT7aJUzkxps%2BUcY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:57.4145543Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A57Z&sr=b&sp=r&sig=luMULH1DCcM1k0Di2tSl3evEz2tgcph26r8qehyc3%2BM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:57.4183738Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A57Z&sr=b&sp=r&sig=LqybALRWKmWO7ofbYXyhXOEqsIqMQ%2Fj17p9g6yxVgb0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:57.4194978Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:19:56.225Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:55.41Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2771' + - '2871' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:15 GMT + - Wed, 20 Nov 2024 11:20:57 GMT mise-correlation-id: - - c03b18e1-47e8-4b01-af5d-6046b3c4e2f9 + - 0f8e5ce8-05e6-4731-aa29-5d8d2708260b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100515Z-1556595cbbcdp6k8hC1BOM684400000006g000000000w112 + - 20241120T112057Z-17b7777dc45d8sqjhC1CO1mpgg0000000wa0000000001dce x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1069,23 +1091,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:23.902207Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:23.902207Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:17 GMT + - Wed, 20 Nov 2024 11:20:57 GMT etag: - - '"fa00791c-0000-0200-0000-672b3f0b0000"' + - '"97032001-0000-0200-0000-673dc5d00000"' expires: - '-1' pragma: @@ -1101,7 +1123,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 791FFBCC26224119BB6E85EDC8DCD066 Ref B: MAA201060513045 Ref C: 2024-11-06T10:05:16Z' + - 'Ref A: E9EE28FEFDCA4F2F928D0CC09FA63DAE Ref B: CO6AA3150220045 Ref C: 2024-11-20T11:20:57Z' status: code: 200 message: OK @@ -1115,32 +1137,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=HUY69oUVDYOYKG3OBye6ahwTu08xnN6wxR4%2FDr7Jjfg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:19.553463Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=9y6%2F6L8p7Dcrph9pCevJJJLVcRolMzgDDEwe46QcFdo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.5537335Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=tVqPBRpRbXOz1X3X0m3W16SpD5oL2FTvJKhREmC0PLM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.5538527Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:04:13.26Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:14.848Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A58Z&sr=b&sp=r&sig=lr48S331VtcA1sQr7mxZNKP4O0zBvHGNMbQY78E%2BVwQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:20:58.3860486Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A58Z&sr=b&sp=r&sig=vqeEcLldCg37BBfs85RXVEoa4wTgIxCpYOPlOJE3KfU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:20:58.3864882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A20%3A58Z&sr=b&sp=r&sig=zJS3X61PWufoNWRLgDVNCxq0Yz%2FFOqGc2le5b%2B2f%2BsU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:20:58.3867147Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:19:56.225Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:55.41Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2776' + - '2883' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:19 GMT + - Wed, 20 Nov 2024 11:20:58 GMT mise-correlation-id: - - 8565128f-a083-4f49-8010-4ec34946b369 + - 9d54b436-1d31-4429-8a2f-fa5590e0557f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100519Z-184f6b5dbd8lzl5phC1MAAgw8g00000005sg00000000ccue + - 20241120T112058Z-1789fbbbd78flwl6hC1PDXd5ac0000000gs0000000005rq8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1158,23 +1181,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:23.902207Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:23.902207Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:21 GMT + - Wed, 20 Nov 2024 11:20:58 GMT etag: - - '"fa00791c-0000-0200-0000-672b3f0b0000"' + - '"97032001-0000-0200-0000-673dc5d00000"' expires: - '-1' pragma: @@ -1190,7 +1213,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 12A0B0EB838C44F1BC1796911A995BB6 Ref B: MAA201060515035 Ref C: 2024-11-06T10:05:21Z' + - 'Ref A: 020E072E56254D349E412EE1168B27FE Ref B: CO6AA3150220021 Ref C: 2024-11-20T11:20:58Z' status: code: 200 message: OK @@ -1204,30 +1227,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with given name \"metric-test-run-case\".","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:05:24 GMT + - Wed, 20 Nov 2024 11:20:59 GMT mise-correlation-id: - - d504b7cc-817a-4c79-9763-b9a162f7e05a + - 1d8558b7-5b0e-43c7-9132-889b08aa9836 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100523Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bapk + - 20241120T112058Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000014z1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1251,31 +1275,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=TcZFdGdexQaTgDaKdugj1GGIBAfWSGZzL%2FZDcg9ZAmM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.2819721Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=AxtuMoXXU8rFu2T7b0NrP5wApPIVWA5%2B0o4JuO%2Fn1Qw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:25.2817037Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=QzBn8EH8MLLslVt%2BpLrYuSgivjX6emBJlKfxpVTj8dw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.2820388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=5h8dwmV5cHtfodIv%2BgDv01Uv%2FuiUZ8aXsvaOnQMccT0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.282104Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=WyI4%2FpV55QBEtR9NtQbbNE3fJsALT%2FRKFqz5vyYrDQk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.2821665Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A25Z&se=2024-11-06T11%3A05%3A25Z&sr=c&sp=rl&sig=UirfO%2BAM0ycCwKjqaF3fgA%2FfkpJ4a%2FNC%2B%2Fm8%2B%2BDD90Y%3D","expireDateTime":"2024-11-06T11:05:25.282235Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.05Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=YldIxAdPhH2P3ZQQUgnQkyFyu6wKCBUT9d1ll6Xw5KA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.4270851Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=AMLuw6xKskMddAnTW2NCOL%2FA34o3LWiAXwaoEEsHc6E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:00.4267643Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=gdZRlP7UXD3FhilkoIrVKSFnnTip8vRUsEUHa630FgM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.4272323Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=iaxhaNgHHuE2Jym0JZ3VB1r14I%2F10ItZstwxWFabKs4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.4273693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=IQWT8LmLby0VRpRT7Gwu3tFpxKV3FsrtpwBxIBL%2FODU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.4275079Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A00Z&se=2024-11-20T12%3A21%3A00Z&sr=c&sp=rl&sig=JN2NL515x%2FcQR46H2HZOf%2BPYbpBFybnPeIstblb31N0%3D","expireDateTime":"2024-11-20T12:21:00.4276638Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.416Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4875' + - '4961' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:25 GMT + - Wed, 20 Nov 2024 11:21:00 GMT location: - - https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2022-11-01 + - https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2022-11-01 mise-correlation-id: - - d7b7c847-eeb5-4916-af52-aafb7966189b + - f4f1ba3f-2e9c-4a28-9286-1556fa96678a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100524Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000baqh + - 20241120T112059Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000014ze x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1293,31 +1318,118 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=HhTF0fHl20jDOqqkSGQFOc8%2FIz6Efn%2FK2X6l64zM3IM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.7768131Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=t0d6z156kORvxKiqT%2FUK2DtPs4zZkm2mrR4EN8oR73Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:00.7763532Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=IYMcNF5gFTWzEU5bmItSbIKSDQVOJuTC7LZSmYpwXpA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.7769637Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=S755m0gZjOp4Be0n1t09RXjJLo6ajkUQvl7eDuuk9No%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.7771179Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A00Z&sr=b&sp=r&sig=bRHzG2jRBqAzw54AU0v8lGEfZyePyWzIRj6c8WSTqh0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:00.7772706Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A00Z&se=2024-11-20T12%3A21%3A00Z&sr=c&sp=rl&sig=CdME3trfIVxC8D8UWSVLc%2FHYQ6jsOIKDc3EbfKj5sz8%3D","expireDateTime":"2024-11-20T12:21:00.7773942Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"NOTSTARTED","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.563Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '5004' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:21:00 GMT + mise-correlation-id: + - bf99b7ea-8a27-4f18-b50c-3d87cf7495d9 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112100Z-1846dc7bb4d86bswhC1YVRhm3s00000003y000000000150t + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=8UGlaqeLI8Xz1f1qGXTqAub8SNhcQKSKve6ohDbh3g0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:05.9034098Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=B0CZ%2FfYQcm3ytxQ3EiBMBFygQ0Zsa3dD2sWXoq6wD9U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:05.9031183Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=g5IxTVJRSy%2BJ3B231Mm9t6zxGLE3gIsKILTuHJ3MTmQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:05.9035042Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=3qePfjIzyLrv9HDOaBMS%2FiEufvdW%2BBVp3F86M8hsZdw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:05.9036005Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=%2BrIKjXealthVdHUqpiiH%2F93R76G%2BvfinFXB879SPx%2B4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:05.9037076Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A05Z&se=2024-11-20T12%3A21%3A05Z&sr=c&sp=rl&sig=KFtTITBVG3QspulAzljhwHoWBjBSeebQ%2FahA2mwFDJQ%3D","expireDateTime":"2024-11-20T12:21:05.9038008Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.793Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '5016' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:21:05 GMT + mise-correlation-id: + - a9c63348-1eaa-44af-bfdd-85cb85e5078d + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112105Z-1846dc7bb4d86bswhC1YVRhm3s00000003y000000000153v + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=pT7HkEiUwMm7e1%2FGZ1fqSGGKXLDtfv8fyH1Tdf9Xnxw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.7627015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=d1w38SI%2BozIi9qR9fRSlRlPhpxHG9adarGRFak3sOOA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:25.7625223Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=cBIajPd%2FY4j1e48vKHt1F4r%2FihxTOeCFQhrhavtp1zs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.7627452Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=LqnWE7wLRARAfBYtaHK1uQ%2BPTdg0Ox0%2BD4y4DNKKG4I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.7627874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=3zQIgNNbseqKXNMl2wHx94Nn1rJWamFFjNfwh8szyf4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.7628309Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A25Z&se=2024-11-06T11%3A05%3A25Z&sr=c&sp=rl&sig=z4sAN4c2jR6IW0YeSCNX6uSNXJrbSCeQpHD93%2F75TH4%3D","expireDateTime":"2024-11-06T11:05:25.7628723Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A11Z&sr=b&sp=r&sig=rXcYp%2F2Poti9NPqy8CFZBL2%2Fw1vOy2avbeEZG94Sf8A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:11.0259838Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A11Z&sr=b&sp=r&sig=bZm%2F7PGlIwzMyk8D1ab2%2FJA7m17726A7x6o4ihEVGSk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:11.0255179Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A11Z&sr=b&sp=r&sig=zc4vVmdXPd6P%2FOe%2FAmFlSKUUhYfnJQDPKLfLVFn7jVM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:11.0261729Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A11Z&sr=b&sp=r&sig=DNhi1Mie%2BG1G5ilDZKvNall7yTK6SjW87GJZnotYWtU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:11.0263465Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A11Z&sr=b&sp=r&sig=MMe8MTsfq7eBKkxMmjGoIlaCZEj9IWPaNR%2Bh459UhqM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:11.0265178Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A11Z&se=2024-11-20T12%3A21%3A11Z&sr=c&sp=rl&sig=TIe1pGs071WxqYzTcvk0eboJG5ATgIeBx5o6jy2%2BLsQ%3D","expireDateTime":"2024-11-20T12:21:11.0266892Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.793Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4909' + - '5016' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:25 GMT + - Wed, 20 Nov 2024 11:21:11 GMT mise-correlation-id: - - 27a6df8c-7321-471d-ab4a-3cd21f581342 + - 7449a6a4-6669-4600-9c35-48d97353e303 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100525Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000barv + - 20241120T112110Z-1846dc7bb4d86bswhC1YVRhm3s00000003y000000000157n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1335,31 +1447,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A31Z&sr=b&sp=r&sig=%2BtdSeoVd43HF%2FE4%2FddQIYyn8CXSxY0vT0RKH85mS91A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:31.1214694Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A31Z&sr=b&sp=r&sig=22PETdueXdJvPZzgMf1rGzGKBW97EymN7uYlss9CiKc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:31.1211893Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A31Z&sr=b&sp=r&sig=AmdCWUwJj3PxR%2F70z7fH8B3NYfdcam%2FVzjMovTdk%2Bl8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:31.1215586Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A31Z&sr=b&sp=r&sig=8eHptc%2BwPGA70OieBgDpZyETN61D4mOsR9z%2BwR6poKI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:31.1216473Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A31Z&sr=b&sp=r&sig=CIgfBQL63KJvywpoL9BpJkLfA4QtgpqCTFUj7ZEpxKo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:31.1217386Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A31Z&se=2024-11-06T11%3A05%3A31Z&sr=c&sp=rl&sig=0HRl4t9P3KbAVyWso%2FvGrSgO23HAERRcIaTtQjir3vE%3D","expireDateTime":"2024-11-06T11:05:31.1218236Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A16Z&sr=b&sp=r&sig=gtiRhGxMmW5Z2R8D8Q1gl4hN18eZjzSY59ekQoKiUC8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:16.1681731Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A16Z&sr=b&sp=r&sig=MwmRafW6iP4P0ooWmzRSbjE2Js93pvQIgAjrPEiAgj0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:16.1679884Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A16Z&sr=b&sp=r&sig=Zhr%2Foo2CWYTdADhip2WioeGEEyEd7xdCYWzrU%2FreZuU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:16.1682359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A16Z&sr=b&sp=r&sig=%2B4hqWqEGabRCixEi7ynaEh3gUT19%2BllkZNpnFxla5d0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:16.1683037Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A16Z&sr=b&sp=r&sig=QYlJx5whtoFCJ9TXEioR1uKgfNZXMrRl7fdyB99VZYs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:16.1683764Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A16Z&se=2024-11-20T12%3A21%3A16Z&sr=c&sp=rl&sig=tg033AvP%2FH1YONvxsrEXdVkpr3HlHvr5Gw%2Fkp9f%2F8go%3D","expireDateTime":"2024-11-20T12:21:16.1684408Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.793Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4913' + - '5012' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:31 GMT + - Wed, 20 Nov 2024 11:21:16 GMT mise-correlation-id: - - ce19f556-66bb-4baf-88ec-cf4a7221e305 + - b92418d6-8779-4af3-988b-c27d9413ba47 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100530Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bay8 + - 20241120T112116Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000015b6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1377,31 +1490,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A36Z&sr=b&sp=r&sig=nkstebLc8R7hW0OYaGQT59x%2BmSLMWkNYTPtlA2mBtrw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:36.6121089Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A36Z&sr=b&sp=r&sig=YXYFg7yo0ndwG1ruRoSd4I4Iw0%2FNtKp5P6s7zKJHqig%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:36.6115752Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A36Z&sr=b&sp=r&sig=W8X9Fb6aBBlf3RKbpoR3rd%2BaUvQuN4aL63COAsp4vGI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:36.6122388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A36Z&sr=b&sp=r&sig=w01eTLsmRH%2FBJgi2XhzFp21fM%2B%2BUrQCLa8VYhk3I3Uw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:36.6123511Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A36Z&sr=b&sp=r&sig=qCj4p7eW4HHd7u2Exqo9hUj6swq3n%2BdUFVBpO43QDDc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:36.6124507Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A36Z&se=2024-11-06T11%3A05%3A36Z&sr=c&sp=rl&sig=Iq6lfFqD6z88zqCG7LsrrtCIIa7L6pWxclzFHTvsqJk%3D","expireDateTime":"2024-11-06T11:05:36.612556Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A21Z&sr=b&sp=r&sig=6DQVZIVG9DSWOZvK1tGETAGCfFplkppDd5UWtbCAPxw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:21.3038513Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A21Z&sr=b&sp=r&sig=JK93lr46S6YDVhLF9oshr4v6nqk1LpIK8NBRXB1Ant8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:21.3035205Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A21Z&sr=b&sp=r&sig=AskQPzNAx1532s1CUyMQe20n2FtBu%2F%2B21AIxIXNoXcI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:21.3039982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A21Z&sr=b&sp=r&sig=pqRur4qR1qpdc2Y6suLIFWLrmiBHAG3n6v7b7gb2f4c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:21.3041379Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A21Z&sr=b&sp=r&sig=DCPrrZ%2BtcX1qsfvX7Mo3yiPTy3xfXr66uK7fZSSik3U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:21.3042759Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A21Z&se=2024-11-20T12%3A21%3A21Z&sr=c&sp=rl&sig=YE4R00F16RJpLRtsrvrnZjyJr9TMNcIwwr4KB977rs4%3D","expireDateTime":"2024-11-20T12:21:21.3044312Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.793Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4908' + - '5004' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:36 GMT + - Wed, 20 Nov 2024 11:21:21 GMT mise-correlation-id: - - 69b6664c-152e-4f28-96dd-3e19a54d2033 + - 9186fe5b-2c94-4dc9-975b-604e617f0416 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100536Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bb5z + - 20241120T112121Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000015ff x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1419,31 +1533,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A41Z&sr=b&sp=r&sig=rbfhyL%2FxsZkXohO%2BfhNrnVqTzZp9ZzAZk7SVt2MOkic%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:41.9624335Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A41Z&sr=b&sp=r&sig=0uodVoKsyDi56SnpvR7%2FlTulM18L9Pe5%2B7kDuq%2BR%2F9M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:41.9617925Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A41Z&sr=b&sp=r&sig=ua7nyuSb%2F8jyqL3UOpMbDwckVW3%2Bdz89W2DEYqlTvG0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:41.9626484Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A41Z&sr=b&sp=r&sig=FH1uiEfY%2BVcFQ7tMvoPTebgzs7VlFYrxKzY1p3Pbt98%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:41.962867Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A41Z&sr=b&sp=r&sig=L10ohY8gCexTXV9y54sZmNMCv8pPxIoB9JeZMBS1vtw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:41.9629996Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A41Z&se=2024-11-06T11%3A05%3A41Z&sr=c&sp=rl&sig=jJmI01RLOpPCGmPF%2BztGsKAWDHa7GvsyxbfrQ3pwivg%3D","expireDateTime":"2024-11-06T11:05:41.9632299Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A26Z&sr=b&sp=r&sig=1HfV0LulhSBvKYaMGz0GKNOfuzRKWiNeeLSh%2BjXnxv4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:26.4294946Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A26Z&sr=b&sp=r&sig=oduiQU4sbn9v0VeNaDN43iw%2FfAAvhnD6gLZSDMj1LBk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:26.4292003Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A26Z&sr=b&sp=r&sig=fvHyUrXpa%2Bjo5vggqsHNiTXM9Lm1qPhowK1cKbVi7EQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:26.4296341Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A26Z&sr=b&sp=r&sig=zQB7jOmktXrpYf%2FplCi9ZCDK71pBytspL0foOLYOZLQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:26.429777Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A26Z&sr=b&sp=r&sig=4seM0eXqbyqTjZA4zCbwFyipkcP4j8peaI8jcnubuo8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:26.4299176Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A26Z&se=2024-11-20T12%3A21%3A26Z&sr=c&sp=rl&sig=qy153Z9l5DM0ZpCB38Pw%2BT3%2BlQwKDtztFaMjhy8Y3kI%3D","expireDateTime":"2024-11-20T12:21:26.4300582Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.793Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4914' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:42 GMT + - Wed, 20 Nov 2024 11:21:26 GMT mise-correlation-id: - - 78c347ba-11ec-4dc4-8533-b95bb13b6ae2 + - 14bb36b1-c4eb-489e-abd8-8e868622172a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100541Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bbc2 + - 20241120T112126Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000015m3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1461,31 +1576,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A47Z&sr=b&sp=r&sig=9aS6a4o1rOct042YqgkhMqshiBYLZkh1KInZChwZvX0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:47.2858056Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A47Z&sr=b&sp=r&sig=%2B7oO7%2FEzWRuh8%2B%2BAWnE1W%2Fpkm5tbIT5Hzhjx9awzVNM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:47.2854064Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A47Z&sr=b&sp=r&sig=JD1LsH6fUyYSNIXtmh65%2FE11x%2F5UTTg6at5ylRksPgc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:47.2859487Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A47Z&sr=b&sp=r&sig=YkAY%2BpHhtvBk%2FMqWQYIEP59tx7mAbhl96v4f%2BEkjrSE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:47.2860951Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A47Z&sr=b&sp=r&sig=4pn%2B23BLRCug6usWWx6T7Fxr3YZoO6qkgbqfexhzCA8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:47.2863451Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A47Z&se=2024-11-06T11%3A05%3A47Z&sr=c&sp=rl&sig=1B3Z7Br09VWQcUw80AlaCsGcx2y5rj7A38gE0SWpxUc%3D","expireDateTime":"2024-11-06T11:05:47.286544Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A31Z&sr=b&sp=r&sig=R4RFpAqxJD32yGhMUQn1N4Oi1NQBCx%2BUMBZq8bW2bok%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:31.5488031Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A31Z&sr=b&sp=r&sig=FO2v0r16Ph9s6fw2uJDh5itSzbyxEz7kDcV%2Byr5VaFw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:31.5485222Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A31Z&sr=b&sp=r&sig=rp6392b98WaJbwXFpitUjiIzf10ibL1s59SmLUEXT10%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:31.5488924Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A31Z&sr=b&sp=r&sig=fuzOTkn8ElSk3stsNFezk8Ok6hrBfXXycBGBLluZNYM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:31.5489946Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A31Z&sr=b&sp=r&sig=gtMrbNSyCxCz0MOmA08DvUIu%2BGzx78MpR4ZyDAbdFIU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:31.5491159Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A31Z&se=2024-11-20T12%3A21%3A31Z&sr=c&sp=rl&sig=zpWyf5i0zIA3bTg4NSf6%2F4mIOg0%2F3ExUF6THY9KNKfo%3D","expireDateTime":"2024-11-20T12:21:31.5492822Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.793Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4916' + - '5008' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:47 GMT + - Wed, 20 Nov 2024 11:21:31 GMT mise-correlation-id: - - 654e7a58-f049-4b18-91c6-a3a74ffc7f4f + - b22b283f-aeaf-4615-8d7a-8372a5b681e5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100547Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bbhb + - 20241120T112131Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000015ru x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1503,31 +1619,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A52Z&sr=b&sp=r&sig=19R4vqdLoPLt98CbajunUKDnXy5%2BAGVtp%2FJmLkU3U6U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:52.601857Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A52Z&sr=b&sp=r&sig=AwMn%2FMwwv5lAw6dQ37VPJeb6huY59fNC29sGKRlcXes%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:52.6014539Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A52Z&sr=b&sp=r&sig=SRvps4A0RjP9hTZIjc%2FfzkdMw7wn3j6ipsi1KwvguA8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:52.6020363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A52Z&sr=b&sp=r&sig=ZHH4vqTa%2F1k8U2bN2hUCDfeor28ffUFubyCOe2S85hg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:52.6022213Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A52Z&sr=b&sp=r&sig=9Tez0z0OgX9IOCNKAUlljASTzp9o1%2BW%2FIb29hSZ0Q3Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:52.6024639Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A52Z&se=2024-11-06T11%3A05%3A52Z&sr=c&sp=rl&sig=q7UxKbABwBl1EBI87C1ZO3NNhogvEyQ9fGve1EhOPAk%3D","expireDateTime":"2024-11-06T11:05:52.6026431Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=uGWHx%2B7B7%2F5c6gIgaT8spCCmJg0iUHpa0eE%2BYDPMZ4E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.6736081Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=OsC8XzNhBVlrCPIbeAM%2FCON%2BWb5FbtwQCt%2BP4ydpQRw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:36.6733405Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=h1ki%2Bk7o92l5PGdofg3d2HW2Uhs5RsZVnB0W2x81LtA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.6737119Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=Ap6eCCsO6hbsSS9J6OWL9SE2Q8DqXAnglSqzq2Ag6Fo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.6738358Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=soxW%2Bm5Hy%2FO3R%2BVTYYe3Sk4G6CWcXdn5LPkml6fU8zc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.6739633Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A36Z&se=2024-11-20T12%3A21%3A36Z&sr=c&sp=rl&sig=FyhB9ilcG0OrRZhUDCUhBojfuMN%2Fa0HL%2FX%2BpaD4RW9w%3D","expireDateTime":"2024-11-20T12:21:36.6740828Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.793Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4908' + - '5024' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:52 GMT + - Wed, 20 Nov 2024 11:21:36 GMT mise-correlation-id: - - 588fd6ce-821f-4797-8531-49aa81ad3cd1 + - b2c20989-98b5-4684-8a13-f6b5111265df strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100552Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bbr7 + - 20241120T112136Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000015v4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1545,31 +1662,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A57Z&sr=b&sp=r&sig=L7AonpWpq1aU4heHeFmygv3ZzWJ2lXg8RtXNkFihqN0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:57.9195592Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A57Z&sr=b&sp=r&sig=g90vXBNWJd95RqAYg%2FpIPcylBu5D7HA5Wlz2vm1vXHM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:57.9190972Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A57Z&sr=b&sp=r&sig=AlXiDGZzkgzbLNrCPGAgU6JEvFx3qit0xhiKOqomlk8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:57.9197235Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A57Z&sr=b&sp=r&sig=RtS343FP1UPYuzGhxwVkj2o4ciDFEwrGRnqBtlBAjEs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:57.9199409Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A57Z&sr=b&sp=r&sig=cBlZI2TISUmGwOIJbOdhcX05YoHf1rFE%2BfMSd0tJ2%2Bg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:57.9201454Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A57Z&se=2024-11-06T11%3A05%3A57Z&sr=c&sp=rl&sig=sZr6InSAv55%2B6xfSCml%2BgdH7At%2BbIAgsuo8uAsEGHA4%3D","expireDateTime":"2024-11-06T11:05:57.9203435Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=A%2FCFXvKeFeFCxEKbdn2AlXktoRbyUwd0AvR7IYZR4MQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.8138791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=BFnfsdzaSW56iX%2Fs6tW3%2BKsxRWTWcpXwnAKZ2WXsjIo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:41.8135249Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=XOrLs6uKbI62CPe42lDelw84zI%2BIeCXGri%2Fmd7L81Kc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.8140188Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=SzqLaa9rdnSBiTKZHB%2BMXyCPWt75W1Y5MuAdxPTuuXg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.8141765Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=IQ8LVC6aJiUnWROqDICTGxpgerhJrW487TBH7lq8avc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.8143128Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A41Z&se=2024-11-20T12%3A21%3A41Z&sr=c&sp=rl&sig=eoS8BfBK4N52PsDjMGahDOVrFhO2zmdFO83OHO782QI%3D","expireDateTime":"2024-11-20T12:21:41.8144489Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:00.793Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4907' + - '5010' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:05:58 GMT + - Wed, 20 Nov 2024 11:21:41 GMT mise-correlation-id: - - 92f0c752-978c-4314-8d53-1f03766fce2b + - 2e4650c1-2779-4d40-9d55-ff3ac0591b13 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100557Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bbxh + - 20241120T112141Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000015zu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1587,31 +1705,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A03Z&sr=b&sp=r&sig=6FkFOmTc2Gjq%2FAAll99EuC%2BmhXv3d5GiFi%2BqYEwZYVU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:03.2605491Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A03Z&sr=b&sp=r&sig=PGSCXmEHPWQsEtSesndo9fiaifg7P1B2sioKcwom%2Fv8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:03.2600728Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A03Z&sr=b&sp=r&sig=Tn4VlRSzD8k%2B8I1rhBcgvRSS7p6wuSXK3BPFLmqfV%2Bo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:03.2607447Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A03Z&sr=b&sp=r&sig=6i8TDmspgjREPLdu3ZQI0ojDNJAuK6iY62X0I6Qi0Rc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:03.2609357Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A03Z&sr=b&sp=r&sig=LDnfbhJD1BgMW5voSMqOCncAVsVg7XkY51Dy5urYss4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:03.2611263Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A03Z&se=2024-11-06T11%3A06%3A03Z&sr=c&sp=rl&sig=EYIVOYgL1b2FIXUaODY%2B2ndVvpOl8y5Yj0krpmod4pY%3D","expireDateTime":"2024-11-06T11:06:03.261309Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=o0L%2BRCDY4XoIGE05ulFz72QkOhn74RG7PbjmxtEp6iA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.9314258Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=vYcstRYll0B0NWSLeZpvykGqz4CnQoucJ30AQLAkDh0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:46.930996Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=BQaEmFBHRKB0pXRDx2lxGbXt9FuV0riR%2BWUckPscoPY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.9316215Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=QToAclQNKjxnC0yXlI%2F2KYuyuCWO6k2%2B3WJz5rypRf4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.9317899Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=jjy6v9unpLKiSbg3%2FUMIy32G54NAz3upRzum0eDGCww%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.9319409Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A46Z&se=2024-11-20T12%3A21%3A46Z&sr=c&sp=rl&sig=MV9RXIUwpgz%2B16gmPMOonw%2FBria4bAU4cwkWzPba6q8%3D","expireDateTime":"2024-11-20T12:21:46.9320627Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"CONFIGURING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:46.72Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4908' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:03 GMT + - Wed, 20 Nov 2024 11:21:46 GMT mise-correlation-id: - - 2cd32532-29cf-4f23-884f-9e228e51f53d + - a9f88a64-0111-4bda-9a27-cc8a99e02a0e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100603Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bc4v + - 20241120T112146Z-1846dc7bb4d86bswhC1YVRhm3s00000003y000000000163n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1629,31 +1748,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A08Z&sr=b&sp=r&sig=4a2AfXvjM5LSZu%2BJt7dehH56YjUpEqyHCPbwvNAYDrM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:08.5822026Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A08Z&sr=b&sp=r&sig=itq6Pp%2BuN7%2BnVDK%2BREKJ5ueORE5MSeqG8ZXleCGh458%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:08.581706Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A08Z&sr=b&sp=r&sig=FAmlHXz77PxJAfW97oHvwAMFoAx0IGFuoucLmhpBV5c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:08.5823962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A08Z&sr=b&sp=r&sig=g1UyoABg3i5YhEmP8TKvhYEQQHuXdtKwrA0n2VtAftY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:08.5825939Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A08Z&sr=b&sp=r&sig=9fSc0AS0dWBr0hoH2M0%2FsdsBNHFjpxvpPLKYY9Nyu%2B0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:08.5827968Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A08Z&se=2024-11-06T11%3A06%3A08Z&sr=c&sp=rl&sig=anmeO9PFe%2F%2FBkYb3zAjXoXac%2FZxTK%2B8vfL1u69ldFuk%3D","expireDateTime":"2024-11-06T11:06:08.5829866Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=09cuPAaMrcTIJx4IYpaZ3YET4deGcDv7dq4rXqUTAN4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.0536353Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=CqxgTiVTpWjabSdbd9OkaW8e%2BRK61NnId%2F99CF8WPuQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:52.0532709Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=DL79FWRcS5MEXhUqQEGKuyUM580ndHae%2BbvhbG4XFq8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.0537703Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=t%2F26KTDbOozoGYsXajepm7tOpXvxw9IITaaHSK86sYw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.0539046Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A52Z&sr=b&sp=r&sig=xhkcc%2FVGax5GmCxckN88rnh%2F9PGsUyT7RDL7Dwq07TY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:52.0540305Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A52Z&se=2024-11-20T12%3A21%3A52Z&sr=c&sp=rl&sig=pfrH92GRFhJwRv6GtiFk%2BHrEuxG%2FVMIGb5PNn0%2B38TU%3D","expireDateTime":"2024-11-20T12:21:52.0541588Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4914' + - '5013' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:08 GMT + - Wed, 20 Nov 2024 11:21:52 GMT mise-correlation-id: - - 9ef4b748-f713-443f-887c-0bc4a09f86e6 + - 216b920f-14d8-46d3-8e36-afd16db1fca3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100608Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bcbp + - 20241120T112151Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001665 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1671,31 +1791,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A13Z&sr=b&sp=r&sig=eqNhrvkNIrGmWEm%2FyIrWPSzkwsgEm3s%2BMxVye%2FMxH8k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:13.8979343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A13Z&sr=b&sp=r&sig=OCTjylq5y7TuHordhxQvXCMvW%2Bz6rtNoICsiFYGyVks%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:13.8975998Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A13Z&sr=b&sp=r&sig=TbNxQ4877G%2B4XaiHoHKqfTAghRRUkXRUk4V56a1gQ%2Fs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:13.898027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A13Z&sr=b&sp=r&sig=dzQOF9m80HDaUd3HqX%2ByhlxMcADBHN3oJM6v%2BwcwBXw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:13.8981248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A13Z&sr=b&sp=r&sig=m%2BLF1Xbxzvdo5GfPy5EW9PpXwuUM7ZOuUNru7yjvYTo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:13.8982153Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A13Z&se=2024-11-06T11%3A06%3A13Z&sr=c&sp=rl&sig=6V0OimtJdrSrKapcQiCPN%2FfCaQQQyH9t6KntXgDrIYo%3D","expireDateTime":"2024-11-06T11:06:13.8983046Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:10.007Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=xhkUATvUi%2BltJETh0O3WAfZEKFmR%2FKue4ff%2FWW14o9A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.1770779Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=fjwxxgeucPe208VsAI3tUXQJ2nlT1pSgODkIx3020Bc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:57.1765924Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=1oThB47HSQEUB6Xh51x9vU7Mp4W40TbLe81uTFBhzLw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.1772524Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=6NGNqJ7mzdeGuTe0pcbxiPwvrxBLQLybmdsft4QVieM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.177346Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A57Z&sr=b&sp=r&sig=mTchxQh%2BwhjmV77IFaNiYua1iZAOxGO6DZ5gC4c%2ByKc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:57.1774436Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A57Z&se=2024-11-20T12%3A21%3A57Z&sr=c&sp=rl&sig=JF%2FNdRxCMBhLIkWl9V3QTOpp6QQGJ1Bw20bQ0CYEEZc%3D","expireDateTime":"2024-11-20T12:21:57.1775378Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4913' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:14 GMT + - Wed, 20 Nov 2024 11:21:57 GMT mise-correlation-id: - - 74f2b177-68ac-4218-8319-9b6f6caaf1a5 + - d6c0832d-0767-4dcb-8266-ace983ca13f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100613Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bcmk + - 20241120T112157Z-1846dc7bb4d86bswhC1YVRhm3s00000003y000000000169t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1713,31 +1834,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A19Z&sr=b&sp=r&sig=GJ4FFl6%2BHguryAZv0CPobI3IcriLk%2F87QFzQgDnz%2F3M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:19.22632Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A19Z&sr=b&sp=r&sig=ZtQRgsheTY1K4Y%2BCimb2rBGY8hHUN9nX8QG2VCUTqkU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:19.2260371Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A19Z&sr=b&sp=r&sig=uofaEZIJ%2BppJlTIGdqZGY0tC%2BfzqbyMTwuMmf63Oo5k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:19.2264168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A19Z&sr=b&sp=r&sig=2WcBX6Whwr%2FVN5LrO839uR8pCYnIQRTgMdw5dk4X0ok%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:19.226507Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A19Z&sr=b&sp=r&sig=%2BlJkG4xBe0LTJBXImv%2FlVMszU39DQXFW8zK318GNzHM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:19.2266082Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A19Z&se=2024-11-06T11%3A06%3A19Z&sr=c&sp=rl&sig=0nGRpzJIWpltG6%2FwpKTp1Ltwan%2FxO3kxW%2F%2FLZZKkOEw%3D","expireDateTime":"2024-11-06T11:06:19.2267023Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=X3OHY2ZRExrcTT04iC3F%2FTyOootRi%2FFIpe3vJhUWulQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.2983546Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=CY%2BGevaRJgftfeCyfgOU5jXt5u%2BuDIH7mfbS7HIxjRQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:02.2980459Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=v3I0rvpzjuZnY5ar1GtE3qaIdFnYfGPcAf87%2FNDvOEs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.2984469Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=gXipLdfn2Fhz1VXp06RLU2%2BxZJxgAkUu%2FftOYMh7icw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.2985265Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=yODBoPAh2C9XBKwDp5IgBjeK84zfyxR8OLmL0nAX3ic%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.2986089Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A02Z&se=2024-11-20T12%3A22%3A02Z&sr=c&sp=rl&sig=ik2X%2FpQ%2BK8Yrm4K1cuxmZlZIkTWg2t31GZQpf8l75wI%3D","expireDateTime":"2024-11-20T12:22:02.2986876Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4915' + - '5013' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:19 GMT + - Wed, 20 Nov 2024 11:22:02 GMT mise-correlation-id: - - 0d57b0fa-5d10-4369-b848-aeadc76320d9 + - d5f94fa0-a99a-4fe1-957a-bedb0c76297a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100619Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bcth + - 20241120T112202Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000016ds x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1755,31 +1877,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A24Z&sr=b&sp=r&sig=hApdguPZkqRMei2euNO4o%2B2O%2FAv8b%2BjeVE9Tl5HnICY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:24.5492446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A24Z&sr=b&sp=r&sig=2YI5gBMaWDD%2FVmtqBxPgf3TyaaA4z6JRklE2ljUCbNM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:24.5487721Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A24Z&sr=b&sp=r&sig=MWD3CpIe%2F6iNrWoZXVAu%2BuNjv57TrBVbvFkieS6%2F0sA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:24.5494438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A24Z&sr=b&sp=r&sig=S19rQGW5J6Oiqc4of2Yh7kPaNkQvrDb7qFT2aWJLBX8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:24.5496205Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A24Z&sr=b&sp=r&sig=MCd8WreymotNYmF5P0s%2BOHmjyIThQxtuBIZS8VaTqqg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:24.5497964Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A24Z&se=2024-11-06T11%3A06%3A24Z&sr=c&sp=rl&sig=T7Svelx3KslKP%2Ftum93e8Kxy8pv41NuA4teeS3DJVvk%3D","expireDateTime":"2024-11-06T11:06:24.5499964Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=1nn1SEnIAFdxCpKC4VDQsOidIN8ogG36SWyCaQkzAqk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.4169035Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=Q45g5%2BF26rq0KrH5iAr0vky4tuPFk0hxM5y4NIKvFQs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:07.416562Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=uBXy3AB6bVeD1FE%2BYDvE4SaA%2FMb%2FUrmt%2B5ldz5eYS6M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.4170372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=97n6yAR%2B4XTzHbaNGHkP5II0QBOrQ28bTgaBH6Grttk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.4171729Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=G75gW%2FcUsf31coWQ2LvSk47A8TdjwFF%2FZ4kAZjg8pPU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.4173018Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A07Z&se=2024-11-20T12%3A22%3A07Z&sr=c&sp=rl&sig=vWuz1WSPxtyhkPUtbmiV0RoY6Y9Ocr3gl3safO1hceU%3D","expireDateTime":"2024-11-20T12:22:07.4174298Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4910' + - '5010' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:24 GMT + - Wed, 20 Nov 2024 11:22:07 GMT mise-correlation-id: - - 7a83178c-716c-4754-a7f3-b4710f0400c8 + - 5b6c76b1-802a-45c6-ae04-f3db3181ccc0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100624Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bcz9 + - 20241120T112207Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000016hh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1797,31 +1920,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A29Z&sr=b&sp=r&sig=Re6FhsfYdtnkfvBjDvDgrYBqOwV6qqBpzqgjE3Hjrds%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:29.9073283Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A29Z&sr=b&sp=r&sig=hmI03k2CLL7PBrwhEHEBwcvEz0dDFh5IDaJy9cqg5%2F0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:29.9070342Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A29Z&sr=b&sp=r&sig=X4WlB%2FQs6zvoc7%2BelRfJtOApcn5JW2iDy8Noy4HAoHw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:29.9074275Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A29Z&sr=b&sp=r&sig=B7utS28ySTS8UA7F7n%2Bu7VfBCnf6Eox0FC8Ou4XZDTg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:29.9075249Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A29Z&sr=b&sp=r&sig=s63q7aMsr99i5OR46ICmoFui2n3M91%2Fv7OwNAFDPz9k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:29.907621Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A29Z&se=2024-11-06T11%3A06%3A29Z&sr=c&sp=rl&sig=EDAQOluse6j5U%2FO3HRrPTVVXXngWviluXHIkmp1kqhc%3D","expireDateTime":"2024-11-06T11:06:29.907724Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=Wxyhkc%2F%2ByP%2FjeB7HfP1OMCUPYDdb3QK9J1qqoiwlvIY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.5478341Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=5lfoI70ShVJ2NQbs3dLf0kgya1BEW92trLFuTmjr%2BI8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:12.5473545Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=7jpkWOQubdiM41rJZcIRV0wj5Z8ooKW1%2FJeoUModH4M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.5480238Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=%2Fh71EXc%2FN0BTSYCuFaxC0%2FLfQxhRHKdT983OcWLxDBI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.5483168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=6AABP1tw%2BvLW9%2FIKvQTQaIQuEhjDwXPk9wk4YsivuJk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.5485737Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A12Z&se=2024-11-20T12%3A22%3A12Z&sr=c&sp=rl&sig=50KgWmk2dxn%2B6ZDVKetFBXtUzmIfM5USEtTf%2B8cq4RU%3D","expireDateTime":"2024-11-20T12:22:12.5487524Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4902' + - '5019' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:30 GMT + - Wed, 20 Nov 2024 11:22:12 GMT mise-correlation-id: - - 1220bed8-8c6f-4d6f-a93b-244fe6dec09f + - d1537484-d142-426c-8022-6e866805366c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100629Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bd5b + - 20241120T112212Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000016qq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1839,31 +1963,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A35Z&sr=b&sp=r&sig=j5Kx8R%2BExpnzlBWfitVZRkOaXLh604fJWJkg381n7Yc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:35.2465484Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A35Z&sr=b&sp=r&sig=4MUCA73W%2BUBl6%2BLaQUFB6noinnzBUgONhuXc%2B4erakI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:35.2462077Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A35Z&sr=b&sp=r&sig=O6G2xgPr5hxfP5bd%2B%2BfvJkLYyMjwvnbOCR1tCWQdG9w%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:35.2466822Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A35Z&sr=b&sp=r&sig=5CP7DFJLI0Y6%2BldmMLWc2Oe3SAl84lgnhSfkELgIDvI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:35.2468243Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A35Z&sr=b&sp=r&sig=WdJl9cLjBwbO03%2BzjXBg1Rk8CguBDaSOrFLOmm0Rlco%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:35.246975Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A35Z&se=2024-11-06T11%3A06%3A35Z&sr=c&sp=rl&sig=8pkJLksQu%2Bpo7zavQgpOsTu5AdrLk9HUqsuYd64v3i4%3D","expireDateTime":"2024-11-06T11:06:35.2470934Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=BwCf0JtvSvZfhFzILHqjx23Ftrve7f0Y1bBEaEGdsS0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.6618989Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=n9d5zU0DJEfddsa3FpKgtXRAuP5hfjdNshWyrKHGOrA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:17.6608295Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=7fbxCk2jeZanU6%2FeHP4%2FQEJx8YdqdR24NLOSUgI2Evo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.6621663Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=sY3R%2FuiEDE9AfaQ4LxuiETIrzMWMmLjpoFNtU2WIAwk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.6624581Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=Bu7eSbJCKyL36nXJNCLQIbhQK7NkOVDewOeGhxXTcLY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.6627264Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A17Z&se=2024-11-20T12%3A22%3A17Z&sr=c&sp=rl&sig=KazNhepOWyPm3IwXJ4aOvLsD%2FBRQWCC3bGpaRmQ33y0%3D","expireDateTime":"2024-11-20T12:22:17.66299Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4909' + - '5001' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:35 GMT + - Wed, 20 Nov 2024 11:22:17 GMT mise-correlation-id: - - 35602041-833e-40af-b78e-ef6129eefc69 + - 9ceed965-b30a-441c-9c69-14835089cec1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100635Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bdba + - 20241120T112217Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000016ur x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,31 +2006,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A40Z&sr=b&sp=r&sig=UeFuBbUG7dnlN%2BJE0ewLx06nGhHrhWUaS1QIVkPqFA8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:40.575755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A40Z&sr=b&sp=r&sig=EC%2FxUHQBRC850sXDFJVX4uGBI39QnWJYq0cBcYIltT4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:40.5750066Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A40Z&sr=b&sp=r&sig=OfxPMuSoPyKacJudUDFyg4l5PmYmvgCfMpDT0yXnD8k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:40.5760602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A40Z&sr=b&sp=r&sig=m9DDBK6mIILU9sCeekv%2BAsPjbTe1SeZN1aQTAysT2RY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:40.5764056Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A40Z&sr=b&sp=r&sig=lLi4XbDgylNHFpw2Uny11WIP14ph%2BSgDE9FiTV1OKns%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:40.5767289Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A40Z&se=2024-11-06T11%3A06%3A40Z&sr=c&sp=rl&sig=TT%2F4leT30MMpB5oosn0r6HgIrpUF5AjcdsHcSJSa6bY%3D","expireDateTime":"2024-11-06T11:06:40.5778947Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=uCtSYkyCN%2FEjN0O2zjIfm5EaFB0sSfFF7UJZKlE%2F944%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.783578Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=mxBtRXj%2FpqSXJ6ehyVkEwkPxnVHfwZSwCDVxV6V3Ehg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:22.7831951Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=FX03x5Mk0nasVZRBqUKc1BYwpFmVtreyxznh4FdPm6M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.7837158Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=zIQWxRcS4YyQwq7zbqdp43VtCTyxauebJt4b5%2FP0q8U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.7838614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=X8uHFkXOPk7gLQwIwRXKFc4TKPFculDR%2BrQQgP4PrV4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.7840034Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A22Z&se=2024-11-20T12%3A22%3A22Z&sr=c&sp=rl&sig=fOpoZczvgZivvz4Bj9rIG58iLbEiwQhHMOmnMEONsN4%3D","expireDateTime":"2024-11-20T12:22:22.7841423Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '5004' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:40 GMT + - Wed, 20 Nov 2024 11:22:22 GMT mise-correlation-id: - - 7da5831f-db3d-4a58-9ff1-9d3207815266 + - c7d26526-d6b1-4b24-98b1-ce5bc3fe8f4c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100640Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bdhu + - 20241120T112222Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001704 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1923,31 +2049,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A45Z&sr=b&sp=r&sig=sZlvveyfFp9OA7ah3DbPepNYedowcppep5ECQkEyxEg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:45.957084Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A45Z&sr=b&sp=r&sig=FU5r09JOXdvzRtLkfiTFFEWPNzs7gdfBpTb5HIh89lc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:45.9564449Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A45Z&sr=b&sp=r&sig=%2FFoWpoiyO0eaG%2Bg7K3jEc94%2BuUjwj0azAOBc5UVpkbA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:45.9572658Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A45Z&sr=b&sp=r&sig=u7ifrsBnYC6PQ11E%2FjfFWTCo%2FjCXN9FHoPdUK1ZZ8fM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:45.9574345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A45Z&sr=b&sp=r&sig=AGijn%2F9dtNe4HDrFEXtwaxYo38rATzIz3jvLvsLEUa0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:45.957615Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A45Z&se=2024-11-06T11%3A06%3A45Z&sr=c&sp=rl&sig=mLApcUwvbIQsuqSku80oCNB4mQVyKZ%2Bj%2FT%2FlD%2FpvXS4%3D","expireDateTime":"2024-11-06T11:06:45.9577786Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A28Z&sr=b&sp=r&sig=CAtGjGIlW39P13XdjSdrgAhyx%2B0IPojlPo8EU6rr2is%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:28.2094158Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A28Z&sr=b&sp=r&sig=AGsLJnecW1zKUaYxt6vwjAy47sBAv6gvyHwd5KrOa%2FY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:28.2087255Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A28Z&sr=b&sp=r&sig=P8eqx0vch9XD2%2FrlP4Cs0hGM%2BIFGSSuFOMxqKPTljyM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:28.2096992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A28Z&sr=b&sp=r&sig=n6uA1OFgiOXMjW1juidVPlAWOEQRkSS4euzYWndnLP4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:28.2099651Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A28Z&sr=b&sp=r&sig=CSnilCVe%2F0UZklfubL5D04MPbRi5sTlSR4Nw81n5VNc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:28.2102353Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A28Z&se=2024-11-20T12%3A22%3A28Z&sr=c&sp=rl&sig=uX%2BWUwtv0T2Oxa3GVWzN20gdtsJBvxCREIKEayYEBYY%3D","expireDateTime":"2024-11-20T12:22:28.2105123Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4910' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:46 GMT + - Wed, 20 Nov 2024 11:22:28 GMT mise-correlation-id: - - ab7b3d2d-ea22-42e4-8d24-80672c0e0c79 + - 92fb85d2-362a-4ff6-9725-7c2b943036ce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100645Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bdrk + - 20241120T112227Z-1846dc7bb4d86bswhC1YVRhm3s00000003y000000000176x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1965,31 +2092,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A51Z&sr=b&sp=r&sig=OO2BenBn%2BWrTgp%2FSHmcNiC%2Flhs8wllqGsgoop62cb5Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:51.2765207Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A51Z&sr=b&sp=r&sig=vu6EIa%2BfnOUqd1d2gev3AmolzkQdwn8BqQI8Hw7HBDo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:51.2763101Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A51Z&sr=b&sp=r&sig=ARLKS%2BMyHgZzHY4HbmHzKJeWgNwBrfVH2NjCfi0uNHw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:51.2765727Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A51Z&sr=b&sp=r&sig=8874IhshHBU4B0tf5vb2%2FPI5LuYuhjC5Y7FBlX3OObw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:51.2766236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A51Z&sr=b&sp=r&sig=Ibhnj1dHgof4z9ZinrC1ru4rw68aP8lyLeUMYQsij8k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:51.2766719Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A51Z&se=2024-11-06T11%3A06%3A51Z&sr=c&sp=rl&sig=Z42WwNmqbP2DhnoGhRZdrDmx66Whc3OqOmO%2FMUOrFTU%3D","expireDateTime":"2024-11-06T11:06:51.2767189Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=l8nxQzDucpbhKO9yhesgMGJzLNOHzyXJj8Fg%2FIRh%2BOA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.3288502Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=77plEppOzYVePmnNdEUuIWoBJHSmyDNcZpx3zu26HH8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:33.3285089Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=faxqH9Vwv14i31uzM3fSgShp6qqnrg%2ByNz2gJ%2BTq1s0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.3289542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=Aj4WxoJ8OOcuCU34DVVhudbEnyMQL4iA23ADhaVvXeU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.3290837Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A33Z&sr=b&sp=r&sig=onkludn%2BzdWtJzqDKRMqm3Dh13Wzc9Ifj7fmycYbBCo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:33.3292227Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A33Z&se=2024-11-20T12%3A22%3A33Z&sr=c&sp=rl&sig=nzGxw8Up74bQhP9BtWsEIHNmfib6Me9%2FjbgDQ%2BHNY%2Fs%3D","expireDateTime":"2024-11-20T12:22:33.3293737Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '5011' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:51 GMT + - Wed, 20 Nov 2024 11:22:33 GMT mise-correlation-id: - - e95bf5f6-79f3-4807-aa0d-77a91ef19772 + - 3726bfa4-f2f3-4e03-bec7-d2918f9f5150 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100651Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bdyf + - 20241120T112233Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000017bp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2007,31 +2135,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A56Z&sr=b&sp=r&sig=GJvz4M%2BK6mm%2FV2D%2FSDvEtCKIzwwkrkAhxQsGB%2BPKCtM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:56.683475Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A56Z&sr=b&sp=r&sig=LxQxsoEw1YMk1zwTMDmq2GNVI8pioC2gk7QCLDmH%2FDo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:56.6828904Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A56Z&sr=b&sp=r&sig=0mPhagBvt1o1Xp1B7bGlQASzk8zXg7OXkRrEuUEyumg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:56.6838705Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A56Z&sr=b&sp=r&sig=w8qwhYhBwFmWBxaTg6%2FbOqXSlJK00XCAZKP563vp8Gk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:56.684047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A56Z&sr=b&sp=r&sig=8UPa68xVlgJk2nWCSWp%2BhXlNBOhwVWS%2F9xake28pa4Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:56.6842041Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A56Z&se=2024-11-06T11%3A06%3A56Z&sr=c&sp=rl&sig=uBp2o9zUW4fZx3wQJdTnCjjaPiyaTPMiWfZhTAHemCY%3D","expireDateTime":"2024-11-06T11:06:56.6843298Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=sHqxAtI4X%2FOjkwnEocKMLeqqf5aPqlxIslRInhD%2Bstc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.4529094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=gEVna1VAmcK7wfWjJSP3yfywHiurViUy7m%2B0WxZmdu8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:38.4521276Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=5c0Y3f5EDGsqTqF1nsj6LNCRhySRaUbQ4SHh1nq0Ew0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.4530005Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=UgLdTB40fDcvefT5cImcl4sKIa0ThWp2W51gGWoiMZ0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.4531563Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A38Z&sr=b&sp=r&sig=KlvQ5EEVzB3GNokfn4iN1Vy0GJ8%2BjScxInBUUIq%2FlEY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:38.4532956Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A38Z&se=2024-11-20T12%3A22%3A38Z&sr=c&sp=rl&sig=6i2Rg3NZRB6DyZbUZCG74Pc6YXYkp1FX9rLhqzGyFAc%3D","expireDateTime":"2024-11-20T12:22:38.45342Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '5003' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:06:56 GMT + - Wed, 20 Nov 2024 11:22:38 GMT mise-correlation-id: - - efc66b93-f010-47c1-bfcf-85e8f319adeb + - 38b5dd6e-4b29-47cf-9eda-16db24193a9a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100656Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000be52 + - 20241120T112238Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000017k4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2049,31 +2178,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A02Z&sr=b&sp=r&sig=hoM1abhUXtZ3BrNlqiMY6NV6%2ByNQLpCh0S9UapZbGso%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:02.3783681Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A02Z&sr=b&sp=r&sig=Wi5AJfC%2B%2BlRtQg%2BnAp3EVRlsKBBdwFlbV0bNHT%2B1%2FAU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:02.3776179Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A02Z&sr=b&sp=r&sig=A6nwiFXSKsr5XmDnTF09FtFM3wemqxDVDFi78Fh%2Fcgg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:02.3786761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A02Z&sr=b&sp=r&sig=gFHmP99ohOXWiN5nnba50eVc2CGn0WUZh1ztNVINHhY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:02.3789716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A02Z&sr=b&sp=r&sig=QTSNl7BmiStevZ8HRHdNovJo8JcF2u7ItsTdh9ao%2FlU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:02.3792727Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A02Z&se=2024-11-06T11%3A07%3A02Z&sr=c&sp=rl&sig=rbyKrTH5MxD%2BVO%2FztFOXsZ7VN1lpgj4AwEW7wt1tIqM%3D","expireDateTime":"2024-11-06T11:07:02.3795645Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=BwnBdg%2FSKeuiWzHLVbBmOeh96GtJ3wApPcoreBDHVLs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.5715779Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=jv7%2BSjx7GwbNq%2FV7xL3LUu5rGxZGOiFsscP%2Fh1jz3GU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:43.571095Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=jKSC8V17q4fju2wZNgxWU7Dhm1koCHCBL9CFRCGTRn8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.571748Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=dOvtZSp4Ur%2Blzs7pITZHaTeQct0O3Jcd%2FsKvaRlfrx8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.5719229Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=GeUbpYSYW%2F3iAwf6uiuvj%2FQ%2FAY9juT81RJwYYqfhB1w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.5720915Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A43Z&se=2024-11-20T12%3A22%3A43Z&sr=c&sp=rl&sig=03qebdoPY5o2P%2FFq9%2BF7H%2Bv5%2BGCzdrgoZKEl9EdwaS8%3D","expireDateTime":"2024-11-20T12:22:43.57226Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4912' + - '5017' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:02 GMT + - Wed, 20 Nov 2024 11:22:43 GMT mise-correlation-id: - - 1688f070-74a0-4cfc-8552-5b58e59bb99c + - 82032f74-3951-4f15-8f7a-ed472dea6a59 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100702Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000becc + - 20241120T112243Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000017sm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2091,31 +2221,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A07Z&sr=b&sp=r&sig=oWN9s55tDwVzTTSZ7rcNvT2%2BzRmlSeLjsCfE1ZF8F8g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:07.7346596Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A07Z&sr=b&sp=r&sig=E8GB4bJgvcN1p4rBkp2Y%2BQwGThGx34aeROhvZYe2XFA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:07.7343506Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A07Z&sr=b&sp=r&sig=urmgXSacyGxgknHnhfe%2BWK0Q8Ul06g%2BvU8%2BDVsQvi%2Fk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:07.7347794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A07Z&sr=b&sp=r&sig=%2BF79G3klj8CppPk5J7YjmRNPtCtElbb1ekkHDeOSfYc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:07.7348885Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A07Z&sr=b&sp=r&sig=W%2BMZDsog%2BlRXbGzV2%2FZ3E%2F0o2xISxMcPcb5zo19ZAAA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:07.7349838Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A07Z&se=2024-11-06T11%3A07%3A07Z&sr=c&sp=rl&sig=eTsaAHwJ53NugSdbyR3WLZuo%2BVVVPlXPLPR90HCnLXc%3D","expireDateTime":"2024-11-06T11:07:07.7350771Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=BF3QF552mZAgDPDO6f%2Be6ZoOLUEF%2FOr4vaP%2Flp7OOj0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.6988271Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=40EU2ButNTpBtXjSBdeQQ7X8FhDP%2FM5YxGHFrNJJwwo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:48.698551Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=K28l2Eepcuq9Sd%2BJlc593kAYVWpgf1CkOCNjs9ly3U8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.698936Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=YsciyrvtWxbCfsaR48YOusp3fVmW0d5OmxuCJW3JH7o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.6990677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=B1%2FsouK7psjmTrJfwsTODizS8NlrLcd8%2FnfGf9IweF4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.6991741Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A48Z&se=2024-11-20T12%3A22%3A48Z&sr=c&sp=rl&sig=ECu1rWzwEdEwHglQ2AKqGsOyLN1UJkXZYAyrxQc%2BUBE%3D","expireDateTime":"2024-11-20T12:22:48.6993214Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4916' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:07 GMT + - Wed, 20 Nov 2024 11:22:48 GMT mise-correlation-id: - - d629e677-6b3a-45da-859d-af1c2541b4e9 + - 06a44bd2-2e60-4d42-91c5-60ddf7676d85 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100707Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bek7 + - 20241120T112248Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000017xu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2133,31 +2264,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=oaS8rC5bFkVTfL33VvI4Ogg0MxYYlzBK0EPv2%2B3qv1A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.0711232Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=thzFITWUzIRsj5DoWhl3H5woTSKtS01sFcu0GrHWD2Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:13.0708375Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=AM9HKGHxIKcKUrDXSpJWyjJUWFp59Tgp0ICRx4uP%2Bhw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.0712142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=5ILwgLqqfkchStkNZsasH5yAR2C8lOpO6jvYC7jlDyo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.0713032Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=ayjcnwF8VDL%2FUHvs%2FgNkz6sUhO4EKmmTUm%2FrPIIzjcQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.0713936Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A13Z&se=2024-11-06T11%3A07%3A13Z&sr=c&sp=rl&sig=jSh6r1i1uHEtjT36gFJ6nj0IJuQX27hoSpWSDLMwE7Y%3D","expireDateTime":"2024-11-06T11:07:13.07148Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=2qYH1PV6C0Kqp%2FzK0OvYMRyJhmkNqiIx19WkhYSownQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.8127411Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=iGRydfIbT8Y0w4QENk%2FLwz1wNotOWm3NPcXUcR67Bs0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:53.8123147Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=m0t27Q%2BlhfNXN%2FWWrZMxSk3QNfjdVhRB5i5dyIOWAg4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.8128812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=pgb6TooW%2Bdmx70DuJ8VIhBtLkwgm%2BSVV7W7YQEkEnGY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.8130157Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=PgH%2FafPTOG2YgjVhQerBgOV7Dp%2BKcgvEnm%2BSYlW8FAE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.8131718Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A53Z&se=2024-11-20T12%3A22%3A53Z&sr=c&sp=rl&sig=uXkGG5jlatT6c1XrMaU3wYSNGzz83%2FhIyt1sMHpog0c%3D","expireDateTime":"2024-11-20T12:22:53.8133088Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4900' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:13 GMT + - Wed, 20 Nov 2024 11:22:53 GMT mise-correlation-id: - - f4734809-90a4-40d1-8f4e-a0d16366fe3f + - d0f8b6cf-9c4a-4856-8c21-beea8740e08d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100712Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000besp + - 20241120T112253Z-1846dc7bb4d86bswhC1YVRhm3s00000003y000000000183e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2175,31 +2307,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A18Z&sr=b&sp=r&sig=Vtn3A5i4XFiG13PpD437TghNOqdHHVVwe9xEmKevxhY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:18.3989547Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A18Z&sr=b&sp=r&sig=fBYciIED27uEWaSJHSa4ExGdl8eJbULzItq7I5utKTM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:18.3985395Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A18Z&sr=b&sp=r&sig=MkI98Fq4I5or1WUPpNp%2BFwgYSjjA9wb8vPNBYAG2Vts%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:18.3991222Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A18Z&sr=b&sp=r&sig=LCkNKFCVsXO%2BSR5TLVe6nOgB9f5umanux7JGLQQhTD0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:18.3992924Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A18Z&sr=b&sp=r&sig=7FMHhTQFSDh8uJqejFm4K3LFPX9lKcYp6zWBqovYeWw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:18.3994619Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A18Z&se=2024-11-06T11%3A07%3A18Z&sr=c&sp=rl&sig=Uq60oL5BTsNBzKsDjsGaa4hdMwt0lc9sUBuDeUqZ6jg%3D","expireDateTime":"2024-11-06T11:07:18.3996306Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=6TCRaKMBh%2F%2BAmFDZUQHPE4A4QoXupt09QIMmbycCo4c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.9353109Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=WcNyLczKglxKpaIbL%2FJoW7DUPoR0%2FROaM2kl447pohs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:58.934879Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=9Dlyo22eqCSmckNOKOPNf%2F08lHHlYO6jrugL7ZizQGU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.9355001Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=ciw8oyih0aClwMLZvwqNJLiQHMml0oUp6nzDYLGIELk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.9356686Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=6468DfK7oenb2Matx90fCgcOHyTnL%2BsI3CJu5XdEXLY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.9358567Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A58Z&se=2024-11-20T12%3A22%3A58Z&sr=c&sp=rl&sig=g9pQKL8nQq2zcXv7Jx0EQoPeYQRXA598x2WtYMzPy2w%3D","expireDateTime":"2024-11-20T12:22:58.9360261Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4896' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:18 GMT + - Wed, 20 Nov 2024 11:22:58 GMT mise-correlation-id: - - 2e46d1f6-03eb-4bd1-9ec1-98d46336e8b1 + - add856ec-2943-4037-9195-1829e3ed02ec strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100718Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bezv + - 20241120T112258Z-1846dc7bb4d86bswhC1YVRhm3s00000003y000000000189s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2217,31 +2350,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A23Z&sr=b&sp=r&sig=q13Ms70fbjR%2Bh2dhfelS6rbw55LKQxerGecZk3PGzWA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:23.721365Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A23Z&sr=b&sp=r&sig=N7urrMPF%2FYc%2BqS6kf95xS61gPiZe3fhOX%2B5YhJcHUP4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:23.7203968Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A23Z&sr=b&sp=r&sig=1Vap9UnhR9RPH8uSfDjd8NEPd5Ck1PvaTNy2Wd86Sb0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:23.721675Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A23Z&sr=b&sp=r&sig=AJ%2F8E6PbDPWS1Bt2SR%2FefLlUH5XbLpOXL6e%2FGB4JBKc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:23.7219651Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A23Z&sr=b&sp=r&sig=oW9mNqfSmISy1Aj7gIQPfFvGESjWXymI%2F42HUmDJaPI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:23.722291Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A23Z&se=2024-11-06T11%3A07%3A23Z&sr=c&sp=rl&sig=Fdw38fFXISvhjEs3zfyaZhetrNdut%2FF6U0qYyJkGyN4%3D","expireDateTime":"2024-11-06T11:07:23.7225829Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A04Z&sr=b&sp=r&sig=M43fBzCq9i7LEeYugfW3fY7o%2FGyCZnNxHqDY3PK%2BQzw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:04.0613631Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A04Z&sr=b&sp=r&sig=XvMnJrekLiS3ld4rieAxldGNB2YzWYCF1yXmAM6wIKY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:04.0610929Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A04Z&sr=b&sp=r&sig=gjibWQcEDty%2BTGFP7rcHGAbnLbRh3h4WsoTP9C95n9c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:04.0614551Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A04Z&sr=b&sp=r&sig=hjboknh6LxObtFozFZ4WpRWe7%2BaIks6wWEpP76KIljM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:04.0615447Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A04Z&sr=b&sp=r&sig=gFf8jfGK%2BC2b35dwnJbE4J54J9icUUcMzcpKB70f7m8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:04.0616326Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A04Z&se=2024-11-20T12%3A23%3A04Z&sr=c&sp=rl&sig=v%2F2d8jB9bDtL5qSC34z3QM8aY%2FZpC3kdTVQTC65aL9I%3D","expireDateTime":"2024-11-20T12:23:04.0617185Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4907' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:23 GMT + - Wed, 20 Nov 2024 11:23:04 GMT mise-correlation-id: - - 7c7d58bb-43b3-43d4-8a9c-1f21936ae4dc + - af453f88-3ce8-4e87-9c9a-378488b91139 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100723Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bf87 + - 20241120T112303Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000018fv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2259,31 +2393,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A29Z&sr=b&sp=r&sig=Os5wFND8NeZsIDlQy9jfBcG2k0%2FP65girS1DbLmlGd4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:29.0424874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A29Z&sr=b&sp=r&sig=mYWKcQUGF%2F12mEk9F9vu0oXwpqnxLsEq3UN11MoOJkE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:29.0419964Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A29Z&sr=b&sp=r&sig=CGPbHuZ%2FEMAKn%2BXsTYRMQXpQsbVX8ZhvM2uzKGtUdzs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:29.0426027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A29Z&sr=b&sp=r&sig=YGQXbEfM5RFjdNS4%2Fp7kDagbmGdyjVdTgBCC3jnTc28%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:29.0428109Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A29Z&sr=b&sp=r&sig=4Z0NNzqBMjLvk51ad%2Be41rb4T5rLHJwIKFPuQmNS68A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:29.0429175Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A29Z&se=2024-11-06T11%3A07%3A29Z&sr=c&sp=rl&sig=WRfEouQirwsGQfde7etOh2G%2Ff77sUCZqZvyvByfknBQ%3D","expireDateTime":"2024-11-06T11:07:29.0430788Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A09Z&sr=b&sp=r&sig=ppxdcnfWt0xn9Ff5qoNGHWfo9rwAr2nQV1bdV8aQ5rQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:09.185265Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A09Z&sr=b&sp=r&sig=MPBIBMt4wlt%2FDCjn%2FKNxPSAsyaeHGbk%2Bxw0zStXwupU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:09.1846964Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A09Z&sr=b&sp=r&sig=CmfU8QadJAQNwuLqFEShvufRdt%2B68E6B%2F0yXhkFm7aw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:09.1854497Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A09Z&sr=b&sp=r&sig=8F6mmXAIQLsPmtSmV6YvWQUd8iJY2aNMovb6AQCO6ws%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:09.1856347Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A09Z&sr=b&sp=r&sig=%2BU17IGPlgH%2FIHUDUnN64ZyDJCqOAWgMjx3Huar%2FNIeA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:09.1858157Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A09Z&se=2024-11-20T12%3A23%3A09Z&sr=c&sp=rl&sig=%2FCzm00m0ZQTgl6o4v3DVQo7gFXfct4DFH4IoAqVHEOg%3D","expireDateTime":"2024-11-20T12:23:09.1859991Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '5012' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:29 GMT + - Wed, 20 Nov 2024 11:23:09 GMT mise-correlation-id: - - a8c1b139-c501-4b88-9223-cb095c88fb3d + - e2f1db86-7438-4894-bbe9-bef0ad5f1842 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100728Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bfhm + - 20241120T112309Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000018qh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2301,31 +2436,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A34Z&sr=b&sp=r&sig=ivDsF6AWc%2F4TBIywhheMXM6IyAgQfXrQWylVNQQ02Y8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:34.3692091Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A34Z&sr=b&sp=r&sig=FM8nHiUFelegInRULoRcYL9cgHZVgBgEjZMZ3uycNB0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:34.3683573Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A34Z&sr=b&sp=r&sig=gDsJIRw4oQl7LEJimzbHCTVZ5mfJlyY6aCRnTgXB9jQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:34.3695652Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A34Z&sr=b&sp=r&sig=jZkXZ3WPvyqqNq3P8RI%2Ftkqy%2FSO%2F3VtpANHwfFYorgo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:34.3697454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A34Z&sr=b&sp=r&sig=AWMxLqbTd8%2BOolc%2FxxIZ5OrWiFRAlBYERwb09nvjZwk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:34.3700779Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A34Z&se=2024-11-06T11%3A07%3A34Z&sr=c&sp=rl&sig=dcPqzcv7azwVHjg4OXUhcqDN0fVfE4JyfpCRmXOTCuo%3D","expireDateTime":"2024-11-06T11:07:34.3703601Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A14Z&sr=b&sp=r&sig=c%2BHPtxktzgH5DWOnHHi%2BSOdD4Mr5AOi99466Cx9vVvs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:14.3050098Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A14Z&sr=b&sp=r&sig=NLxEIBo6EYzZDy4BaDaekbpb7%2BcaS%2B4f1pNwQo05NRw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:14.3044312Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A14Z&sr=b&sp=r&sig=fGpwxAKLJNw0iwB8LX1oxI0ojFjs1ZrdfRNEhRnf3Rg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:14.3052196Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A14Z&sr=b&sp=r&sig=hNoD4%2BAHBUDTecton7kNG%2FEFy6Cl4%2Bz5Cuby8SyrMZ4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:14.3053915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A14Z&sr=b&sp=r&sig=Zqo6I10PDXP07jTh7pz9g6ZjdKGe8lmIas4AA6bd9%2Fs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:14.3059469Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A14Z&se=2024-11-20T12%3A23%3A14Z&sr=c&sp=rl&sig=KyyX1f3khmz11AGWtzNzqs9idC4j7aU9qVMLpWl2q0c%3D","expireDateTime":"2024-11-20T12:23:14.3061806Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4904' + - '5011' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:34 GMT + - Wed, 20 Nov 2024 11:23:14 GMT mise-correlation-id: - - a0520f85-f004-4535-9729-e3b2e83cc5ae + - c56addd0-233a-4b9d-91d6-6f745beffa57 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100734Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bfvw + - 20241120T112314Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000018w9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2343,31 +2479,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A39Z&sr=b&sp=r&sig=vPvE4CsBQiSCPyTSxh58p4GKtROwNTDuTqib7NN9uuY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:39.7014295Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A39Z&sr=b&sp=r&sig=k5tcpMfsdXTujKoaXv3KsPYb91jKrt1fgJJIw6vAKKc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:39.7008581Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A39Z&sr=b&sp=r&sig=YdtnqoVLSy19FBX17PDUOpdyzvl3SAcC1BPyDDpDjmU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:39.7016254Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A39Z&sr=b&sp=r&sig=tG%2FtGZ8RsH2IMr%2FwwHKanHA9EJXSMYRVUFtL%2Fm3Uudk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:39.7018003Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A39Z&sr=b&sp=r&sig=rkFKX6OKSAudgL3JL%2BosSJJFo9LFGxFg54GsSLbZuUc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:39.7019741Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A39Z&se=2024-11-06T11%3A07%3A39Z&sr=c&sp=rl&sig=9TsajwopCpBzWRb1W6e0dmD7JCndDqL7rO8BKKCn8QY%3D","expireDateTime":"2024-11-06T11:07:39.7021457Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=vIh9TWWTQvdRolyCMpB9LLDOkF88s%2Fap%2BJW%2FGzi4U8w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.4246958Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=VL7ir9T7mgjGnV0NTylgFGJypKvyMnJ%2BopUJgnAPooc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:19.4244103Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=JCsV0yYe0o2Cv417s7LYsBnw1jTxzkWhdROxYFIIDvQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.4248486Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=o%2Fb1Oh%2BNiIAGDeKorenfiZ0010eHz1NE9UBqYmUAxvw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.4249455Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=O2whVCjoENgRtu60uaAVOp0G9T4lRnR2huRFYrUZ7FU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.4250372Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A19Z&se=2024-11-20T12%3A23%3A19Z&sr=c&sp=rl&sig=zMp1lfxDT2YNTe%2BH%2FqtQ6TTu4nSiZWdAgJCLaZyzoMw%3D","expireDateTime":"2024-11-20T12:23:19.4251275Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4900' + - '5011' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:39 GMT + - Wed, 20 Nov 2024 11:23:19 GMT mise-correlation-id: - - 76083378-fb45-45c8-b2ee-ba6e5a1719d8 + - e12f6fb1-a6c4-47dd-ab8b-75042a5fd3db strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100739Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bg70 + - 20241120T112319Z-1846dc7bb4d86bswhC1YVRhm3s00000003y000000000191a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2385,31 +2522,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A45Z&sr=b&sp=r&sig=PW8r0ROQlqz3CYd5x7WUd8kz6kNaCq3o0Meysn8OhHY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:45.0165617Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A45Z&sr=b&sp=r&sig=%2FqODOOcwc8oReNvNSHAf%2B5EVP0kjXVin6Ib9hiQBPj0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:45.0161602Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A45Z&sr=b&sp=r&sig=ZcTxta8069yXgGZRTpdE1JgfiSuH7UuHp4uBOrqxYFk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:45.0167444Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A45Z&sr=b&sp=r&sig=6SfwALgZnkFu2X22rYSrSsdxtKyFq1kMi7Oul4lCtTY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:45.016897Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A45Z&sr=b&sp=r&sig=gO%2Bd5maIyk7JT%2FPicTYXZVbo%2BXqeRE2s7xuuhcHOlRA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:45.0170171Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A45Z&se=2024-11-06T11%3A07%3A45Z&sr=c&sp=rl&sig=FKZs1XBOwYhVn%2BNjCHvC5N77S8%2BAGoB3ADomcBF2r%2F8%3D","expireDateTime":"2024-11-06T11:07:45.017193Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=%2FBjy50Az8RimCxmm19vbpSzfxygcRgCHRZOc%2BThkp3Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.5513768Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=BqlS29bOt8wZkYQhUhMZt%2FiTBPBv08bZT0y6rKQR0Bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:24.5509509Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=5LwKoqdXzIDm0mNv7hw6IQNXw1HVSONIlPhbKnyMn14%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.5516021Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=atZ%2BIMqBbZZpQFV%2FiQsO22K9A%2FnT2NZ36KHwYA8%2B6%2BE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.5517793Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=o7ul%2FIFauyaPcWHRghC3Ftg6hBdy4Ub3msugdZ5qPeI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.5519539Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A24Z&se=2024-11-20T12%3A23%3A24Z&sr=c&sp=rl&sig=TVRjt7A1B7s5uZhDpw%2Fz7DJfgftHuNriS2i3wBuevk4%3D","expireDateTime":"2024-11-20T12:23:24.5521267Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:45 GMT + - Wed, 20 Nov 2024 11:23:24 GMT mise-correlation-id: - - aee5abb5-1f83-46d4-bab8-1278d8e615d0 + - 3e17dc0d-34bc-4ea4-85b7-1ed393b6955c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100744Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bghv + - 20241120T112324Z-1846dc7bb4d86bswhC1YVRhm3s00000003y000000000196d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2427,31 +2565,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A50Z&sr=b&sp=r&sig=6YCdKig2hn%2BF%2BKKjkea9SA8agdJlJyADa9W6GEV1b1o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:50.332892Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A50Z&sr=b&sp=r&sig=5WMhGtMVLu5v%2Biv7pJ0seWtNCdV0XjRCvuCNxUDXbzc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:50.3326427Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A50Z&sr=b&sp=r&sig=FrJT3DHVw6MAP00LX4gY02EEnL7bd2XVgTJFKPuArIs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:50.3329494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A50Z&sr=b&sp=r&sig=kJrqKUu1o3ncs8K%2FNxpKMO4dha6fyjqcvIpYyJINcEU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:50.3330069Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A50Z&sr=b&sp=r&sig=ebgqQsVQivsj09BOTNsQa%2BKY9GETGV%2FHiKiTuwrM7s4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:50.3330633Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A50Z&se=2024-11-06T11%3A07%3A50Z&sr=c&sp=rl&sig=QoMdhL%2B6PSSavPwNmCdJzWOwV5cPNU9FMWgc2kG1CCM%3D","expireDateTime":"2024-11-06T11:07:50.3331197Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=CPO7u6MhI%2BvQTROWvyGgF5onLVNgkBIlhpebiRfxsTk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.7774566Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=RbjNJvLi3WNEFqS7%2FcgY3ElV0Iq6UxCvi6atirRokVA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:29.7770838Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=I2jIQ%2BLsSCcrN7CdOmUEqJuFkkdAg8kghTETnnn%2BlR0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.7775984Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=JKW3GHHOHSl0W7AeLUJakmZ2qZIM9CQ8Qy2JRCYzuE4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.7777582Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A29Z&sr=b&sp=r&sig=VSKV6cnlZZUlhcAICzJSvWnIDpUH6wIHdDIR15wtqFU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:29.7778986Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A29Z&se=2024-11-20T12%3A23%3A29Z&sr=c&sp=rl&sig=ai2P3V8lSus4VN6Jo1zjg8cKlThy64lPoBzfkSJ3%2F7E%3D","expireDateTime":"2024-11-20T12:23:29.7780359Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4905' + - '5005' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:50 GMT + - Wed, 20 Nov 2024 11:23:29 GMT mise-correlation-id: - - 8da1c4ed-e1dc-4c5f-a20d-cb83c00bc57f + - a1c967f9-bbb1-4adb-8d75-f01bdf542b57 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100750Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bgv5 + - 20241120T112329Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000019e0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2469,31 +2608,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A55Z&sr=b&sp=r&sig=0Hr63efdsAgw3zeJm4Hisq8nVMbblDaalEhNh8k%2B3pY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:55.6470767Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A55Z&sr=b&sp=r&sig=0X3f69f4akJ2L%2F0yL4AhzFUDFY2BWwWxTPlbqEliX24%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:55.6465846Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A55Z&sr=b&sp=r&sig=%2F9p1ZHWG08cU%2BKMvZ4eraFH4sUrMiJM4tOqvvwIIQj0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:55.6472176Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A55Z&sr=b&sp=r&sig=yAqOIgYP%2BN8JvL8vZt0h3RY9y24WmNYbLV9Vf0qG4J8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:55.6473667Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A55Z&sr=b&sp=r&sig=yqS9mn2od2%2BOC%2BpU3U3QS6MTmdGXZBwFv%2BEa%2FUyuYPs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:55.6475524Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A55Z&se=2024-11-06T11%3A07%3A55Z&sr=c&sp=rl&sig=ea8XXI%2BWJkyZXKlRE9oldJI%2FWrsYEnmMJmGdF4D22ZY%3D","expireDateTime":"2024-11-06T11:07:55.6476759Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=4fmSGzU7kqhcI6n8Ot7Rk4p2Dut0RiJYKWnvjP0BwRI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.9051623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=AHY36AsJVmM3VH344ehExVhqKEYGQx%2FnhvVI7W0dSY8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:34.9048251Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=ZLSzlQ5I03jTZTEhAbe0KMxpYFmFyjmFkvPW%2BNoX4gY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.9053029Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=rrZ332reMIE9oWTVVtLdXL3GTFlfSkJxZhFDghM%2FWlM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.9054486Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A34Z&sr=b&sp=r&sig=7wtUuXn8xkE2nmaaZUUBCCeUJBLOnh4SAWwuiDlAQhQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:34.9055857Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A34Z&se=2024-11-20T12%3A23%3A34Z&sr=c&sp=rl&sig=DQtAW3vc%2BI6%2FnPlZVVDDxGzLqKOtObKj2NTsMaMOBs8%3D","expireDateTime":"2024-11-20T12:23:34.9057225Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4914' + - '5005' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:07:55 GMT + - Wed, 20 Nov 2024 11:23:34 GMT mise-correlation-id: - - 828a72a9-78c2-4bc0-a8f5-1d7f56c78878 + - eefd5d43-d310-4b76-ab88-2a4dd81f4a88 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100755Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bh50 + - 20241120T112334Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000019n3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2511,31 +2651,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A00Z&sr=b&sp=r&sig=6cUWx10SqLMhCwpnteZoTJl6dxi4HRfStOvdABDOBEo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:00.9614268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A00Z&sr=b&sp=r&sig=oc9J1%2BXiQveZnS1nlh7h%2B%2BPVFsw%2FRQvM850rw93Sxb4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:00.9611666Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A00Z&sr=b&sp=r&sig=2FJhvaJL0%2BMkaLIHJcyE6t%2FVwqXmA9VuPM3HkH2eLhI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:00.9615082Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A00Z&sr=b&sp=r&sig=xAaJ4N334WMp%2BjDtSOxgEAWnPU9EagM3Dx5yurRCt%2Fw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:00.9615864Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A00Z&sr=b&sp=r&sig=Hc%2BKwOVrH%2BG8uEfHfZVCsFPWGCyjBc9aE0wOwfNGvzc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:00.9616602Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A00Z&se=2024-11-06T11%3A08%3A00Z&sr=c&sp=rl&sig=ibSgpwmOJlSkrkV0qDF6SdaAmUIdDPfFJO%2BKPPPwx60%3D","expireDateTime":"2024-11-06T11:08:00.9617301Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A40Z&sr=b&sp=r&sig=AdA3WowufTSZqgazuZkcF7kBsw9k6BaTK1qrS8Er4Vg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:40.0272877Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A40Z&sr=b&sp=r&sig=CUV6rGru7TxJJWPEbKlQ7HVJQm4K%2FVx7om0%2B%2FDmE4xE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:40.0270217Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A40Z&sr=b&sp=r&sig=7VMVhnPYpdTpeBywGDCsmW4FEPBBfM6%2B90iF39kpjgY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:40.0273791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A40Z&sr=b&sp=r&sig=4t5QMq97UCX717x89DBQvXRo9VOsnGhG4U16dNzLnUA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:40.027469Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A40Z&sr=b&sp=r&sig=PgeB0qkIsOee2gCOZ2ZuUDKeU1zI2B2ecBmoHo%2BxuYI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:40.0275467Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A40Z&se=2024-11-20T12%3A23%3A40Z&sr=c&sp=rl&sig=7%2FFup%2B%2FA9o0f8lC4Ye21V4aODeYsP75BBCweQZVN8JA%3D","expireDateTime":"2024-11-20T12:23:40.0276246Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4914' + - '5010' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:01 GMT + - Wed, 20 Nov 2024 11:23:39 GMT mise-correlation-id: - - 1794fcbe-a15e-4489-b9cd-2e18210a4364 + - 472fb9c4-efa7-4373-bf73-43e32d515abf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100800Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bhf3 + - 20241120T112339Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000019rd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2553,31 +2694,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A06Z&sr=b&sp=r&sig=S0E7cO79PXXIT%2FkYh5ll3iIq2raAVVmUAmADIQkdCVQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:06.3054996Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A06Z&sr=b&sp=r&sig=0WnbEGbPeDiYEzJWZuXfLqzIlZRLnQf%2FqAwl3X5NUlA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:06.3050368Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A06Z&sr=b&sp=r&sig=BNQjPmIZluek0I7eZ5nc4pr14L2QkI2w%2FB%2BTKur26Og%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:06.3056233Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A06Z&sr=b&sp=r&sig=vynTU9CjZIN75xNJ2VfzG3h%2FWQtXjSYuSogtcCmAn2A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:06.3057638Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A06Z&sr=b&sp=r&sig=rVikBSKsX5HxoBrLxrZkg2C1sH66gHD3SqpPuN%2FwpEo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:06.3059228Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A06Z&se=2024-11-06T11%3A08%3A06Z&sr=c&sp=rl&sig=fkUr%2BLVKmlJ7w08PUZ8TeZ0T2x4FNCI%2FSBZGn8K5dFg%3D","expireDateTime":"2024-11-06T11:08:06.3060613Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A45Z&sr=b&sp=r&sig=ED3oPKXBU2BwPbYvH9ZbmeCLkjUgb0CeOg8vKfLkwIQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:45.1401737Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A45Z&sr=b&sp=r&sig=LifjjxoGrDowutBnngmih9gLfnpH2lFSK03z7DOyv7U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:45.1396956Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A45Z&sr=b&sp=r&sig=Iv%2Fc7nB2zZKT%2FE7Gi7TUhOD36aOhXqYYK8LZbc8%2B%2Fds%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:45.1403393Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A45Z&sr=b&sp=r&sig=zcq2wSCmnEcltPCP%2BAwWQgFXnwcuwk4octLXgQqVQdQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:45.1405051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A45Z&sr=b&sp=r&sig=doQWe19D2PwbUhkoJ0yC6Yckul2LbYEhPYLDiNdpI9Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:45.1406699Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A45Z&se=2024-11-20T12%3A23%3A45Z&sr=c&sp=rl&sig=7WbNERs1Q971gfLEIVfh242N1EavAAw%2FlFvP%2FaO2KKo%3D","expireDateTime":"2024-11-20T12:23:45.1408309Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4908' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:06 GMT + - Wed, 20 Nov 2024 11:23:45 GMT mise-correlation-id: - - 52e5e498-f8f9-484d-94a6-a2013d63aa80 + - ffc1f32c-5d8a-4ef4-b324-a645e31703b7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100806Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bhsa + - 20241120T112345Z-1846dc7bb4d86bswhC1YVRhm3s00000003y00000000019xz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2595,31 +2737,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A11Z&sr=b&sp=r&sig=efAX3kUA0BhXt1pWJhcF8dfIjvEhanur7uJab%2B2r4ks%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:11.646809Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A11Z&sr=b&sp=r&sig=3WRY%2Fa8Dgz8G5WSn%2FgJ%2BEAvmVb9uAwIlNdWPw2y3g60%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:11.6463756Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A11Z&sr=b&sp=r&sig=QbEnpkbbaRsNQecIH4v%2B6TgMkLGp9GMMk41V7aEkBfg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:11.6469248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A11Z&sr=b&sp=r&sig=oXE8%2BgmPpVcyClMW3ghzUxgtnBZ%2BmHuZfG35n%2BX4HDo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:11.647023Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A11Z&sr=b&sp=r&sig=iIJGiWtawYkXW5A1jOI7k6%2BaXGD%2B4aKaL1sbzz%2BFnbQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:11.6471184Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A11Z&se=2024-11-06T11%3A08%3A11Z&sr=c&sp=rl&sig=0H7EBfYSXqQNN5sswPa6RufU67hSXmpz3EfHARIHZmc%3D","expireDateTime":"2024-11-06T11:08:11.6472131Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A50Z&sr=b&sp=r&sig=gxtizb1cnVsi3R56686YG37Am%2FyDjmbCvNG2lvHGmUA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:50.2666118Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A50Z&sr=b&sp=r&sig=%2FH6deYyltRiGBbToqUtP1YMiVoNqbKOw%2FRp7vRbZeCU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:50.2663394Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A50Z&sr=b&sp=r&sig=4HKpR4fGVxQwNjpGpkpfuQXWIJ9PoZSRAcmjWBcjsiE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:50.2667048Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A50Z&sr=b&sp=r&sig=QhJxzJYlh%2B04sktnGekLwsIjVgBkz6UatYePfAE5bMc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:50.2667944Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A50Z&sr=b&sp=r&sig=raQRxHP1i3NwBxAx9BJlyTP94jcymW1ShrHSwQTT4bo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:50.2668823Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A50Z&se=2024-11-20T12%3A23%3A50Z&sr=c&sp=rl&sig=J7DET094cWItQ3wq4CyNu4uwAjafQ58wxmpEpPL3fBk%3D","expireDateTime":"2024-11-20T12:23:50.26697Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4912' + - '5001' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:11 GMT + - Wed, 20 Nov 2024 11:23:50 GMT mise-correlation-id: - - f9f7ab61-f9f2-456f-98c1-3860c7c4f66a + - 4b214287-8d0d-4bc0-87c6-1288213d2629 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100811Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bk0t + - 20241120T112350Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001a3a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2637,31 +2780,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A16Z&sr=b&sp=r&sig=lIXEvhHifK9tGXt95LsW%2B5bbg0OwSgqXfs1jnZGgZxs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:16.9824492Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A16Z&sr=b&sp=r&sig=Zk4O3vI536Wtn%2BqIcIcdAMEmj2%2B%2BUaOhTY21vHNmORg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:16.9819706Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A16Z&sr=b&sp=r&sig=5OZU%2B2WXOxYGNBDNVMj%2BwUhCztM7TCLpUZxYN7Dn2y4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:16.9826039Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A16Z&sr=b&sp=r&sig=p0VAoqIhxx5x4RMtMQL%2BnAf2TvOWTMXvPsjvo92ZXfo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:16.982802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A16Z&sr=b&sp=r&sig=rln28q4XWlCEqPd4n20gPr3K6aM2rOYvczc5LziXn9k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:16.9829897Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A16Z&se=2024-11-06T11%3A08%3A16Z&sr=c&sp=rl&sig=qsCVskrvFMDIhIwPM4ylgTvoh2q0YFDkd8L0zyypc2M%3D","expireDateTime":"2024-11-06T11:08:16.9831697Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A55Z&sr=b&sp=r&sig=eyiTvlvgYHlrGBJB1R3GK5fmpJP%2BneDW48K9Zst%2BF3w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:55.391573Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A55Z&sr=b&sp=r&sig=IbIocBttip3B1Pbit69Ps9EOYU59MOsCgdTdB9yM64U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:55.3906109Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A55Z&sr=b&sp=r&sig=iPwt7ZXfP5Gf65IdeTGBR6bJAzJnyqTlSxWom8bnIxE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:55.3919337Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A55Z&sr=b&sp=r&sig=u%2FV1rTtIzl7R5%2FeBfSGN571xtyV5t7a3on2pOhDpBWQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:55.3922253Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A55Z&sr=b&sp=r&sig=qRBMxSI9v8N%2Fy2IhiAFqz7qJGfNKewcv0kbxKv8nX3s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:55.392479Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A55Z&se=2024-11-20T12%3A23%3A55Z&sr=c&sp=rl&sig=Jc3zVmL7ppxZ0C7YF2qV9QjrLOCFKIHfeDMGaHBOhNQ%3D","expireDateTime":"2024-11-20T12:23:55.3927211Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4905' + - '5003' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:17 GMT + - Wed, 20 Nov 2024 11:23:55 GMT mise-correlation-id: - - 158b417e-f794-419a-936f-13cefa3dd0c3 + - 4f11129b-901e-45fe-9852-3e2ea0b23024 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100816Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bkdq + - 20241120T112355Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001a89 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2679,31 +2823,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A22Z&sr=b&sp=r&sig=rjLO2YLrhWeQ9zT5dDkOcXhp5hyg4MezD%2F4z9tZi23E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:22.3032234Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A22Z&sr=b&sp=r&sig=X6mhAe5YitZp458ovyjj6Nf9mI3YB7%2F9jNDs0V2fbiA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:22.3027528Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A22Z&sr=b&sp=r&sig=cbRDJscIQfTdykuNEUdo7brJ5CEMit14x0wBDVeI2DE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:22.3034254Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A22Z&sr=b&sp=r&sig=YGZSJcal4iNoc%2BNFRyYV6Pb50CI2wmcwW0ecc0Mu%2BEo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:22.3036246Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A22Z&sr=b&sp=r&sig=hIlKLw7I1kRqbUiideezK%2BhmjSkhIjErXqINCv16p9c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:22.303853Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A22Z&se=2024-11-06T11%3A08%3A22Z&sr=c&sp=rl&sig=D2h6lZbD%2FBcWm8XpP4r3xGUruU04YLLfFOFiuAYKCxk%3D","expireDateTime":"2024-11-06T11:08:22.3040345Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A00Z&sr=b&sp=r&sig=zxRuGDm3KdlbVx9bz8kt6564Yk5CYCPhPOpOsy7QPFE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:00.5081161Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A00Z&sr=b&sp=r&sig=OowshdraYEMfHNwp7x41AVFbZlom8gtZUXkadZMmgXg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:00.507718Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A00Z&sr=b&sp=r&sig=3jYbtknw6Ghimhox6UH6l%2BpfndU06lY0%2BtKV5E2%2Fg9w%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:00.5082158Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A00Z&sr=b&sp=r&sig=Lz6OWvCHO%2BW7lZBZk9dJMVjLf4wbyCNkmWbhqVl4lPY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:00.5083314Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A00Z&sr=b&sp=r&sig=qyEyVo1nKpeiNtzLkfs48%2FzasGALtzTcwKqcyGoGx5A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:00.5084284Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A00Z&se=2024-11-20T12%3A24%3A00Z&sr=c&sp=rl&sig=LICyD5s4Ahv%2BIs3AJZf096XMQuUXcA12bLXoI9gw8yY%3D","expireDateTime":"2024-11-20T12:24:00.5085243Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4903' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:22 GMT + - Wed, 20 Nov 2024 11:24:00 GMT mise-correlation-id: - - 06c9deff-3822-4b8f-b145-83d992ed3ca8 + - 008f1804-1d25-46ca-aab5-ed2b18b99250 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100822Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bkq1 + - 20241120T112400Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001adv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2721,31 +2866,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A27Z&sr=b&sp=r&sig=YD6GyQW%2BlMad7Cy2ut6GOWKDdxIeykSmPEvrIQ5ZjqM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:27.6299795Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A27Z&sr=b&sp=r&sig=%2BB3Y8%2Bk77E4Sus9lhDJ0t9rp62DfrWImgLo%2B4sX0S6M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:27.6294652Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A27Z&sr=b&sp=r&sig=vOhYvpvH%2BQN1G1bjBMd%2Bkt9NdWAUg8olFX6zlgZ2yT4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:27.6301841Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A27Z&sr=b&sp=r&sig=YnZx9JmSasjKjFdgvDiacJ2vKxKei8%2B%2Fbe1VACgKgco%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:27.6303431Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A27Z&sr=b&sp=r&sig=hrYXEc9hgIauXrduRCCxDOuzh9sfvA%2FmpURHKvBScVk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:27.6305177Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A27Z&se=2024-11-06T11%3A08%3A27Z&sr=c&sp=rl&sig=bwzRYM%2BUo9Toilq%2BPpmFYy4xO%2BGydDQTHGgDR5JIXpU%3D","expireDateTime":"2024-11-06T11:08:27.6306827Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A05Z&sr=b&sp=r&sig=u6s4tLFv1NBiV%2BVV3HxWStrHVI%2BCAkj14kZr3c5IVRk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:05.6337362Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A05Z&sr=b&sp=r&sig=pdS1%2F3awuLOaUq4LqnAILwPsfvv3GD2jmx6WvgspBG0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:05.6332665Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A05Z&sr=b&sp=r&sig=NlUGNnwTgp%2FN7WXZ4k8LVav%2FahCqeXIR0pRL9fiRtRs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:05.6339669Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A05Z&sr=b&sp=r&sig=DP8OFrdD3a6xde%2F1JNIGapttfSXdF5Tyx5XK%2BmEE%2FTw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:05.6341704Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A05Z&sr=b&sp=r&sig=Gaxoui3qJBnhLEEQ6Z5OzJcrQsJZO5PRtpKUSZw0BuQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:05.6343534Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A05Z&se=2024-11-20T12%3A24%3A05Z&sr=c&sp=rl&sig=2grlPtdoMdyfYNP35KaPLmg17u8odk9SW3RnqVgHaBE%3D","expireDateTime":"2024-11-20T12:24:05.6345434Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4916' + - '5011' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:27 GMT + - Wed, 20 Nov 2024 11:24:05 GMT mise-correlation-id: - - eeba7b52-22c7-4e43-aff9-7b75be47f0fe + - 9ab24c6d-ff9f-4289-b7a8-0fe78c1824bd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100827Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bkz4 + - 20241120T112405Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001amz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2763,31 +2909,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A33Z&sr=b&sp=r&sig=0fBdp%2BeogKESd9KZFiKK55%2BILu2PiQoi55P7cl25EsY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:33.7886051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A33Z&sr=b&sp=r&sig=cmpTkm%2F3MmhMToy4fiv1av%2FL7Kk3UPfkRWzDQPMaGVs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:33.7882519Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A33Z&sr=b&sp=r&sig=OMUHw4TVEFpDJrXlC%2F4ygC3z6O786k2CmO%2F%2F05OawpU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:33.7887289Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A33Z&sr=b&sp=r&sig=qImD0bK6e2wXYHo0rjVnAIsORozmWLXU0Dyx95VDJLQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:33.7889105Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A33Z&sr=b&sp=r&sig=YlsX1XKkmwOFWlLVttlb8FBWl%2BBYDoIRmpzKQQ9KGQY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:33.7890727Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A33Z&se=2024-11-06T11%3A08%3A33Z&sr=c&sp=rl&sig=Va5kQbZaym8A91whEGa5P8dadISVpUzGTV8M6Gp3Hpc%3D","expireDateTime":"2024-11-06T11:08:33.7891979Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A10Z&sr=b&sp=r&sig=%2FaB%2FReHsRjPlaVKOw0TlTLwXShN00cgfVwrXxH%2FO4Ds%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:10.7554418Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A10Z&sr=b&sp=r&sig=7evWjEnxel8966RL62kuF7fDSYM%2B3CllAm1xbECzePo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:10.7551643Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A10Z&sr=b&sp=r&sig=oSN5tDsW%2FZlhhoB3%2BJEMpOlBcbq%2By15kEnh%2Fh61sl7w%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:10.7555489Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A10Z&sr=b&sp=r&sig=1SdpohRhJHxEnQ0zio5FWpcYxR4x6zxxdkLrvfez7NM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:10.7556398Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A10Z&sr=b&sp=r&sig=Xbl0BstqNcmcUF8EDSGEKYDLqJZbIiKODGf3E4BM8ZY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:10.755728Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A10Z&se=2024-11-20T12%3A24%3A10Z&sr=c&sp=rl&sig=Jsv9fIir7sAsXYXigydLrR5GQ9mhALHOSC4nwZ0X2os%3D","expireDateTime":"2024-11-20T12:24:10.7558157Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4908' + - '5010' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:33 GMT + - Wed, 20 Nov 2024 11:24:10 GMT mise-correlation-id: - - 86b11ede-9a42-48ea-b914-9a134077ca62 + - 95dd9756-ca8f-4426-96e6-c244e917dcd8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100832Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bm8c + - 20241120T112410Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001atz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2805,31 +2952,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A39Z&sr=b&sp=r&sig=KLYKETe3j9WutF8x9DCDSnwRNQy7jYA4NlK2EQR2zJw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:39.1384438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A39Z&sr=b&sp=r&sig=7Qk%2FzTH1nVuUDejeRN9sJL7nb0AyFiB%2Br89sUuAI438%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:39.1380401Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A39Z&sr=b&sp=r&sig=9b5InhlKg1xjhl5Zhkn8mV2DT0jFssCc0UM2p6gqC60%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:39.1386359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A39Z&sr=b&sp=r&sig=w8gIg2HcA45IgfdMEIv8qIMQ7ZFJpyRq6gV46lcdAcg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:39.1388177Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A39Z&sr=b&sp=r&sig=G62fe5O4YpnfeLwWAQG54HD7GBuZeoZWCNifvq561lw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:39.1390084Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A39Z&se=2024-11-06T11%3A08%3A39Z&sr=c&sp=rl&sig=USy%2FyCtcGQpVcKe0%2F%2F3UNnxJQVJ5PukC2pMUa1GCp%2B0%3D","expireDateTime":"2024-11-06T11:08:39.1391912Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A15Z&sr=b&sp=r&sig=FGAON5IMtXXQOJG%2BbdOAwpXuaVp8GHL3eOma%2BGdExW8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:15.8836806Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A15Z&sr=b&sp=r&sig=tkMAv1gX%2FODmjaPwDivLTcahF4oQx8cSheVQzJmbqyw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:15.8832692Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A15Z&sr=b&sp=r&sig=AKwlYqLukZTcdtJjcrFngBIhZEPQPXX4ocWxEoIP86s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:15.8838386Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A15Z&sr=b&sp=r&sig=JDpgorEurhlByJVZ6XveDLfbBkKnWQdpent%2FnWUP7lo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:15.8840114Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A15Z&sr=b&sp=r&sig=QWFshVplAzjHZrKB4aZ276wMFkUlqF96RWB6whu%2B7Qk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:15.8841673Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A15Z&se=2024-11-20T12%3A24%3A15Z&sr=c&sp=rl&sig=8hyG8gAZ%2BArnmmryQogUOUfa9B77k%2B8ae8RsWkp3PJc%3D","expireDateTime":"2024-11-20T12:24:15.8843338Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4904' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:39 GMT + - Wed, 20 Nov 2024 11:24:15 GMT mise-correlation-id: - - 8f865c37-f40d-4df5-98e1-a739e1752a9b + - de5b8b82-6d51-4db5-abdb-8cebce564950 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100839Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bmp7 + - 20241120T112415Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001ay9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2847,31 +2995,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A44Z&sr=b&sp=r&sig=4%2BQvTrjpOFchAaaEFeRmp1EGDnteXKmP%2BPs5%2BOaYVak%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:44.7806344Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A44Z&sr=b&sp=r&sig=HEB58izPWyyuMFNdLJ7lzOKFCw%2Bdgol%2B3nT5r15Z5Is%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:44.7767885Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A44Z&sr=b&sp=r&sig=bYyPPRfVs%2FnQ6oPcqmov6af62RiO%2FpJy%2FE4AYZzv%2BAI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:44.7817962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A44Z&sr=b&sp=r&sig=NiCG4N%2BaQRCm3zCKaj7xeVyprGCf6NLz6l4DYTzVSF8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:44.7824616Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A44Z&sr=b&sp=r&sig=WM381PVVJOZSGCYj1yqj4Z0FobifTtClmh3PhXBH1Bc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:44.7828205Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A44Z&se=2024-11-06T11%3A08%3A44Z&sr=c&sp=rl&sig=7iZBufWird%2BhQk8DpC%2BZQOXVy30Cu05TJS4UUsECkLY%3D","expireDateTime":"2024-11-06T11:08:44.7830735Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A21Z&sr=b&sp=r&sig=iMlAihcqLPXNaKUuNE4VcxHEwcj7dZoEPLX0ZuofrJQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:21.0007629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A21Z&sr=b&sp=r&sig=Z93ys9BK0FpqY%2F21PxKi6hsi27VYs3NR2pFuaRkp6W8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:21.0003009Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A21Z&sr=b&sp=r&sig=rufGi1Mvp6G6kLnktphf5%2BFuxXjt1t89YNG28A5bVn8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:21.0010771Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A21Z&sr=b&sp=r&sig=nUIhrRZ2pETOWOMcODecbW4ZQNRBDIWURRbCq0STalk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:21.0011733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A21Z&sr=b&sp=r&sig=5RUArNTk4j9LISa3HEuX5O8AcsQji4tpkTzLhVzoSp8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:21.001263Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A21Z&se=2024-11-20T12%3A24%3A21Z&sr=c&sp=rl&sig=jpQdC1jdPRAIFZIExuZJ%2FfqugJ9lYDuqQEBU%2BE1DjmE%3D","expireDateTime":"2024-11-20T12:24:21.0013481Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4916' + - '5002' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:44 GMT + - Wed, 20 Nov 2024 11:24:20 GMT mise-correlation-id: - - 02d2aba2-fb10-486f-bed0-673580921934 + - ff1021c0-26e4-4fa1-a655-891ff1a8df51 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100844Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bmyp + - 20241120T112420Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001b2s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2889,31 +3038,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A50Z&sr=b&sp=r&sig=PKj49gN0SelYQualcre6loqEUtt6WC%2FU0PFU2d4%2BLiU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:50.1308802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A50Z&sr=b&sp=r&sig=4IyWJ3CD99HrWugeE%2FcVnDPGt99ZSJ6e66E%2B%2BF6T2zs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:50.1304998Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A50Z&sr=b&sp=r&sig=IWa5E8pCjFg%2BGePV%2B7%2Bu1z15CJ%2FNOwzo2WxVLdSZLHE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:50.1310213Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A50Z&sr=b&sp=r&sig=0QgxRuv%2BGHeOf598AVYkXIDOa08Q2QHQyEmKNbJRowA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:50.1311666Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A50Z&sr=b&sp=r&sig=d1ZHgjdboF3LhX%2BX6M7g%2B3FMCiQc8y4%2FAf183hAO2%2FI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:50.1313125Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A50Z&se=2024-11-06T11%3A08%3A50Z&sr=c&sp=rl&sig=ocVSaGLBd0EjskFLwSVLV6eZp6LzCQDHzekaoj9Eas8%3D","expireDateTime":"2024-11-06T11:08:50.131464Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A26Z&sr=b&sp=r&sig=R4xjiC3JxqBDcv0xIE%2BIk3LwNmMIsjV4ADEzKBaV5H4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:26.1212444Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A26Z&sr=b&sp=r&sig=XbhUcI5Ai9yqDWne9Q1IiY17z2xooaYIA4mkZByKLjQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:26.1208003Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A26Z&sr=b&sp=r&sig=lpEh8LHWVVx413JCRlpw94gWK%2FfSZgVFdKUfuPRRSh0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:26.1214542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A26Z&sr=b&sp=r&sig=s4DTLMneb9uiX9g%2FSLn0dmLlxvvgEve34%2Fv6%2Bx1Zqgc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:26.1216642Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A26Z&sr=b&sp=r&sig=qJYCp%2FncWm8CblupK%2F0YSXI2HgVe1X1WOV1YsHpDNkg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:26.1218687Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A26Z&se=2024-11-20T12%3A24%3A26Z&sr=c&sp=rl&sig=ceyY4Yj%2FbGL5TwSe9JCGV%2FCHFXEE4rhCN2c0Iprk%2F00%3D","expireDateTime":"2024-11-20T12:24:26.1220896Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4919' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:50 GMT + - Wed, 20 Nov 2024 11:24:26 GMT mise-correlation-id: - - c57562f5-8a55-4898-ada0-958936e931da + - 85711a21-747a-4827-94d4-cd74d08fc25a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100849Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bna0 + - 20241120T112426Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001b86 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2931,31 +3081,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A55Z&sr=b&sp=r&sig=o7Yxq2OEoDqMcDZYTVr%2FFRec5OIhsxI4GyMz6Nz6%2BzM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:55.5204679Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A55Z&sr=b&sp=r&sig=lhjsROg%2F1wCxGbUJQ%2BHXh5aiutZxy1HF7GuZXz4gyB8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:55.5194904Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A55Z&sr=b&sp=r&sig=czLdA30OPcZRsY0kRVzP6s9UtrUGVrH3lkopvKIHDsY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:55.520644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A55Z&sr=b&sp=r&sig=S3kchPVtjkHLUnCB%2F4flvyOjzAOfTCcysPuZQXeD2yM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:55.520833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A55Z&sr=b&sp=r&sig=nmzN1AF02yyUyUZVsnZjJadQ%2BWAQEgt9XP%2Fhl12seTk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:55.5210034Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A55Z&se=2024-11-06T11%3A08%3A55Z&sr=c&sp=rl&sig=Oato%2Fowslo9rqkSvehZN8MsSrTnW7EOdp5gyoaPh2VY%3D","expireDateTime":"2024-11-06T11:08:55.5211854Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A31Z&sr=b&sp=r&sig=jatB1MZpoUBj8isNXmHnXxP5VepMbz7jNpe63ngFeAw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:31.2450845Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A31Z&sr=b&sp=r&sig=ImKDuix2XUUl93opsv7qAMsS8FGkd6u5bGmXYsLWd00%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:31.2448079Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A31Z&sr=b&sp=r&sig=K%2BkT56TSQrZI6jQ3WKucmVnaIhmkw1ps2mcNmUkTOaw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:31.2451737Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A31Z&sr=b&sp=r&sig=b4s7o%2FONLZOZaeztOY4Dlbiba0w%2FbUL4NIRYCrFHkzw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:31.2452731Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A31Z&sr=b&sp=r&sig=m%2FEnyBR8M4gYSbjAuHVMSjyTCwXfHWlmR8WbmTdgl3I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:31.2453587Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A31Z&se=2024-11-20T12%3A24%3A31Z&sr=c&sp=rl&sig=F8WXv%2B6KMP4KL6CBhRiDvFKAQ6rk%2BDl9ZcS5g9I3LA0%3D","expireDateTime":"2024-11-20T12:24:31.2454445Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:08:55 GMT + - Wed, 20 Nov 2024 11:24:31 GMT mise-correlation-id: - - 6ca4ba7f-84c2-4698-8b7d-e5b7e2411dc7 + - 6cd4a2e1-d0ed-4a52-88dc-f7860e0c6a3d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100855Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bnn5 + - 20241120T112431Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001bdu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2973,31 +3124,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A00Z&sr=b&sp=r&sig=9eFjSxhMxdrpRTSNXzDVaGcw9F7ij6a%2FHdvu7LgpDO0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:00.8553085Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A00Z&sr=b&sp=r&sig=7zC4FVgvWPGnA0EtGpUlo0Eto8NlNPsTcKUuCFQaI10%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:00.8548981Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A00Z&sr=b&sp=r&sig=dWDRWzB2FKmL%2FXHWGHX4mokR%2Bdhseaicj1u8i6ihRs8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:00.855405Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A00Z&sr=b&sp=r&sig=6Z8bH%2BXIYmKext8q6IJxZoXKVh4FTDLeLSJKGGvddP0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:00.8555044Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A00Z&sr=b&sp=r&sig=dgOOORCuayU0ytkcjaR7i8qafqMQjVm5Ddn37pP2zGI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:00.8556038Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A00Z&se=2024-11-06T11%3A09%3A00Z&sr=c&sp=rl&sig=1v23Vfb9eWZjK%2BueZl5VXiObz8k3lbgAdWtkZ5rpzUs%3D","expireDateTime":"2024-11-06T11:09:00.8556985Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=C6ePUFZ5jWjOjU7HiOGRdqrmSAKlbBaSayOlEufOyk8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:36.3719298Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=UUOw5l0Ujvjz9SdImSmzfy4gjP1O3eBMgAMkcB5WrPU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:36.3714999Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=9U%2BiH6uPkUISlAIOFzYC6oF32qsmpbQmPoxt2eRmLVM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:36.3720859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=e%2BaldOg359ILz24YwnIheCGA5VZxrQv9T4655vvztMs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:36.3722213Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=juWx%2FUi1bxzj0E31Nti84duDfydaghSmwTn1musjb0g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:36.3723618Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A36Z&se=2024-11-20T12%3A24%3A36Z&sr=c&sp=rl&sig=qFvTK0PTR%2B7lHE%2B%2FDVUbrTwVnB0M4YM7xB2B3ayexuA%3D","expireDateTime":"2024-11-20T12:24:36.3724975Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:00 GMT + - Wed, 20 Nov 2024 11:24:36 GMT mise-correlation-id: - - ed9d62ae-5f00-4b9d-bc39-821391c39652 + - bba0852c-d73f-4c91-858d-428aaeee8da4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100900Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bnys + - 20241120T112436Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001bn9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3015,31 +3167,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A06Z&sr=b&sp=r&sig=rPCZmGnAQiQ97Z4i%2BUsPf0F0axVaDZ1ZNwoDidwV0FA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:06.1754304Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A06Z&sr=b&sp=r&sig=WUfIradFsxvBByn%2FlHR6PYLJTcXBI8q75Z47i1lTT2M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:06.1750808Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A06Z&sr=b&sp=r&sig=L9sOPIz10CLye0fVanNvl%2FvdH5ZqPEatimKq4l%2BBfUQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:06.1755734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A06Z&sr=b&sp=r&sig=SvyQVV4Jvtr7hjwyNK12X6BasfoqGa9EIyv%2FThw9B8Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:06.1757152Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A06Z&sr=b&sp=r&sig=HX9Za5WorJL%2FGRzygPv3Ch8qg8fkhcKd2yOpIYePX%2FU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:06.1758562Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A06Z&se=2024-11-06T11%3A09%3A06Z&sr=c&sp=rl&sig=6OXBHR64SE8f3uAnfdvlWBJ%2FieHn7gYHmWitubnE8cw%3D","expireDateTime":"2024-11-06T11:09:06.1759965Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A41Z&sr=b&sp=r&sig=a8OO%2BgkJrspFom9y3BLxZsi0OI3XkcMrUTJdsKKn%2FOA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:41.4975864Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A41Z&sr=b&sp=r&sig=XNiAbUrTTjO%2BSE2JthSdHtAA1Z2xUCtiLoLyDRPsrws%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:41.4972944Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A41Z&sr=b&sp=r&sig=Y%2BTjV3L1cTTaRFULJU7%2F4xCGDt5KMnfw5lOqaPgNbpI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:41.4976725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A41Z&sr=b&sp=r&sig=5Z5Y6Y0uo3a5NRdJiwm%2BKo3ZtIBwqcx1KEdj6qYGIbM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:41.4977614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A41Z&sr=b&sp=r&sig=OZGqAmFtWIXvQuXNpl6y%2BfeHbPOqRqnpq%2B%2Ft0RIEbYE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:41.4978484Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A41Z&se=2024-11-20T12%3A24%3A41Z&sr=c&sp=rl&sig=NsyDvfQJSIQW%2BwH1TgrCUJV0ctWJKwqII4zZNBC0QM4%3D","expireDateTime":"2024-11-20T12:24:41.4979346Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4908' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:06 GMT + - Wed, 20 Nov 2024 11:24:41 GMT mise-correlation-id: - - d0399292-5e39-450f-8b13-1e2152a142e7 + - f81e43ee-b0b4-463e-8d29-f746ccb81742 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100906Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bp9a + - 20241120T112441Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001btw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3057,31 +3210,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A11Z&sr=b&sp=r&sig=tAhsklCSDaq3ZOvw0Gc4aVAaVRKdZkVrVVh7XU2Jk8o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:11.5031544Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A11Z&sr=b&sp=r&sig=2zn8ndVqotKGZCYLj66J5a2VIgRmjfVJseVoPtVikAY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:11.5027963Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A11Z&sr=b&sp=r&sig=1%2BZV%2FO0AvvN9BJu3EcIY2zoNa1Fj7aABrPAG3x0IKVA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:11.5032926Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A11Z&sr=b&sp=r&sig=G0NNia3L6w7KddBWmAyohonEblAHFx7PWeTb6v3wr9Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:11.5034291Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A11Z&sr=b&sp=r&sig=ZWqU0IueO6KWK9H5wCBtQV9PWGcnCuxyHWybWX%2F%2F5Io%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:11.5035625Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A11Z&se=2024-11-06T11%3A09%3A11Z&sr=c&sp=rl&sig=hiecdc5O3u%2BBOBrx2yg8TNB2dTUAi2ll4hQ57Qyo2q8%3D","expireDateTime":"2024-11-06T11:09:11.5036969Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A46Z&sr=b&sp=r&sig=kcTtTprpegU5bfJsf5t3goxT28u2gzwHTP5SIMCoO2I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:46.6183992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A46Z&sr=b&sp=r&sig=PQq7FIETJmqCDYFSASbOBvu3fJtA9s9Gynug%2BEUafvY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:46.6181211Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A46Z&sr=b&sp=r&sig=stJNdgsyaduhdngiPDIyY3vB2VVVr58kbOqW7AwFveA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:46.6184923Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A46Z&sr=b&sp=r&sig=ZxuM59f%2FocDcLuR4MOdGjSCneGceJ9GkH8hnnr1LdTg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:46.6185873Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A46Z&sr=b&sp=r&sig=2ZTpZdrPTZ%2Bg77Nx99IJAhy1%2FMi570QwxHf%2BrFm4960%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:46.6186838Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A46Z&se=2024-11-20T12%3A24%3A46Z&sr=c&sp=rl&sig=IJHGZmJCiStEbWFE1HkgW8nDmsqYbF28uaCj8TeJxGc%3D","expireDateTime":"2024-11-20T12:24:46.6187726Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4902' + - '5005' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:11 GMT + - Wed, 20 Nov 2024 11:24:46 GMT mise-correlation-id: - - 78211485-38a6-40da-bc41-3492bafb33ab + - 80d44517-8997-4ca1-8aea-8180468c4358 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100911Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bpm2 + - 20241120T112446Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001bz0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3099,31 +3253,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A16Z&sr=b&sp=r&sig=y%2FdH2OKdFJS8YCFjWlFVE%2FDatKD0HwbWrMirCLHUuQY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:16.8309485Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A16Z&sr=b&sp=r&sig=0sCan0whfBBh1Cz2ayy32d4Qkw6ZLqxv%2BPYmaE%2BaWtI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:16.825192Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A16Z&sr=b&sp=r&sig=W704%2BBR%2B7fQ0rIYEdJShZjuyP3iPCcToR6pNo%2BGRDEc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:16.8310956Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A16Z&sr=b&sp=r&sig=VodcHSWXAy9MrSLQ2fS8XEk53IPYOI4KGS6BnUQF0l4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:16.8311882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A16Z&sr=b&sp=r&sig=dudYnEgLs9CqMZZ1jqmg9h9n2qvH26d6ihKs2OGYJX8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:16.8312696Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A16Z&se=2024-11-06T11%3A09%3A16Z&sr=c&sp=rl&sig=HNBhLFUWAJftT%2BY8Y23vSWdr%2FwKLXmixD9a1wk874Ug%3D","expireDateTime":"2024-11-06T11:09:16.8313623Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A51Z&sr=b&sp=r&sig=LRK3LaBJP9OEUmxrUxhE8wAFKejrcbxXpDTRt3qcF1Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:51.7395888Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A51Z&sr=b&sp=r&sig=YolEFcdvQ3e8dJN3O%2B8U03ZU%2FG1Ce1pyLv5YG1ty2YU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:51.739213Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A51Z&sr=b&sp=r&sig=Mm6J2kDd96rABoXqSBX1TVA4dlZ7T098NjhwsupCc7s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:51.7397377Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A51Z&sr=b&sp=r&sig=W0gflwWx9UBDHO9JHbJuPkDb2vyQNJKQV9eNjjHWcOo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:51.7398617Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A51Z&sr=b&sp=r&sig=5K0m3DAkKNeB%2BcoSr22EcBrcUSqevkPjNmO%2BXtDbdKo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:51.7400034Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A51Z&se=2024-11-20T12%3A24%3A51Z&sr=c&sp=rl&sig=MLuOzwxAWcXu1zPvwnP5rxcyXHk27Shb6sx1Vo%2FYrcc%3D","expireDateTime":"2024-11-20T12:24:51.7401701Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4909' + - '5004' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:16 GMT + - Wed, 20 Nov 2024 11:24:51 GMT mise-correlation-id: - - f9118149-c013-4b26-a1ef-c811dd4ded01 + - 2b07f662-06cc-44e9-892b-d3507ddefc57 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100916Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bpwp + - 20241120T112451Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001c6m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3141,31 +3296,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A22Z&sr=b&sp=r&sig=Y8T3SAcpk0ckNkAhqYRE99gq3SKC5u8QPbRA%2FybePFk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:22.2052583Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A22Z&sr=b&sp=r&sig=7Gb%2Be1KduxB6OXrh7ZzY9QKSrG0uVsCbAHf1x8fElBw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:22.2043979Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A22Z&sr=b&sp=r&sig=Z8RkJwyyQ2FtDICLMQugBZTaI7a1sG7EGj5g5BRsXfU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:22.2055644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A22Z&sr=b&sp=r&sig=XTCwsDz2AXUd2VU9UR9NGGZy2vdFOfsAfaYvjcfsC1w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:22.205884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A22Z&sr=b&sp=r&sig=aPDAOiHI5HplDD02EtrPp2T2MZwJIaErSxInAxn1%2FVs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:22.2061839Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A22Z&se=2024-11-06T11%3A09%3A22Z&sr=c&sp=rl&sig=%2Fkxnzor1t3sV9HtanrxKMYD22db0WMRQWsEuG8P7p2s%3D","expireDateTime":"2024-11-06T11:09:22.2063878Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A56Z&sr=b&sp=r&sig=h6WsdZZClL3ofqgvli1L24Qs4XcEAeG4blrVjl1eLdc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:56.8596562Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A56Z&sr=b&sp=r&sig=gNevzVJbGEJQIwuynlPq646tQEPR7SRKRZ3%2BE3jZdZI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:56.8593052Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A56Z&sr=b&sp=r&sig=Du%2B0ZG%2BHGPYgW6RbzMaCT9JBVtiG%2BHZVpn7viyVUxhA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:56.8598909Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A56Z&sr=b&sp=r&sig=ESs1UzkxXsIBhIHq4qd6kpGK4rfuDg0hEvHrnFhZ8KQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:56.8601308Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A56Z&sr=b&sp=r&sig=6P1%2FOX57HIzumh687IyHFdqXa5oG1j5kmhHRNwZbsys%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:56.8602546Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A56Z&se=2024-11-20T12%3A24%3A56Z&sr=c&sp=rl&sig=QQlKNMFPxilROeS7AFkkSQPDWRbQWug8YKYoxsQaTbw%3D","expireDateTime":"2024-11-20T12:24:56.8603888Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4899' + - '5005' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:22 GMT + - Wed, 20 Nov 2024 11:24:56 GMT mise-correlation-id: - - 56e700be-9bea-47ca-a16f-a434fb0136e3 + - f395b1b7-bd7c-41d1-a170-ddf3d0a1d4ca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100922Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bq6n + - 20241120T112456Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001cks x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3183,31 +3339,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A27Z&sr=b&sp=r&sig=vzNtzsDA5Dm9AFjJ0y7MvjTp9qrmBwxkHOxyNAn60LU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:27.7569454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A27Z&sr=b&sp=r&sig=gGz6lZ5k3%2BGiD7zwXI3fL9DbRDOxmikL2aWcJz5TseM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:27.756629Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A27Z&sr=b&sp=r&sig=5v1fheztsUCBA305ZJMNMbcimjhemSsxbRkhRqfnSKE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:27.7570288Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A27Z&sr=b&sp=r&sig=xqkMR7zMNuAKmrlbq36eFNEUceEQJqFPb%2FoveRxSyL0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:27.7571166Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A27Z&sr=b&sp=r&sig=Y%2FCdV1YENfCpCnYH3z3AJvyYE9b5HvmaUwacMuIulB0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:27.7572023Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A27Z&se=2024-11-06T11%3A09%3A27Z&sr=c&sp=rl&sig=4uR%2Fg9uc69xja24kRK0msojyvY%2BECAnAFe0P6SsNJVQ%3D","expireDateTime":"2024-11-06T11:09:27.7572874Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A01Z&sr=b&sp=r&sig=C3xWHJ44ZfMiS%2Bw33JXiLh%2B%2FP%2FenA7gAN958ElIyrRc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:01.9902505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A01Z&sr=b&sp=r&sig=RPOQOC5syI6ezcCl2euXKN0nJpsrT9zeoroEuhqQTrA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:01.9899743Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A01Z&sr=b&sp=r&sig=zwwWL5bIiK%2BPUkUHnQGHuCC9y4oqTGncxUKhThW5VDs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:01.990328Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A01Z&sr=b&sp=r&sig=l5XfcS2Muxz6SBZWEfxRmRHeldcTJGxpdGvAq4a45ZQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:01.9904099Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A01Z&sr=b&sp=r&sig=vEW%2BMFjgD2ttd%2BObhROsGOOKuteeCPGwlPdMFI0CC7k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:01.991097Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A01Z&se=2024-11-20T12%3A25%3A01Z&sr=c&sp=rl&sig=EoUCTgUTLn3spyrgQLX6IAYBhnZFcMieZuxmu9%2Bi0pI%3D","expireDateTime":"2024-11-20T12:25:01.9912162Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - close content-length: - - '4901' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:27 GMT + - Wed, 20 Nov 2024 11:25:01 GMT mise-correlation-id: - - afedb7a9-ae53-4cdb-aa9e-c0f31b0c2319 + - a2a8428c-2111-4883-9035-70173ef26ba0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100927Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bqk8 + - 20241120T112501Z-1846dc7bb4d86bswhC1YVRhm3s00000003y0000000001crs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3225,31 +3382,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=tjwTQOXgD0h2C1psdlefTuSAHdm%2FQ%2BhD35AgW8WUzjI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.7934813Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=MZK1SwEp7G1QLgvOYVhqbZAJH4eOsRB%2FugXyQPso2YM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:34.7932111Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=vBBR9Zpz85Y7tH1GsGX8RVzlGwmZYdAe2%2BZWeVb48mU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.7935704Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=j4ry%2FSIOqpDiSyDayq%2Bu9X2Vld91dy514O2eWH3KsYw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.7936552Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=4CL7fQ8drA%2FF2VtK2JLEhiKJCJePIa0ulY4dqRPvqPM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.7937403Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A34Z&se=2024-11-06T11%3A09%3A34Z&sr=c&sp=rl&sig=LIMtqSJw2MOcP4VN9VNLMpBDMZ5S71V8fd95c6JTFn0%3D","expireDateTime":"2024-11-06T11:09:34.7938259Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A07Z&sr=b&sp=r&sig=G4Gz3rZzxyEo3nrwyqCnItaMsj9z7iNTNzEm%2BZUPkZ8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:07.2711474Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A07Z&sr=b&sp=r&sig=7acLfykJdsc3gUP%2BmehDhUJSLOC44SEieUJBimTy%2F10%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:07.2707673Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A07Z&sr=b&sp=r&sig=dpM3vC%2Fhckg9JIVBPWkukTVmnjAl3H%2BbxM9%2FjH0W2G8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:07.2712404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A07Z&sr=b&sp=r&sig=2I8wKPxmsasHVw9LUAptvU8j%2FLyBZc1TU1XtUUnxn18%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:07.2713315Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A07Z&sr=b&sp=r&sig=atSHXFgivVEHZb3l5jwTIplRfIqlA5wxwSLj4%2BZk%2BYM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:07.27142Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A07Z&se=2024-11-20T12%3A25%3A07Z&sr=c&sp=rl&sig=LOb3dXa6KK9g6rciDMW0HySerl%2FzghuA%2BUPD6N4GPF8%3D","expireDateTime":"2024-11-20T12:25:07.2715149Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:34 GMT + - Wed, 20 Nov 2024 11:25:07 GMT mise-correlation-id: - - 581c40c5-64ac-4fe5-aa7a-d708899fe684 + - 268a3169-e992-46ec-9260-512076669317 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100934Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rh53 + - 20241120T112507Z-17b7777dc456fckthC1CO11da00000000w0g00000000mq7k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3267,31 +3425,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=77nxMoUtd9AvXa9I5qpxag5FUN9FMAwOefdaQz3VMio%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.0892925Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=jzCsYEXqx5NT7WFfd8pbee%2FyJsIZfpU%2BSR9z%2BZlrbZc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:40.0888309Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=o%2Bzpz9Q%2B%2FP4QPAHvMkbrWB58mQXkrdXIVp%2FI7NYjUgA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.0896437Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=4tJa8ES%2F11a%2BAIqwpbuTOqzU%2F9AtgwDEHw7moBksb%2Bo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.0897785Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=jq9jnlGYGGMFI067eHC776NTfRDHsR2H8tR48IKodng%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.0900886Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A40Z&se=2024-11-06T11%3A09%3A40Z&sr=c&sp=rl&sig=MYUAUkVvXr1%2BaZTcZq7Ns%2ByNNW6L%2BGfw6KGE1%2FZLkDI%3D","expireDateTime":"2024-11-06T11:09:40.0906598Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A12Z&sr=b&sp=r&sig=suPkdlR76bDQnyYvQ2fauoA4t2U7oV%2B5PnLSh%2FAqT8o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:12.3848129Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A12Z&sr=b&sp=r&sig=%2FhSaKJg0ITHYlT9W9T9fgc%2B1HLSLSaWA3h%2Bdf3aFAEw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:12.3844802Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A12Z&sr=b&sp=r&sig=%2FdXjil9jxUs7AzSIX5c0HQKxPptIvhv%2FLR%2F%2BxOW5MzI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:12.3849552Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A12Z&sr=b&sp=r&sig=o6%2BGQKs96bQksP5BSXRNzyf3%2B2usQKeQeLpFQqoCJl0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:12.3850987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A12Z&sr=b&sp=r&sig=QlqrFvn8AE3ABqZqHzj9%2F7L0Nqm15EETo53B6VtlR6Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:12.3852373Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A12Z&se=2024-11-20T12%3A25%3A12Z&sr=c&sp=rl&sig=7%2FZAJb3Kex4UzgkuE8JcFpjiYXkyZr6unwj9iA323u8%3D","expireDateTime":"2024-11-20T12:25:12.3853762Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4922' + - '5021' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:40 GMT + - Wed, 20 Nov 2024 11:25:12 GMT mise-correlation-id: - - 751321c6-0fbf-4765-9942-a331c264d9ef + - ad2cf746-0a8d-4a98-87a3-2ea033f189c9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100939Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rk1g + - 20241120T112512Z-17b7777dc456fckthC1CO11da00000000w0g00000000mqf4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3309,31 +3468,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A45Z&sr=b&sp=r&sig=nBnCEhgAIiFPwMY7VZ2ZNJyyKJsAS%2BHxYGLfm93V3BA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:45.3780709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A45Z&sr=b&sp=r&sig=s0guBVD4NAGYeVcL9IRqDm7acns6BSmXyEk4HJTJpi0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:45.3776458Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A45Z&sr=b&sp=r&sig=UuCv9XKn0fcc%2F9hQK4tNuLSy4HuAT%2FP63%2BX8vd1wQgc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:45.378251Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A45Z&sr=b&sp=r&sig=QLLIcSSf3F5AQqteE%2FtxoGaNfymH6a9isW9gAcyyX2o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:45.3784583Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A45Z&sr=b&sp=r&sig=EJJL9G9BNvZ3arK55yljrMahmJfTCLHHRmspDGHUqLU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:45.3786364Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A45Z&se=2024-11-06T11%3A09%3A45Z&sr=c&sp=rl&sig=ytT5iQ6e4%2FgHiRbT7Vrw5EZAPhX5G52gOJHwom8SJ0s%3D","expireDateTime":"2024-11-06T11:09:45.3788082Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A18Z&sr=b&sp=r&sig=qM%2BZiq4W3fgKL4gZl%2FHJEwFZW5lqT3QNEagLkQ2IUfM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:18.6272522Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A18Z&sr=b&sp=r&sig=pc0sLgk3qFS3shRu8JKn8WE5%2FqQZ5WJEjWuV%2F3YQwRU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:18.6268908Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A18Z&sr=b&sp=r&sig=oqxe9OtehstxLtYHga9vL%2B%2FeKi299i4GSaN4dI0Ec6Q%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:18.6273928Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A18Z&sr=b&sp=r&sig=JpMXg%2BK6Pl5MKZMLzWnoS4PzxE2%2FKk5RH%2FDs1kSRToY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:18.6275316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A18Z&sr=b&sp=r&sig=CKcMufkDuxex1v7f1WAR3ghn3vUzdCcGIYa6lZWMjI8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:18.6276707Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A18Z&se=2024-11-20T12%3A25%3A18Z&sr=c&sp=rl&sig=lGrJiJo74%2Blq7Ql6ilm4HyINvV%2FPwZcO%2BUfZu7I1Fd8%3D","expireDateTime":"2024-11-20T12:25:18.6278142Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4903' + - '5019' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:45 GMT + - Wed, 20 Nov 2024 11:25:18 GMT mise-correlation-id: - - b6e0e1e7-fff0-4986-91aa-17c784fe87cf + - 7a7f7c7b-a053-4af0-b537-5823e3880fe5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100945Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rkq5 + - 20241120T112518Z-17b7777dc456fckthC1CO11da00000000w0g00000000mqpg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3351,31 +3511,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=0gCALaDVbTVugutJMeqGZuQTj25b65hRFS6atQfKwAs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.6920669Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=3yQKdvp8W%2Fm0ObFqeQaVIR7fKFhs8DiI6sShBSsHxnA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:50.6916624Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=XeUJ0wzuYJf80GbFZ9htf8rq0D9qf1jxeymqDR7zi%2BA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.6922397Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=Ap50fv7vwDlyaPR5fZ%2BfCns2Cys2TxdM9WHLQx7dgqw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.692423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=98PUystVdhxtPgITlXnhNtTASYJxcYUPxDTm9Ewd%2B9s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.6925907Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A50Z&se=2024-11-06T11%3A09%3A50Z&sr=c&sp=rl&sig=lUiX%2FFSjsgvVkisCqRPnyzc%2BmbPdhbhx3noPyyaawZE%3D","expireDateTime":"2024-11-06T11:09:50.692758Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A23Z&sr=b&sp=r&sig=B5ExRHSKjtnJXyNLy6DJPO%2FY3h3LZfpv%2BaNMnN3xd6w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:23.7745515Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A23Z&sr=b&sp=r&sig=KBIK6HxQNMpTgnepCOtvJ5nJgFP28vvdHC7PFa37KwE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:23.7741101Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A23Z&sr=b&sp=r&sig=NgyGd0oo7TtiMIIDjQmF3i41Fk9GKgU7LPFSHKy8PWs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:23.7747225Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A23Z&sr=b&sp=r&sig=X3WMitXQJ2sOE2U5Da2t%2F4IFh%2FA5uNxVNmTuOfAtgPI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:23.7748982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A23Z&sr=b&sp=r&sig=Tq75YLrAASIhC6py7t4gAwElQn7luRJgBKHdTwrGwx4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:23.7750667Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A23Z&se=2024-11-20T12%3A25%3A23Z&sr=c&sp=rl&sig=%2FlhPLqpGnkQBLPnXyGGqqkTrK53qa%2FscGYpPzE5lLrw%3D","expireDateTime":"2024-11-20T12:25:23.7752374Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4902' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:50 GMT + - Wed, 20 Nov 2024 11:25:23 GMT mise-correlation-id: - - f9fcd6e5-72c0-478c-8a33-4499ff20e384 + - 9e0bac4f-facb-4e8d-b5f2-3000038fd392 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100950Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rmap + - 20241120T112523Z-17b7777dc456fckthC1CO11da00000000w0g00000000mqyg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3393,31 +3554,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=5UbSqSsvUsG%2BPl%2BUlF2753FIOyByDrjAzTCkSkiaqdA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.0021557Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=Eey8i89yR0YvImzVRwRFfAdKMC3LJkhS4a7dYwU7WJc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:56.0013265Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=M6yrn9veaMgCmM%2BIgpE%2BnggChyHJmgELxW7b6Jj8q10%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.0025026Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=XyrCX0FouaNuCK1xvReudp2Fmt%2BOL4uDSvwPCGPwasY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.0028539Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=A0IAuBl3cfPry%2FWMUaojbq%2BWpzI7oY4MPYKzTlEtpP0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.0031926Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A56Z&se=2024-11-06T11%3A09%3A56Z&sr=c&sp=rl&sig=9Ga5OTGK6Te0%2FjdpFzXRlBR3qBaIhAiJB%2F%2B8fyrZy0c%3D","expireDateTime":"2024-11-06T11:09:56.0035389Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A28Z&sr=b&sp=r&sig=NvVXOGmKvtF%2BLdyjt7BBYzo3oqUxTuTnThQ%2Fz%2BIQTNU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:28.8877364Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A28Z&sr=b&sp=r&sig=%2Brg1aSKfKzKz5ChtrF976WuRFMDJJf19%2Bwg2luo%2Fnhw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:28.8868741Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A28Z&sr=b&sp=r&sig=ZdgLDWWu6qqsRe8AVajmL%2FflrI%2FLZbDB1tDRs3wcNF8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:28.8879389Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A28Z&sr=b&sp=r&sig=eSLDGQsoV2MjLpnheEGF9%2BG1jk06dJKMi1DAEsxKuzk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:28.8884596Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A28Z&sr=b&sp=r&sig=pU3vBtpwalv55z%2Fp2XAaCszQ0tJhDQwBFqjiOVCVa2o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:28.8886991Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A28Z&se=2024-11-20T12%3A25%3A28Z&sr=c&sp=rl&sig=KdkroZgJo6OO9O52HWlU9ZlGNhe83zkC34iuzl9x0FI%3D","expireDateTime":"2024-11-20T12:25:28.8889016Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4912' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:09:56 GMT + - Wed, 20 Nov 2024 11:25:28 GMT mise-correlation-id: - - e9e39b9d-48fa-4a26-87cd-bc52a9d4d5e1 + - 3c27b0e7-2d04-4398-b576-7a9e3c9ac6f1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100955Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rmyh + - 20241120T112528Z-17b7777dc456fckthC1CO11da00000000w0g00000000mr6f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3435,31 +3597,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A01Z&sr=b&sp=r&sig=UdKydrg4k7fJTUblfnR6l7lAvVKrv%2BPMP0Oj4ZbWIj0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:01.3255904Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A01Z&sr=b&sp=r&sig=t%2FZSh5mJYmN4Aaq8O6uZpjT43n8n90IEafltDSYz6cI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:01.3251404Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A01Z&sr=b&sp=r&sig=sl8nU4BLZ%2BAlHy%2BwhBm9ri9%2FJdLr5VF3VE4grfly6ps%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:01.3257665Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A01Z&sr=b&sp=r&sig=O882m9mZJ%2BLxvPbH32Xtq8q%2F6SjflbGRHcIHRWGN8Zc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:01.3259499Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A01Z&sr=b&sp=r&sig=cewRxhOju%2FTqlVL3FmRjYpUJW5KYl%2Bbh5fWTzUepdhs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:01.3261341Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A01Z&se=2024-11-06T11%3A10%3A01Z&sr=c&sp=rl&sig=ptJNYdI6WOiLViq61hdfSXm7NO%2Bci1hQAzTM4XOsL18%3D","expireDateTime":"2024-11-06T11:10:01.326309Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A33Z&sr=b&sp=r&sig=wctTs0FaLzjmx0j67dgcpxqJQo5dO3ioftLhUws8blY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:33.9968209Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A33Z&sr=b&sp=r&sig=glXM4CeGTHOTZ9grWFRFMtdB%2BUzrv34eeN3434xQpaY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:33.996421Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A33Z&sr=b&sp=r&sig=5MWvXGpzfp68MYQN5Cv88Wo7dISLBhrlIQSVFsVWPDQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:33.9969892Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A33Z&sr=b&sp=r&sig=M1ojXvdfUs0Bsi9Dx1ZTThbMW6BC%2Fq7qb2knkXpWCTQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:33.9971573Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A33Z&sr=b&sp=r&sig=eh5X2cAckRqUhgI3%2Fejo9JtNCFIhQ61P8EP1VwyIV4U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:33.9973234Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A33Z&se=2024-11-20T12%3A25%3A33Z&sr=c&sp=rl&sig=6R2o9yhJQFFzVtQmUVbfydES3MS7GDqtnyNUkngTwWI%3D","expireDateTime":"2024-11-20T12:25:33.9974872Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4911' + - '5000' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:01 GMT + - Wed, 20 Nov 2024 11:25:34 GMT mise-correlation-id: - - 187167d7-7f93-4e66-9753-3ea2ea76e136 + - 7eec86b3-99da-4922-a445-aa4dd0ed75e5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101001Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rnnx + - 20241120T112533Z-17b7777dc456fckthC1CO11da00000000w0g00000000mrdb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3477,31 +3640,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=9%2BE%2Byx0Eyc9yIHlpAklnz%2FJ%2FFa3O93pAqZq5DxH9Uss%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.0311692Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=c%2BWzIK0xaQf%2FPENfe3iqKWfGhK52kMVvbT0NlRfBvy0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:07.0307609Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=OFHcZWFggMKU794NhiXMzT5BJbRZzN1Q%2BEoqRk4fbvc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.0314321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=NYss3fDdQ%2B%2BaZx2IYK9eoPpZOmkGTynEqK7pOYwxUDs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.0316015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=pCij2XRB6hfY%2B4nyGErxeBuY3YrdXgWDArAs28ke3f0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.0317765Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A07Z&se=2024-11-06T11%3A10%3A07Z&sr=c&sp=rl&sig=IdTW19Kt6QcZ0dz1l9D0wX0MBvAnS71KATbABn%2BJulI%3D","expireDateTime":"2024-11-06T11:10:07.0319421Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A39Z&sr=b&sp=r&sig=HwOK6bHzdS706QIJxpYObtyuXscGv0Wsekwl%2BZasz2A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:39.1169299Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A39Z&sr=b&sp=r&sig=b1Fh5NRCLZmT5wgIy4eNjUJssNH8GX5P0V81yL50THw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:39.1166136Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A39Z&sr=b&sp=r&sig=O2FnOYEHYZw466b%2FN%2FqAF3tq1VLK2OetsXta%2BvCtWd0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:39.1170219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A39Z&sr=b&sp=r&sig=0KI%2FoyfekcDrTBJUlnpiJT5feFaz%2BbavcMM1SZ%2BF3w4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:39.1171144Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A39Z&sr=b&sp=r&sig=6LeDyMxjWMyovG6hY46rE0mJIflLtTpV2Vij2kFTzDM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:39.1172039Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A39Z&se=2024-11-20T12%3A25%3A39Z&sr=c&sp=rl&sig=I5W5ixVflkpx48K%2Fwk%2BX3E7AugZyc5%2FRDFHUUK7Gao8%3D","expireDateTime":"2024-11-20T12:25:39.1173019Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:00.563Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:51.634Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4914' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:07 GMT + - Wed, 20 Nov 2024 11:25:39 GMT mise-correlation-id: - - 802ff2d1-2fcf-4ff3-a85c-0fa56cbc3d7f + - 7c5ead3b-41f2-45da-a2f2-b808156855f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101006Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rpdy + - 20241120T112539Z-17b7777dc456fckthC1CO11da00000000w0g00000000mrnv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3519,31 +3683,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=D%2FwpzrO3pJuv2qm%2FKfhYk5rH7aXxctub9MlZZw2r%2FyQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.3951471Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=lIxCj%2FAUAxn06RigW01kMBjIW7opEp0UWvVgDYIFgLo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:12.3945942Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=n6%2BjkwjM0SIKIWuBQlKdAyHQCFTrsCFTLzJEW7VbD7A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.3953351Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=WCkPVt9YjVeualHTB%2BAIbZ1voiqwfFLmjxG3kGl05ss%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.3954834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=c%2F22OtJKYbwGVm0sGn1v82YVVZnw5z6wrnA2ST4gIOo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.3956097Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A12Z&se=2024-11-06T11%3A10%3A12Z&sr=c&sp=rl&sig=xD%2FctdYKw0XS77N7fhbbIO%2FR6hbmQV3c3bFmBJ4Hl70%3D","expireDateTime":"2024-11-06T11:10:12.3957742Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:09.809Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A44Z&sr=b&sp=r&sig=2mrDickmog48h7Hk9KJukrVIMPY31ayzkvcqTHPpaIc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:44.2306684Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A44Z&sr=b&sp=r&sig=TM6Zq0AcmNeAZUckQJg6jQfUkLinJMRrFvQNbFLBqzg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:44.2304107Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A44Z&sr=b&sp=r&sig=YqgjQh2e%2BmazZQoXK4IXSDObsveVJ586pNImlEZYnug%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:44.2307517Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A44Z&sr=b&sp=r&sig=KBlnoNAMjpji%2FyDCejMmfWNtJDH2fguLu0Bc1rk%2FIWc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:44.2308341Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A44Z&sr=b&sp=r&sig=EuNnv%2FySWl7m%2FHrTznqyOJfztc%2FOF1YRwlntT7rQ0ig%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:44.2309162Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A44Z&se=2024-11-20T12%3A25%3A44Z&sr=c&sp=rl&sig=ISlfV0gWnTLJVzxc1p2s1hXG5onTZ1%2FmTV%2BsVclHCf8%3D","expireDateTime":"2024-11-20T12:25:44.2309957Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-20T11:21:00.563Z","endDateTime":"2024-11-20T11:25:40.076Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:41.044Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4946' + - '5047' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:12 GMT + - Wed, 20 Nov 2024 11:25:44 GMT mise-correlation-id: - - bd9a7e68-9d2a-490f-929e-81fa1f2d7028 + - 92fbe144-eb33-4fdf-8c29-bb45fe8b08be strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101012Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rq4a + - 20241120T112544Z-17b7777dc456fckthC1CO11da00000000w0g00000000mrxt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3561,23 +3726,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:23.902207Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:23.902207Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:18 GMT + - Wed, 20 Nov 2024 11:25:44 GMT etag: - - '"fa00791c-0000-0200-0000-672b3f0b0000"' + - '"97032001-0000-0200-0000-673dc5d00000"' expires: - '-1' pragma: @@ -3593,7 +3758,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 32312782D9284D0B97C634B7B1D6E236 Ref B: MAA201060514031 Ref C: 2024-11-06T10:10:17Z' + - 'Ref A: 41FE61D0351B46659230618561DEF6B4 Ref B: CO6AA3150218027 Ref C: 2024-11-20T11:25:44Z' status: code: 200 message: OK @@ -3607,31 +3772,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=metric-test-case + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=metric-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=6BojtSpgcXMfAR0dqBkxaim6T8ydBGE966TC2V53dGU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8379792Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=1bK6wpdaIAfFXRRbP9zfKl0wEUgCxVl5fObSTDQo%2F00%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:21.837241Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=ptd5L0vVRlng2p%2B5AH8sGU0bWlfvbWRpMn0QMq4TmgM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8383014Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=aimWG%2BwwSylOjZ%2B3iZFgNYGH%2B6YYB79fgqNli1MET4E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8383938Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=MZQ06CUBaR9ng1LMIaYn7T5QhHpZawRhL%2B0cvbCKSw4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8384873Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=CEyJKKLUMLkoS%2FsxtTxn%2FShYEeowC4vFm%2BgTA2QL0ek%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8385811Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=67QNuJL9%2Bsu%2F4xnDt7jZSIaSOf6ts9vMAefWhN7unv4%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8386742Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A21Z&se=2024-11-06T11%3A10%3A21Z&sr=c&sp=rl&sig=R7GR27ijjhFwfV7PHy3RdKoiso783yKZuqRv9Ja5H8k%3D","expireDateTime":"2024-11-06T11:10:21.8387654Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A45Z&sr=b&sp=r&sig=ML7C3a6onY6oEzU7%2FPJTZuW1QjQ5yJwAbgX3ysaRRo4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:45.1676335Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A45Z&sr=b&sp=r&sig=MK7OOQ%2Fugxjjwjh%2F30Kt93NHkL9O7dOOiQz%2FVvotC5k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:45.167108Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A45Z&sr=b&sp=r&sig=S1Kl7b2rsbF2FgMYqFb2oO4rGlwZT4kVsD91lHyPHg0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:45.167996Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A45Z&sr=b&sp=r&sig=vNkdYubMwuDwOd1zwlqc2KBdxy%2FwH0SPxBF0tGDlFOg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:45.1681205Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A45Z&sr=b&sp=r&sig=sAqR0DMbyuSZJDQdsTKKh9uljoqpqDQePMlRYg9AHbY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:45.1684979Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A54Z&ske=2024-11-21T01%3A20%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A45Z&se=2024-11-20T12%3A25%3A45Z&sr=c&sp=rl&sig=O%2BCOTpCmq4%2Blfyc%2FG51485lEO7fUopw4zaplZU6XSBU%3D","expireDateTime":"2024-11-20T12:25:45.1686926Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-20T11:21:00.563Z","endDateTime":"2024-11-20T11:25:40.076Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:41.044Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6135' + - '5057' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:21 GMT + - Wed, 20 Nov 2024 11:25:45 GMT mise-correlation-id: - - 7d5ea7fe-1275-46b8-8109-09fc063426fd + - f60a1c20-b84f-4e3c-86b6-cbbfbf6bcb47 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101021Z-er1b6dc89fd9ltl2hC1SG1buac00000004vg00000000md32 + - 20241120T112544Z-1789fbbbd786m8dbhC1PDXt5y80000000h6000000000b4y7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3649,23 +3815,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:23.902207Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:23.902207Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:25 GMT + - Wed, 20 Nov 2024 11:25:44 GMT etag: - - '"fa00791c-0000-0200-0000-672b3f0b0000"' + - '"97032001-0000-0200-0000-673dc5d00000"' expires: - '-1' pragma: @@ -3681,7 +3847,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 88D4D869583A4F9EB2287E969F4AE616 Ref B: MAA201060513035 Ref C: 2024-11-06T10:10:24Z' + - 'Ref A: D1A1A77A445747038065D4FDE430BAC0 Ref B: CO6AA3150217027 Ref C: 2024-11-20T11:25:45Z' status: code: 200 message: OK @@ -3695,31 +3861,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=41nz9UA3kU476WTw2P1Qsu0vq9qSxdoy6hnaZ3X9Lt0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0018834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=QSpxhWmLmnbvfVY6yIvBgGBZZiKMfzOPZdcuqrMB2Dw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:28.00152Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=IqRXHciITBIRNEXM62um%2BM8N88tb1jlueCTZF7udOmQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0019745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=R3Mzp8kRvkpoctEq9p8B3BtrViy1tVEwixq9OFazon0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0020617Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=UNPpWkoOfi7xf3Lg1MMo6TADKBnDt82F%2BIs8z2VKFOc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0021477Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=f%2BYpyC9t3hdZwxMjSz7I9IqcSogtzx%2BAIvZWocGh9aE%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0022397Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=Vw2yz9%2BZE04Fn%2FCxUz4p0gs%2FS23ODNohUtyD1EuDYMY%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0023316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A28Z&se=2024-11-06T11%3A10%3A28Z&sr=c&sp=rl&sig=nHrBl%2BamOs0OSFmkhUAXk%2F5Bv%2FwrPYEKY5HfvlvPq%2BA%3D","expireDateTime":"2024-11-06T11:10:28.0024245Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A45Z&sr=b&sp=r&sig=fKLN9J8sCfBjy33yFYujd%2BFpC%2BPXXySoltr9cogp8p4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:45.9976311Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A45Z&sr=b&sp=r&sig=zsPUzVAyydQvMqcuNOpCnkDDcEUhu7s9YPJSAqr5Gbg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:45.9971993Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A45Z&sr=b&sp=r&sig=hjKiwSAFSS3P1lfe5SEZVkTz4s4U1L61XbbELU0G8wc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:45.9978058Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A45Z&sr=b&sp=r&sig=%2FpyDa5lSSRm%2BDkzNvd6GVdAoJH8zEqQoBh6sKuyAphA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:45.9979784Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A45Z&sr=b&sp=r&sig=75qgVtGRK2E%2FS0nOWVXKEjbV3w58rP8rXW5UwzaOLwg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:45.9981511Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A20Z&ske=2024-11-20T18%3A20%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A45Z&se=2024-11-20T12%3A25%3A45Z&sr=c&sp=rl&sig=2MJTibQnjlyyhUBS6w0poJpAlVUqZkY6KX46dcpiAU0%3D","expireDateTime":"2024-11-20T12:25:45.9983211Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-20T11:21:00.563Z","endDateTime":"2024-11-20T11:25:40.076Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:41.044Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6122' + - '5041' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:28 GMT + - Wed, 20 Nov 2024 11:25:45 GMT mise-correlation-id: - - dd01b7e4-5f84-4755-a1d5-1a7d218aca13 + - 2ee6c8e0-ccbf-46a3-b27e-5279346a4d47 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101027Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fk2 + - 20241120T112545Z-r16f5dbf676v2djshC1YVRqhhn00000001ng000000003d7e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3737,9 +3904,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-05-01-preview&metricNamespace=LoadTestRunMetrics + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-05-01-preview&metricNamespace=LoadTestRunMetrics response: body: string: '{"value":[{"dimensions":[{"description":"Request Name","name":"RequestName"},{"description":"Engine @@ -3754,7 +3921,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -3762,13 +3930,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:28 GMT + - Wed, 20 Nov 2024 11:25:46 GMT mise-correlation-id: - - 835f59dc-4aac-4187-aced-998281e21976 + - eb57d6c7-64a2-4a83-8503-47a922ac9424 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101028Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fkk + - 20241120T112546Z-r16f5dbf676v2djshC1YVRqhhn00000001ng000000003d7p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3790,17 +3958,18 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: POST - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":1.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2024-11-20T11:21:00.000Z","value":1.0},{"timestamp":"2024-11-20T11:22:00.000Z","value":1.0},{"timestamp":"2024-11-20T11:23:00.000Z","value":1.0}]}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -3808,13 +3977,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:29 GMT + - Wed, 20 Nov 2024 11:25:46 GMT mise-correlation-id: - - 9d924a9b-65fc-4d10-be33-45afc577f33d + - 6af30944-1722-4a0e-8601-bd2419932061 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101028Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fm0 + - 20241120T112546Z-r16f5dbf676v2djshC1YVRqhhn00000001ng000000003d7r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3836,31 +4005,32 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: POST - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=ResponseTime&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=ResponseTime&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":45.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":22.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":19.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2024-11-20T11:21:00.000Z","value":295.0},{"timestamp":"2024-11-20T11:22:00.000Z","value":18.0},{"timestamp":"2024-11-20T11:23:00.000Z","value":15.0}]}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '184' + - '185' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:30 GMT + - Wed, 20 Nov 2024 11:25:47 GMT mise-correlation-id: - - 1224f0cd-9195-41a7-b665-3241d907b5e2 + - da81b8e1-b77e-49fd-ad7f-bbbcc9934323 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101029Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fm9 + - 20241120T112546Z-r16f5dbf676v2djshC1YVRqhhn00000001ng000000003d81 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3882,31 +4052,32 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: POST - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=TotalRequests&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=TotalRequests&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":46.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":52.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":22.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2024-11-20T11:21:00.000Z","value":5.0},{"timestamp":"2024-11-20T11:22:00.000Z","value":58.0},{"timestamp":"2024-11-20T11:23:00.000Z","value":19.0}]}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:31 GMT + - Wed, 20 Nov 2024 11:25:47 GMT mise-correlation-id: - - 3a1fa941-5e35-4d93-a189-b3fd1949790e + - eb4c0f8e-2b3f-4993-855f-e90337140f1e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101030Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fmx + - 20241120T112547Z-r16f5dbf676v2djshC1YVRqhhn00000001ng000000003d8a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3928,9 +4099,9 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: POST - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=Errors&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=Errors&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: string: '{"value":[{"data":[]}]}' @@ -3938,7 +4109,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -3946,13 +4118,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:32 GMT + - Wed, 20 Nov 2024 11:25:48 GMT mise-correlation-id: - - 1ab4ebbb-f0d1-4062-9b19-9cc525b16813 + - 5f3628be-cf2f-4c7b-8272-1268f1c63414 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101031Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fn9 + - 20241120T112547Z-r16f5dbf676v2djshC1YVRqhhn00000001ng000000003d8r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3970,23 +4142,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:23.902207Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:23.902207Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:36 GMT + - Wed, 20 Nov 2024 11:25:48 GMT etag: - - '"fa00791c-0000-0200-0000-672b3f0b0000"' + - '"97032001-0000-0200-0000-673dc5d00000"' expires: - '-1' pragma: @@ -4002,7 +4174,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D38063B248C6485085EC78C085B00732 Ref B: MAA201060516035 Ref C: 2024-11-06T10:10:35Z' + - 'Ref A: 4F6B0DF4D09644DF85436183520AFFDB Ref B: CO6AA3150218029 Ref C: 2024-11-20T11:25:48Z' status: code: 200 message: OK @@ -4016,31 +4188,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=%2BeVGoDc0uuiqcYPZJgYf07a9u38blhujcTlJkHMd2F0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1647669Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=jtXIQo1ao0zs6t5XGq8HuyQ3sPKmlMOr0TH3hEyX4GM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:39.164498Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=YD3d1QnQYvulWOqEdqlczXqlCGTkWPotcBnNBiAKhBY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1649068Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=yC67MLj9Wi0GfloLTEUfJRasplm0KZ%2FVlvN1%2F09pU%2FA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1650021Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=hGwS92hE%2FRW8vZjuBUnj5tOoPHtsy8iGiJDgGKO6KiA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1650944Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=OCt%2BV8ZTLrrd0ZOGn3aI98I0UsTx1vBCI0%2F8bjzXDjA%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1651861Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=zDgMXKfMVuQymK42g8xtqIOKciAxJez9iypocrpOIdI%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1652786Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A39Z&se=2024-11-06T11%3A10%3A39Z&sr=c&sp=rl&sig=FUxNBj3NiQcYg%2BzGyTjs8VnZnBRnQoDV0%2F6Xu%2F3eLkA%3D","expireDateTime":"2024-11-06T11:10:39.1653691Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A49Z&sr=b&sp=r&sig=Il8QBaTEHJO9y6j5yQkwYBRo103W%2BwKHoXL%2BeVe5JP0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:49.1636079Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A49Z&sr=b&sp=r&sig=55w5XdbpDzBGRBy89nvpzoEtQVFiqZTt0FrNzOE6lrM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:49.1631701Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A49Z&sr=b&sp=r&sig=thU69hO8w8nsI5ADKHSXOb0Bph9uMTzzEmquxU9sKqQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:49.1637813Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A49Z&sr=b&sp=r&sig=v0sAJLMh9OoySfDP5e598LzoDuD8K1%2FLHFten9T8jD4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:49.1639487Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A49Z&sr=b&sp=r&sig=gw3ce3%2FsnEhg5%2BUglF0UfxHjvZK4ulmCagRhC0vMHA4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:49.1641138Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/f5c09689-81d3-4930-8d02-8cd256bbc3af_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A49Z&sr=b&sp=r&sig=BY0wQ1mcRthylQEG4k%2FTnU%2F%2FqlQkhuxuGq8JjdccReo%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:49.1643012Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/f5c09689-81d3-4930-8d02-8cd256bbc3af_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A49Z&sr=b&sp=r&sig=R2%2BucQA4Cu%2BS1I0F6T%2BEIy71IH6y9MmUMFf5Drgo%2FAc%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:49.1644685Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A49Z&se=2024-11-20T12%3A25%3A49Z&sr=c&sp=rl&sig=twiz9%2FaWm824hOq3JZnp%2FhHP5CXzaM4R3ciDh5LU6M0%3D","expireDateTime":"2024-11-20T12:25:49.1646316Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-20T11:21:00.563Z","endDateTime":"2024-11-20T11:25:40.076Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:48.009Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6121' + - '6233' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:39 GMT + - Wed, 20 Nov 2024 11:25:49 GMT mise-correlation-id: - - ffb99280-e4c1-42a6-9efc-cd374e0a1ef3 + - 9bfcc87f-5055-4aa0-bc55-f93210deba34 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101038Z-er1d798b584l2zgthC1SIN681w00000005r0000000002t1n + - 20241120T112548Z-r16f5dbf676jhzw2hC1YVRptw400000001cg0000000059sf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4062,17 +4235,18 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: POST - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":1.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2024-11-20T11:21:00.000Z","value":1.0},{"timestamp":"2024-11-20T11:22:00.000Z","value":1.0},{"timestamp":"2024-11-20T11:23:00.000Z","value":1.0}]}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -4080,13 +4254,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:40 GMT + - Wed, 20 Nov 2024 11:25:49 GMT mise-correlation-id: - - 4a5d9cba-9816-4efb-b08e-64d63c7fc437 + - 352b81dc-3aa9-4cf9-82ce-fc056eae679c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101039Z-er1d798b584l2zgthC1SIN681w00000005r0000000002t22 + - 20241120T112549Z-r16f5dbf676jhzw2hC1YVRptw400000001cg0000000059sq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4104,23 +4278,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:23.902207Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:23.902207Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:43 GMT + - Wed, 20 Nov 2024 11:25:49 GMT etag: - - '"fa00791c-0000-0200-0000-672b3f0b0000"' + - '"97032001-0000-0200-0000-673dc5d00000"' expires: - '-1' pragma: @@ -4136,7 +4310,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 93D999B8FC6247FCBC456E97586D00E4 Ref B: MAA201060513023 Ref C: 2024-11-06T10:10:42Z' + - 'Ref A: 2383C76646784F6D989618B3CA5D9D5D Ref B: CO6AA3150217047 Ref C: 2024-11-20T11:25:50Z' status: code: 200 message: OK @@ -4150,31 +4324,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=NFIZ61VjxCXUpRbUvcFuS4t7SqVsDjGbeoSZdkuYtdk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.8832108Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=oX8Y3%2BhAPH3xYm90Oca7YEULcNj5OWe3Rbksd9XM78s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:46.8829217Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=k4PKPin5AB23hWYvtPQSHVUSeIHJ0EcZvwhNJaFHOyU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.883308Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=mFzlTQwiXE687269qTOlZ%2BIfXYVGX9X5tDpLwpbNRn0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.8834011Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=Xq1H16qcUdFIjVyLZ%2FCzRL7iBhPR83ol62EL9Jo4QcQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.8834894Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=kNRZFtO%2FVbs4xF7qkd30Gxs70zotYrrYXoEqsczZLCQ%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.883579Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=hMlCeFX7u0s3y3gXRifjUpmP08rNDzNPEKu8%2FyDCQDo%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.8836678Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A46Z&se=2024-11-06T11%3A10%3A46Z&sr=c&sp=rl&sig=QYKS2%2BFnE0JABJYRBlFPxfN4lWJV0FYPus3K8rt3TvU%3D","expireDateTime":"2024-11-06T11:10:46.8837625Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A50Z&sr=b&sp=r&sig=4x0%2BEFeBSZOqLRq47mIz2a0ffkpZFgk6k9CPXiZ2WtA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:50.7747634Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A50Z&sr=b&sp=r&sig=P5lSzqNhFuqGS0hlP%2B52o6jgGOqWh1FX5jgz6evrawE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:50.774417Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A50Z&sr=b&sp=r&sig=wloXA7NmQ6Clo9HH75aIESuqjsGUDbNu%2FPG3AFHB66w%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:50.7748611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A50Z&sr=b&sp=r&sig=FI7G%2Bqy413J9UunVOYqgWUNDRjnylB2h%2FiVJQ1Kig28%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:50.7749581Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A50Z&sr=b&sp=r&sig=gKUaqPcfHebY0PdnTTvdqvaANpDjlxWgGw3p7jWcQmE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:50.7750562Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/f5c09689-81d3-4930-8d02-8cd256bbc3af_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A50Z&sr=b&sp=r&sig=OFo%2FJDcdgKSDsE776polWTGx6VHY5GC8Rb4BOassWLU%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:50.7751522Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/f5c09689-81d3-4930-8d02-8cd256bbc3af_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A50Z&sr=b&sp=r&sig=sqgnrmvjc342VbrA7h13HORK2xzBo3JQy0okXH5R5t8%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:50.7752446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A58Z&ske=2024-11-20T18%3A19%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A50Z&se=2024-11-20T12%3A25%3A50Z&sr=c&sp=rl&sig=kPJ%2FcD3b2hB4wjOwHO1X%2F7k9%2BH49ygR1pROjnDd1Qfo%3D","expireDateTime":"2024-11-20T12:25:50.7753419Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-20T11:21:00.563Z","endDateTime":"2024-11-20T11:25:40.076Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:48.009Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6112' + - '6222' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:46 GMT + - Wed, 20 Nov 2024 11:25:50 GMT mise-correlation-id: - - 4ec83262-34b7-459d-aec0-a43cb2329db0 + - 8852cd19-715a-4ee6-baa9-f263bce71f1a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101045Z-er1d798b5846jstkhC1SINc5v400000005ng0000000050p9 + - 20241120T112550Z-1789fbbbd78t74tvhC1PDX9fys0000000gg000000000ckwd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4192,9 +4367,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-05-01-preview&metricNamespace=LoadTestRunMetrics + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-05-01-preview&metricNamespace=LoadTestRunMetrics response: body: string: '{"value":[{"dimensions":[{"description":"Request Name","name":"RequestName"},{"description":"Engine @@ -4209,7 +4384,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -4217,13 +4393,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:47 GMT + - Wed, 20 Nov 2024 11:25:50 GMT mise-correlation-id: - - 073b377d-87a3-46e1-b04d-0eb05d646824 + - 4afaa334-d354-4194-aaa1-aef4b16cfd68 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101047Z-er1d798b5846jstkhC1SINc5v400000005ng0000000050pf + - 20241120T112550Z-1789fbbbd78t74tvhC1PDX9fys0000000gg000000000ckx8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4241,9 +4417,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: string: '{"value":["HTTP Request"]}' @@ -4251,7 +4427,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -4259,13 +4436,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:48 GMT + - Wed, 20 Nov 2024 11:25:51 GMT mise-correlation-id: - - 085177b9-1397-4f3d-a29d-d51adfbe9c96 + - fe2ac30f-602d-4b11-bdec-5ea49f0ae5f5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101047Z-er1d798b5846jstkhC1SINc5v400000005ng0000000050pg + - 20241120T112550Z-1789fbbbd78t74tvhC1PDX9fys0000000gg000000000ckxe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4283,9 +4460,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/EngineRegion/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/EngineRegion/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: string: '{"value":[""]}' @@ -4293,7 +4470,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -4301,13 +4479,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:49 GMT + - Wed, 20 Nov 2024 11:25:52 GMT mise-correlation-id: - - c5f7a998-1265-42b4-8d70-7200db9cd42c + - a631d407-8ec9-4ce7-ae81-552a642b045b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101048Z-er1d798b5846jstkhC1SINc5v400000005ng0000000050pp + - 20241120T112551Z-1789fbbbd78t74tvhC1PDX9fys0000000gg000000000cky2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4330,18 +4508,19 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: POST - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP + string: '{"value":[{"data":[{"timestamp":"2024-11-20T11:21:00.000Z","value":1.0},{"timestamp":"2024-11-20T11:22:00.000Z","value":1.0},{"timestamp":"2024-11-20T11:23:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP Request"},{"name":"EngineRegion","value":""}]}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -4349,13 +4528,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:51 GMT + - Wed, 20 Nov 2024 11:25:53 GMT mise-correlation-id: - - e5900d96-a67a-4f17-844f-987570bf9862 + - 6a3dbb57-c24d-4c92-aa42-18f27be46c80 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101049Z-er1d798b5846jstkhC1SINc5v400000005ng0000000050pv + - 20241120T112552Z-1789fbbbd78t74tvhC1PDX9fys0000000gg000000000ckzt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4373,23 +4552,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:23.902207Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:23.902207Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:53 GMT + - Wed, 20 Nov 2024 11:25:54 GMT etag: - - '"fa00791c-0000-0200-0000-672b3f0b0000"' + - '"97032001-0000-0200-0000-673dc5d00000"' expires: - '-1' pragma: @@ -4405,7 +4584,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3E94A5ADE6CC471297368631CE3CBAEB Ref B: MAA201060515029 Ref C: 2024-11-06T10:10:53Z' + - 'Ref A: 8341056AEEF645949F9FD049E9DCF2C9 Ref B: CO6AA3150217011 Ref C: 2024-11-20T11:25:54Z' status: code: 200 message: OK @@ -4419,31 +4598,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=8g8UMp7P4mt64NiNYSWMO%2FWWIja1%2BVhFzSw9Lmly03k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.0715361Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=vAstEdzuSLeYtrIkVDf0H3Hm4mydeTDX3tskQ8m6G14%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:57.0710079Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=6L1LVNxl5HM%2FJLNyfwMcycVBaZAAzRc2zHue41T7ua0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.0716787Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=58xY7V08K0plZ4EjMUeNR%2Fc43UwVw6HerhYzD5777LI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.0719951Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=SXITYHA4tASkt5LDWfNG22PVXr%2BzmRBvsuiRI4r3hSI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.0721358Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=trBNqnVV6OLxFFwTWClZ%2FUbjrdOhdyEEXhF6calW2bc%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.072438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=Q9COcK2GWfAIifOK%2BittwrRZ4UgzvFGGc%2FXUzr0CYqQ%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.0725812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A57Z&se=2024-11-06T11%3A10%3A57Z&sr=c&sp=rl&sig=8y3VbQSgkXYK%2FgHxzItSxcVRkQuocO%2FRRgn8kZ58ocw%3D","expireDateTime":"2024-11-06T11:10:57.0728828Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A54Z&sr=b&sp=r&sig=WX%2BHhXlvBWYI%2BdamGMdwlrYlYmlC9aRNyM2LTAmhPJo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:54.7285187Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A54Z&sr=b&sp=r&sig=krxhiSTjUtq81nf1r7zpbnihAwmA93O2vnWOblrkqjA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:54.7282793Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A54Z&sr=b&sp=r&sig=6iyMA21IhXkBUVIzXYa4ZYDLUk%2FclSFjHeJJdI9h36I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:54.7285848Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A54Z&sr=b&sp=r&sig=XEwiqoJDziMsWu53BR32X3dY55UTqI4%2BEZLyRkFOh2I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:54.7286491Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A54Z&sr=b&sp=r&sig=ibmFr%2BuxW34DwvmBfRkVm7Du6WijsV55v9OSg1xrLFU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:54.7287114Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/f5c09689-81d3-4930-8d02-8cd256bbc3af_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A54Z&sr=b&sp=r&sig=FJI%2B4M6IkHl1DnRf8IvHzJt%2FkkhgW5yZgIpzWn6QRY8%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:54.728774Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/f5c09689-81d3-4930-8d02-8cd256bbc3af_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A54Z&sr=b&sp=r&sig=HFbZ7Gq6o1lpGGYKrCTEcGoifv%2BwAb%2BD%2FtxzEeJHFbk%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:54.7288378Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A00Z&ske=2024-11-21T20%3A21%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A54Z&se=2024-11-20T12%3A25%3A54Z&sr=c&sp=rl&sig=P7CbmGKIAEJkwVJ717js%2FKWH0Ax7ewDkcLOVAWdDH1Y%3D","expireDateTime":"2024-11-20T12:25:54.7289Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-20T11:21:00.563Z","endDateTime":"2024-11-20T11:25:40.076Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:48.009Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6121' + - '6223' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:57 GMT + - Wed, 20 Nov 2024 11:25:54 GMT mise-correlation-id: - - 158bc082-3450-4873-a4f9-1510d0b1fbb7 + - 0965aeb7-be36-4865-916e-818e88552a64 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101056Z-er1b6dc89fdfpwdqhC1SG1pbqs00000004z00000000074ac + - 20241120T112554Z-r16f5dbf676bfk2zhC1YVR2ru400000003m0000000004a8m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4461,9 +4641,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: string: '{"value":["HTTP Request"]}' @@ -4471,7 +4651,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -4479,13 +4660,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:58 GMT + - Wed, 20 Nov 2024 11:25:55 GMT mise-correlation-id: - - 10781955-b791-461c-940e-654494b9f410 + - f2dc7143-4de5-4726-8b0a-c268ca3465bd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101057Z-er1b6dc89fdfpwdqhC1SG1pbqs00000004z00000000074ba + - 20241120T112554Z-r16f5dbf676bfk2zhC1YVR2ru400000003m0000000004a8u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4507,18 +4688,19 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: POST - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP + string: '{"value":[{"data":[{"timestamp":"2024-11-20T11:21:00.000Z","value":1.0},{"timestamp":"2024-11-20T11:22:00.000Z","value":1.0},{"timestamp":"2024-11-20T11:23:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP Request"}]}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -4526,13 +4708,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:10:59 GMT + - Wed, 20 Nov 2024 11:25:55 GMT mise-correlation-id: - - 470ba0d6-1055-4a46-8839-cec97d3e885e + - 8d68850b-fd34-4311-8f1f-43f2166f0d34 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101058Z-er1b6dc89fdfpwdqhC1SG1pbqs00000004z00000000074d9 + - 20241120T112555Z-r16f5dbf676bfk2zhC1YVR2ru400000003m0000000004a99 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4550,23 +4732,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:23.902207Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:23.902207Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:02 GMT + - Wed, 20 Nov 2024 11:25:55 GMT etag: - - '"fa00791c-0000-0200-0000-672b3f0b0000"' + - '"97032001-0000-0200-0000-673dc5d00000"' expires: - '-1' pragma: @@ -4582,7 +4764,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C87F6502784A4C88AC05F20B5796B917 Ref B: MAA201060515049 Ref C: 2024-11-06T10:11:01Z' + - 'Ref A: F0419C61EA634A57A14C4DFE5B51BEEE Ref B: CO6AA3150218021 Ref C: 2024-11-20T11:25:56Z' status: code: 200 message: OK @@ -4596,31 +4778,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=5YSEFR3mTzpTILPi18cNo8jOTUcqjAchBGP7PTdntqY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.0502286Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=PHxfqzzjuvp9WHGRQqAEInYtGzYrG95wn6fdMeVYxz8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:05.0498839Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=ckq2TPz4TgxXiSMEaA2XnM4BNCNmAnKFK%2FhblJdSn1A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.0503514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=BIQjb10a840TV%2FEzHm%2Bbn2ibExOWNOBKCneHE%2B5jyPk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.0504725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=dGHkLYXz7cjovzAErAdruwYlz%2BzmktP7WDojTAhxgvY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.0505896Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=%2Fcv%2F8P6tn4wU9EUng%2Bs9gCKephOSuMP7j7GUBTlejiE%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.0507074Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=K1UBANLOM4w%2B8wLu0dBT14GWi9kRXYm4Mssv74NZH8U%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.050831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A05Z&se=2024-11-06T11%3A11%3A05Z&sr=c&sp=rl&sig=vQxzorJUWDquoGko5%2BWBo%2B%2BvTWUwxj5GwcTqqSfbW%2FE%3D","expireDateTime":"2024-11-06T11:11:05.0509547Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06c57e02-6c25-4c0d-be5a-48f2fe3730b7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49ffee0e-1b6a-452b-b371-0493988a724a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"350933cf-f957-42b9-a1e7-e6f1b7be5262":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/742a359b-14b3-437b-8645-860d7a200142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A56Z&sr=b&sp=r&sig=NvVPVXhcuw6NaFfYe%2BSa0872UEXKE3WMXAMo%2FSO5VZ8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:56.5276083Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/2cc3871d-90ce-4906-8b8d-5b893ba2f994?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A56Z&sr=b&sp=r&sig=n19Eb6UBYbH%2Fb%2BhCqlBMWZMTjsS2HaYTobPpaSzCxNU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:56.5271192Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/c363d1b7-9aa4-4b03-b344-a33fed74db8d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A56Z&sr=b&sp=r&sig=Mx3cYXWtf4f3himfijRqq0ayaUcqVGV%2FTZGyGhTD5rE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:56.5277678Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/0ef89cfb-72d0-40cd-a41a-ed863fea99b0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A56Z&sr=b&sp=r&sig=%2FSJre0BRkt4%2FkENXNeFUTqcC2GU9HveorgAAZeW%2Fc4w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:56.5279147Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/e75df893-c384-4727-b42d-68acb9e429d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A56Z&sr=b&sp=r&sig=yq1Q1dq%2FOA82MmbHNxuKNnC5IK7WIPaL0DNlMflHXsk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:56.5280497Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/f5c09689-81d3-4930-8d02-8cd256bbc3af_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A56Z&sr=b&sp=r&sig=OssVA9YowBpiYnh3oFnx36MCRaXG98cvGFrD0YzdZjg%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:56.528185Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/c717acca-c653-4159-8a5c-8660ac77b421/f5c09689-81d3-4930-8d02-8cd256bbc3af_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A56Z&sr=b&sp=r&sig=p%2BxUU1GeCYykg2%2Bu6DFzYMT0F%2BJlPQch9n53n3rHvfA%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:56.5283143Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://jukzcfx35r14z3duh5opipio.z32.blob.storage.azure.net/f5c09689-81d3-4930-8d02-8cd256bbc3af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A19%3A56Z&ske=2024-11-20T18%3A19%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A56Z&se=2024-11-20T12%3A25%3A56Z&sr=c&sp=rl&sig=MHMWcFExS6btjedM0Z3ponC%2Feswfitg9D%2BHUKV1naXA%3D","expireDateTime":"2024-11-20T12:25:56.5284479Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-20T11:21:00.563Z","endDateTime":"2024-11-20T11:25:40.076Z","executedDateTime":"2024-11-20T11:20:59.484Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2024-11-20T11:20:59.846Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:48.009Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6127' + - '6232' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:05 GMT + - Wed, 20 Nov 2024 11:25:56 GMT mise-correlation-id: - - b379cbb7-cd12-473f-9f29-ab68f431e069 + - c2899e98-fea2-4808-b819-a67592300050 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101104Z-18557d4f7b8bfs5phC1SGE9xxs000000056g00000000tf7g + - 20241120T112556Z-1789fbbbd78lrwt9hC1PDX9nu00000000gv000000000e3k1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4642,18 +4825,19 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: POST - uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z + uri: https://88d14876-8ca9-4511-ab0a-acb04721f72e.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-20T11%3A21%3A00.563Z%2F2024-11-20T11%3A25%3A40.076Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP + string: '{"value":[{"data":[{"timestamp":"2024-11-20T11:21:00.000Z","value":1.0},{"timestamp":"2024-11-20T11:22:00.000Z","value":1.0},{"timestamp":"2024-11-20T11:23:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP Request"}]}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -4661,13 +4845,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:11:05 GMT + - Wed, 20 Nov 2024 11:25:57 GMT mise-correlation-id: - - cfd9884d-b4b2-4960-abe4-ea0233c0c7be + - 45924f56-c788-4f6d-8490-397b817c3a29 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101105Z-18557d4f7b8bfs5phC1SGE9xxs000000056g00000000tf93 + - 20241120T112556Z-1789fbbbd78lrwt9hC1PDX9nu00000000gv000000000e3kp x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_server_metric.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_server_metric.yaml index 3e241d49f89..65477ff7e47 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_server_metric.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_server_metric.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:10.8948909Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:10.8948909Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:01 GMT + - Wed, 20 Nov 2024 11:20:04 GMT etag: - - '"13011fa6-0000-0200-0000-672c55960000"' + - '"97031001-0000-0200-0000-673dc5c60000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2F5B2D0300B044979318C9B9FB174800 Ref B: MAA201060516049 Ref C: 2024-11-07T05:53:01Z' + - 'Ref A: 8186BDC9B5054002A1584A98B310E539 Ref B: CO6AA3150218039 Ref C: 2024-11-20T11:20:04Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier server-metric-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:53:03 GMT + - Wed, 20 Nov 2024 11:20:05 GMT mise-correlation-id: - - 3d915901-9b1c-47a6-81ff-9793b44da73a + - 2d0ab06b-d906-4174-bdfa-297f0dc5be5b strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T055302Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000taxg + - 20241120T112005Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009bv9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "ee2b3a0c-f8e3-442c-a608-6c42a6b75f09": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "e7d60652-01f2-490f-b7d7-6abc74c8239a": + "78"}, "e16a84d4-0d84-4e3f-9b6c-95bdfe65901a": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "1910b9b5-6676-409b-bd2c-ea77f1578fbb": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:53:03.641Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:03.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:20:05.899Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:20:05.899Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1053' + - '1155' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:03 GMT + - Wed, 20 Nov 2024 11:20:05 GMT location: - - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-03-01-preview + - https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 3e4cd3bd-b4ae-40c8-8dd2-8f9832e563dc + - 9953597f-15ae-4311-8689-fda7ff6fddd3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055303Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tb16 + - 20241120T112005Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009bvx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:04 GMT + - Wed, 20 Nov 2024 11:20:06 GMT mise-correlation-id: - - e7433abd-a51d-43d2-9998-efdcaf4d748a + - 4547f868-8df0-4778-aebe-77d7e8be49cf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055303Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tb32 + - 20241120T112005Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009bwa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A05Z&sr=b&sp=r&sig=KQQHEzBw%2FeXjhKn9yMSZ5WVhed4LMkONQP5q%2FANwrjA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:03:05.6208404Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A06Z&sr=b&sp=r&sig=dzAjqNQBR97FNmb1BlUh0tcgpo%2BRjquLmTPn0bZPJoc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:30:06.3929415Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '573' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:05 GMT + - Wed, 20 Nov 2024 11:20:06 GMT location: - - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - f6b3ec72-d951-4378-b2da-4630fb6ebcfb + - 90c032d2-8ebc-4acf-acdb-4a71129e73d0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055304Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tb4h + - 20241120T112006Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009bwd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A06Z&sr=b&sp=r&sig=YE6t0Q71syn8u7PUJ3oG6XAoGZblceOOXx6DoLfa2ng%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:03:06.0043704Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A07Z&sr=b&sp=r&sig=nCrjgk1nS9v8ELGaKxbMvTVaQd3KXS80YAoO0IUatgw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:30:07.3351362Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '571' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:06 GMT + - Wed, 20 Nov 2024 11:20:07 GMT mise-correlation-id: - - 573c0dce-f34f-482c-afa2-b05210536317 + - 03f02317-e8ce-4cdb-984f-3fa110146c49 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055305Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tbcg + - 20241120T112006Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009bwv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A07Z&sr=b&sp=r&sig=JBaGzWyD%2F4VTv29F8EbGHIgCChoFBW1vu59m6L%2BIEoQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:07.5767507Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A07Z&sr=b&sp=r&sig=ZkyXaRluIHjRNA0qoxBpId5h9XLZsr1R53%2FQvqUJThA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:07.6759078Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '571' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:07 GMT + - Wed, 20 Nov 2024 11:20:07 GMT location: - - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - b2bcd31a-f054-49f7-a90d-484fa81b4687 + - 1c1bec35-e6e3-40fb-9197-60f337b49ae8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055306Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tbee + - 20241120T112007Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009byp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,73 +351,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A09Z&sr=b&sp=r&sig=lFSPT%2BU1oQQV5djXes%2Bc6h2WI3FNd48wja1mExBneW4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:09.4215665Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '571' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Nov 2024 05:53:09 GMT - mise-correlation-id: - - 656b0a55-9847-4c4a-9f65-cd7735bc7bc4 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241107T055307Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tbs9 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A14Z&sr=b&sp=r&sig=Q7ewbYtFfiOSRqBBQCKTG3XTnFj3Cmc1GslWMe611Ok%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:14.7261567Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A07Z&sr=b&sp=r&sig=ZkyXaRluIHjRNA0qoxBpId5h9XLZsr1R53%2FQvqUJThA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:07.7741203Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '567' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:14 GMT + - Wed, 20 Nov 2024 11:20:07 GMT mise-correlation-id: - - 76bceb71-a14d-4c53-80fc-ae5ed42c596c + - 13eb8863-414b-4489-b1fd-403a73ae82e9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055314Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tcu2 + - 20241120T112007Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009bzd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A21Z&sr=b&sp=r&sig=U%2B1j6h8DraGZltJXh5Th37lKjotcMd8GP7S7Zb2Nv2Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:21.0326506Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A12Z&ske=2024-11-20T18%3A20%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A12Z&sr=b&sp=r&sig=EIbyWtazGwhIqhedzxktshhqBT5gOLSJmIl3qum%2FjEg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:12.9603003Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:21 GMT + - Wed, 20 Nov 2024 11:20:12 GMT mise-correlation-id: - - 6688d0bb-5d97-4021-a6fc-ecbc5db62b8d + - b2a8bed5-9c2e-4778-8874-f330ce1dce86 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055319Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tdr5 + - 20241120T112012Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009c7h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A27Z&sr=b&sp=r&sig=RnslCszuGGdA3gNlC2qRbSYE0ohfE4rD0lVMteByK7o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:27.333205Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A18Z&sr=b&sp=r&sig=%2BxV86mQTRFWOwdl5t7oUj%2F4%2BV%2FDkHlQ4oUX9FTPYvCY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:18.067184Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '566' + - '575' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:27 GMT + - Wed, 20 Nov 2024 11:20:18 GMT mise-correlation-id: - - b92c9ac3-65ce-4f6e-96a2-27fd695bf441 + - 4c83ac6a-c9aa-402b-bfc8-e4227fc991f3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055326Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000terx + - 20241120T112018Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009cfw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A32Z&sr=b&sp=r&sig=1EBya95eJ6CbXHcmwRWXxLMqrxXb%2BWeztGWthjoW7Vc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:32.6024635Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A23Z&sr=b&sp=r&sig=ZnwCuHTiija6YTMC32V%2FYu319zcJGhao1P4Kt46R3gE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:23.9750134Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:32 GMT + - Wed, 20 Nov 2024 11:20:23 GMT mise-correlation-id: - - 55b123e1-a283-4bcf-a106-209147d2506d + - b131dfca-cbdf-48f4-9479-a1a5fe7674b0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055332Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tftv + - 20241120T112023Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009csg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -554,31 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A37Z&sr=b&sp=r&sig=S5c7mqFaug1GldA88E55ceI3MrFxx%2FydnUPLiFeR1%2Bk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:37.8659166Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A29Z&sr=b&sp=r&sig=cvGhiQtz7YOeL7luAtXg6ICeui2S0NEyMkdFUfHsb7c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:30:29.07544Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '564' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:37 GMT + - Wed, 20 Nov 2024 11:20:29 GMT mise-correlation-id: - - 94f9de00-847c-4e32-ae77-7993f682d033 + - c04cee37-ecb5-4698-9b3c-6f9d9c7db207 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055337Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tgp7 + - 20241120T112029Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009d0z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,33 +658,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A39Z&sr=b&sp=r&sig=6294zO9RBXClHnVV5mDzGKbEQRvWO4mnR8tDexTe3jY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:39.1913364Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A29Z&sr=b&sp=r&sig=VEhDx8bBcaJ5YkqvrlRdIkUb8ebKoXvyyMqHNNYf7LY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:29.3305385Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '556' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:39 GMT + - Wed, 20 Nov 2024 11:20:29 GMT location: - - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 93e95495-c787-404a-8245-70e7d527763b + - 20012177-28c5-47c3-bd84-f9c46717037e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055338Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tgqe + - 20241120T112029Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009d14 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,17 +703,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A39Z&sr=b&sp=r&sig=ZeXORsKDLwkauoB9jfjO8EadjDe6iVGY%2BV5XfywwrCc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:39.470742Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A29Z&sr=b&sp=r&sig=VEhDx8bBcaJ5YkqvrlRdIkUb8ebKoXvyyMqHNNYf7LY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:29.4342099Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -750,13 +722,56 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:39 GMT + - Wed, 20 Nov 2024 11:20:29 GMT + mise-correlation-id: + - 954b86a4-10fe-47b3-8a4c-8163e38dbc5b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112029Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009d1k + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A34Z&sr=b&sp=r&sig=DDjQlFrIrXTOK05mWP39Wi6LpM1G6I4y0%2FF%2FY18PUCs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:34.5412749Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:20:34 GMT mise-correlation-id: - - f7d48997-3fff-4d8f-b1ff-87d1b7a89c3e + - 92d92452-579a-4662-a0b9-d8d81aa4bc3c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055339Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tgz8 + - 20241120T112034Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009d8q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,31 +789,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A44Z&sr=b&sp=r&sig=4Il6r2uD3E%2Bv4Jmzob8VkWyTvVjvEwrFVJRpgTe9i4E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:44.7779995Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A39Z&sr=b&sp=r&sig=uz7qeH%2Bb49kE0ZoSBFlBlXNmfOuZgNaJWm35zBeabwo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:39.6398384Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:44 GMT + - Wed, 20 Nov 2024 11:20:39 GMT mise-correlation-id: - - 78fdadc4-e4e0-4f16-8b6a-ecd272d6c574 + - 87ae6075-a17f-4a03-acf2-4d8fba8e8517 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055344Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000thx5 + - 20241120T112039Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009dgy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A50Z&sr=b&sp=r&sig=CO0zlgMPZ2ZTN4%2FmwdIpXphdhETFXboSsx27NSDgXX0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:50.0488756Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A44Z&sr=b&sp=r&sig=bKtyU14csdg7522BppXcfIDZ5F5%2Fk2R%2FOywPRIT5hM0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:44.7531486Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' + - '560' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:50 GMT + - Wed, 20 Nov 2024 11:20:44 GMT mise-correlation-id: - - c1dfe231-358c-412d-918f-61ca5b409993 + - 0b245fa7-9d45-4fa3-8924-9a5f2f43e9b4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055349Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tkre + - 20241120T112044Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009dtp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A55Z&sr=b&sp=r&sig=EVVJX2lCa4pe17zSZ8RpmbKaYKkJ1NmwmN3at0vGz0Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:55.3087862Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A12Z&ske=2024-11-20T18%3A20%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A49Z&sr=b&sp=r&sig=mxY7wZS%2Fejj9aKFESzSlSEbryP0ArsDtvLsRjOvNmMw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:49.8572718Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:55 GMT + - Wed, 20 Nov 2024 11:20:49 GMT mise-correlation-id: - - c8f749dc-944f-4629-b512-42ce27f061d7 + - a502da4b-5c5b-4238-8330-c7906396c224 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055355Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tmku + - 20241120T112049Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009e1m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A00Z&sr=b&sp=r&sig=8zOMzJsAStGwwBSYAEqSW8ZvLSs5DTI6nTocWftrXjM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:04:00.5898806Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A30%3A54Z&sr=b&sp=r&sig=81pP6iJtw23KZ0%2B8l3%2B921Ze1YGRaWuOUO%2FsNGMWcpg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:30:54.9676261Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '562' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:00 GMT + - Wed, 20 Nov 2024 11:20:54 GMT mise-correlation-id: - - b9f2b0cd-2b13-4788-92cb-a56eaafb1592 + - fbce749a-847c-4dae-ac3a-0cd86b8ab7ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055400Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tnb2 + - 20241120T112054Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009eas x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +961,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A05Z&sr=b&sp=r&sig=lDlVbuqQngxALqv3cM306dOlQ9Bgu36rQCh16cV0nqk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:04:05.8661578Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A00Z&sr=b&sp=r&sig=R01k%2FYuOS%2F132hvZGb3xzj3ywI52LiqZkVB3CGPgjnA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:00.0984022Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '560' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:05 GMT + - Wed, 20 Nov 2024 11:21:00 GMT mise-correlation-id: - - 2cc78f44-0b2e-4d93-b10e-211de5463270 + - 18d22ef7-182a-4e19-9683-1d999cfb51a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055405Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tp2k + - 20241120T112100Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009ekp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,31 +1004,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A11Z&sr=b&sp=r&sig=e0i9M9Ow1w%2Foj4s6BKw%2BbFhtrOPQe9vvKdDj1dlnZ%2Fg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:04:11.1878423Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A31%3A05Z&sr=b&sp=r&sig=O%2FybK1Y63xf3Hmqat1un%2F3Y2Og3As%2Bf57XBloncv0Tw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:31:05.2108175Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '559' + - '560' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:11 GMT + - Wed, 20 Nov 2024 11:21:05 GMT mise-correlation-id: - - 2b395e2a-f597-4257-aae0-e4ac2e5777cb + - 14d3a0e9-afec-4bfa-95e6-73f3c675abbf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055411Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tptd + - 20241120T112105Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009ex9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1026,32 +1047,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A11Z&sr=b&sp=r&sig=X%2BEphOqfXbT8X5S4rSFt1yYBXI9aKDftt1t%2F9RQWEjQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:11.4958232Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A11Z&sr=b&sp=r&sig=O37cqmh1GG5tP%2FwhMA7iVCTv68Gn5NIRECoBLYlcFhQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:11.496395Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A11Z&sr=b&sp=r&sig=TpbtrAFqpeTStXXoBHXNQSwBA9ZJ7ah%2BBxSvv0m7GOc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:11.4964736Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:53:03.641Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:11.034Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A02Z&ske=2024-11-21T01%3A21%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=2Q35E4vo4af8xKVNaR0R1T169mZUAAXJLY0UFzPcJQc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:05.3065479Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A02Z&ske=2024-11-21T01%3A21%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=1EWDY0iglcom9tAOJM%2BSRAAWOhe3ciK9Jbhi7vLy168%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:05.3070137Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A02Z&ske=2024-11-21T01%3A21%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A05Z&sr=b&sp=r&sig=Uk%2BRJA2zD5VfvYWRy17d9cZ3YeLeawNW2Fm7GSlBpqc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:05.3072105Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:20:05.899Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:02.068Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2771' + - '2873' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:11 GMT + - Wed, 20 Nov 2024 11:21:05 GMT mise-correlation-id: - - 7969efab-06c5-473d-83b6-feafda5e8e62 + - f39d7617-e1c8-4961-81b2-545a24e3cbd2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055411Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tpu7 + - 20241120T112105Z-17b7777dc4569rwghC1CO1z91n00000007cg000000009exk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1069,23 +1091,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:10.8948909Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:10.8948909Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:13 GMT + - Wed, 20 Nov 2024 11:21:06 GMT etag: - - '"13011fa6-0000-0200-0000-672c55960000"' + - '"97031001-0000-0200-0000-673dc5c60000"' expires: - '-1' pragma: @@ -1101,7 +1123,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 170CC6646BBD41878E348A6AE6CAC113 Ref B: MAA201060516053 Ref C: 2024-11-07T05:54:12Z' + - 'Ref A: 4E039DBB730341879D11A07EFBC96717 Ref B: CO6AA3150219033 Ref C: 2024-11-20T11:21:05Z' status: code: 200 message: OK @@ -1115,32 +1137,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A14Z&sr=b&sp=r&sig=YBwLbFq1G10BG4LHFlTWKRWThgE4qF2VqKwvv%2FNZyJk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:14.5854846Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A14Z&sr=b&sp=r&sig=ysWEnkt4gKzNlas5%2FlcwG6PfqcXJLJvJxtViMZzJ3E8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:14.5859411Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A14Z&sr=b&sp=r&sig=ix14XGBXt8lkAHZtiIA0Ld9hYzF25ciW4kzgHeRJCJY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:14.5860874Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:53:03.641Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:11.034Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A06Z&sr=b&sp=r&sig=UplixyASdGTSxi2D2o9vSqeMNyrRYG9tUN32e6M1Wt4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:06.4632583Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A06Z&sr=b&sp=r&sig=TYzi1j%2Bfk%2B1I99bq6cGw%2FsF6Wk1PewPBdIVPbn8IbwQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:06.4637681Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A06Z&sr=b&sp=r&sig=nkEtP0jCQng6P2%2F8UE9CXSeaExN4Ywp68uETqJIvIEc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:06.4638992Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:20:05.899Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:02.068Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2780' + - '2889' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:14 GMT + - Wed, 20 Nov 2024 11:21:06 GMT mise-correlation-id: - - acec12a1-cec2-4fe0-bc9b-4ad7ff340ebf + - 830769ab-7df4-4ce6-8204-0745adca562e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055414Z-184f6b5dbd8dndr4hC1MAA4x9s000000077g000000000g9y + - 20241120T112106Z-17b7777dc45tj6jqhC1CO1t6dc0000000g6g000000004bgf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1158,23 +1181,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:10.8948909Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:10.8948909Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:15 GMT + - Wed, 20 Nov 2024 11:21:06 GMT etag: - - '"13011fa6-0000-0200-0000-672c55960000"' + - '"97031001-0000-0200-0000-673dc5c60000"' expires: - '-1' pragma: @@ -1190,7 +1213,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2741DB37BC6547529CBCFFCC07FC0961 Ref B: MAA201060514039 Ref C: 2024-11-07T05:54:15Z' + - 'Ref A: 285AE82267A74487BA85DDFCCCCCA2F1 Ref B: CO6AA3150218031 Ref C: 2024-11-20T11:21:06Z' status: code: 200 message: OK @@ -1204,30 +1227,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with given name \"server-metric-test-run-case\".","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:54:17 GMT + - Wed, 20 Nov 2024 11:21:07 GMT mise-correlation-id: - - 6c403e12-8db0-4f78-bf5b-45b6dede5467 + - 9fc00618-0dfa-45a1-8c3e-3b9fefa39e4d strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T055417Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000063wq + - 20241120T112107Z-17b7777dc45rltqhhC1CO1uz7s0000000w2g00000000wqbg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1251,31 +1275,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A20Z&sr=b&sp=r&sig=t2SJPN5OaelvkfvwmmAbrr1ZCMwoejV%2FdfJLOwysrX8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:20.6434237Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A20Z&sr=b&sp=r&sig=eQ5dioodm1Jyx5VMb5LpLIx0L%2BfULMWQZGFh1BL6qE4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:20.6432224Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A20Z&sr=b&sp=r&sig=b5%2FUNs9IdnxhKh6mQevCI3o3vpdKoZLNvSdRP5h8%2BWs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:20.6435106Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A20Z&sr=b&sp=r&sig=sP6HooiZaVXPhFofUCIfBs5zCIyxyWN3t401uh6baJg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:20.6435984Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A20Z&sr=b&sp=r&sig=90GQ%2FhI04jT9kWVH75QEMAtE2TQCcwO9kQopn5F9gYM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:20.6436841Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A20Z&se=2024-11-07T06%3A54%3A20Z&sr=c&sp=rl&sig=ApSbfi78H8hEDVqiyDTmlnIhTv7NmWEXVXQ6tKQL1J0%3D","expireDateTime":"2024-11-07T06:54:20.6437711Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"ACCEPTED","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:20.407Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=vivTp7msZzQHCqZuMGMb%2BHJcOXdJYtpgILlfJ8S%2BCjQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.436688Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=2cAOvbhBJGyXJ%2FdhcWQcDSCMN4UgmHZduQsoEJhsJUo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:10.4365267Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=m97RGTT85EetjVOk4V7BSDjuVn4864UNNj%2BD0NsfmpM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.4367561Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=%2FOOO0AMY6irzTE79Pd3QJLIjJgi2PogwpmOPVGW9NFA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.4368398Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=CBP5rUvPgQlWixvIZz4FjMpIZ6UaFcnzz4tKYScF4bY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.4369524Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A10Z&se=2024-11-20T12%3A21%3A10Z&sr=c&sp=rl&sig=Fkkoy6WfvwKoHF%2Ffy1w5snuvSA4FkbxXMHY6j3HPrhM%3D","expireDateTime":"2024-11-20T12:21:10.4370195Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.426Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4886' + - '4995' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:21 GMT + - Wed, 20 Nov 2024 11:21:10 GMT location: - - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2022-11-01 + - https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2022-11-01 mise-correlation-id: - - f7063320-33a1-4f17-80f8-2cece0eef5aa + - 5893d5e0-abac-41aa-9a01-126a83690aa9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055417Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000063xy + - 20241120T112107Z-17b7777dc45rltqhhC1CO1uz7s0000000w2g00000000wqbt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1293,31 +1318,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=vz6W1%2F6yDxWCt6DOEJoNREHDBkK33L%2B9t0KG00EKhhg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.5725328Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=HFW4m60e7Ga5mxWNrKjzKPuH8ka9cjEh2LnjGFheZvg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:10.5721259Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=wP4suAYaeObAN9OQ1u75ke2sGqTEnlaRrSI6Qnh%2BPyA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.5727054Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=kdemlCCX%2Bv5KS7VrHSyjk1kKoVaFQ9hO8%2FZCt11eMtY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.5728791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A10Z&sr=b&sp=r&sig=Lf%2B6ub1ccb1d9yG1epjRO8p5SrYBOWJ2Wpr7plppkUE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:10.5730464Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A10Z&se=2024-11-20T12%3A21%3A10Z&sr=c&sp=rl&sig=4aLpXJ1iv0P02Simkw6Mm%2FcotnGbcXxzgc%2B5idxGvaM%3D","expireDateTime":"2024-11-20T12:21:10.5732153Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"NOTSTARTED","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.556Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '5045' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:21:10 GMT + mise-correlation-id: + - 2107ebb3-61d0-448a-9179-4fb94995da7b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112110Z-17b7777dc45rltqhhC1CO1uz7s0000000w2g00000000wqfm + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A22Z&sr=b&sp=r&sig=Cy4UDAiP%2FXlavTLIY3VnN5hSml7RkFoJWNn5Vvczr5s%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:22.0311822Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A22Z&sr=b&sp=r&sig=hq8VUejg983%2B0y8MWRPNxN%2B%2BVIpJbmVqpYfDpeIPkY8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:22.0307544Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A22Z&sr=b&sp=r&sig=rl3uIpUkRbX7qp12JbrG1%2BsDb9zhl6P8eOgjta8bRHo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:22.031272Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A22Z&sr=b&sp=r&sig=y66rfNCt06w7sbwMSizj7hkRnZP3tUHbO6e1TPPakDI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:22.0313591Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A22Z&sr=b&sp=r&sig=cniDYok548%2BbjA%2FY4eyf0xxGqv7%2BbxfsF1Cs4QkFVxY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:22.0314413Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A22Z&se=2024-11-07T06%3A54%3A22Z&sr=c&sp=rl&sig=ZtHvYBAqAMS4TNwU1QLkpd3VKHO4Pl4uns%2FbXuu%2FqeA%3D","expireDateTime":"2024-11-07T06:54:22.0315271Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"NOTSTARTED","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:21.837Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A15Z&sr=b&sp=r&sig=pgsWTJ5t%2FBPuNUB9XpiKJ6RrgrmAi1CSU5C9pfWVp14%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:15.6833012Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A15Z&sr=b&sp=r&sig=R66HByHLkRumoclbZhLS1g%2FsHugy5IEN6hEwx%2FZtWio%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:15.6827866Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A15Z&sr=b&sp=r&sig=HkZFAW5t0gp7wvdQRF1dRaYzytzp5wp9DGjOypmeydk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:15.6833948Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A15Z&sr=b&sp=r&sig=0bDyeUujnmHUv7aJlQ1xi5Kv%2FLv14Xjoj3MiOhkG5BI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:15.6834916Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A15Z&sr=b&sp=r&sig=GhEPyevtYrbsiqWrwt6PEPwHrQHM1%2Fz%2Fe5Pb9fwWFbQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:15.6836099Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A15Z&se=2024-11-20T12%3A21%3A15Z&sr=c&sp=rl&sig=3C2Je%2BxSbAyZkhE7EubU5JRyF31LiucgERUEl4KHG6I%3D","expireDateTime":"2024-11-20T12:21:15.6837037Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.77Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4940' + - '5044' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:22 GMT + - Wed, 20 Nov 2024 11:21:15 GMT mise-correlation-id: - - 7eb1da90-3a4d-47e3-b90b-e07c59060bba + - 09e76e1d-b1b2-4b17-b453-538528db4908 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055421Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000642q + - 20241120T112115Z-17b7777dc45rltqhhC1CO1uz7s0000000w2g00000000wqqk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1335,31 +1404,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A27Z&sr=b&sp=r&sig=XNXrmnKQS90eJKnc2Vl34mmcNlycMpC6SGo3JHRzmOM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:27.3296502Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A27Z&sr=b&sp=r&sig=HElocFyJXAGBMCrXw%2FGmGslPhqTyhBRsWGyvzj41grk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:27.3292449Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A27Z&sr=b&sp=r&sig=D1Nn6hafrATrVOxkVpff8C15%2Fk1%2FouEcW%2Bor4vpj1Kc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:27.3298371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A27Z&sr=b&sp=r&sig=pyYoTwx3mKy5b11STkHFnK2JBAYLt1UQnDs8MWSgve8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:27.3300093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A27Z&sr=b&sp=r&sig=jCaq5C2YypNyGGvpViZLYF42wZJRvqPplUdHkgmvLcI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:27.3301767Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A27Z&se=2024-11-07T06%3A54%3A27Z&sr=c&sp=rl&sig=ziDPQlpxCUG6uWRtfNsecT6OPxV1bzjtpo%2BXGL2MJ54%3D","expireDateTime":"2024-11-07T06:54:27.3303521Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A20Z&sr=b&sp=r&sig=j8BJ6gxXh7bLWGNVG92cEc%2FGuKNs1Jqjsw6KE0Ojwn0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:20.792141Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A20Z&sr=b&sp=r&sig=%2BS%2FqLPv%2FblqCOX2QP8bJgNU2efB4c1bKX%2BN86D1zsRA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:20.7916435Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A20Z&sr=b&sp=r&sig=6fc7W24l4qPrGeZ8iZXvkrplYhi25Ak30GGqZwNa7cg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:20.7923068Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A20Z&sr=b&sp=r&sig=HiPkrGKDlXPj34cLTmFXdfL9i1rehR1UZryY8sn2J6Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:20.7924732Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A20Z&sr=b&sp=r&sig=nWJr1OqxTKcI%2F03g7EZc3gIOu5d%2Foo0%2BRGE1ix8%2BzSU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:20.7926371Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A20Z&se=2024-11-20T12%3A21%3A20Z&sr=c&sp=rl&sig=EgwUWWRlsDGJZv0dpTuoal98eS1la1JPRZmMaE%2FnDc0%3D","expireDateTime":"2024-11-20T12:21:20.7928014Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.77Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4933' + - '5049' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:27 GMT + - Wed, 20 Nov 2024 11:21:20 GMT mise-correlation-id: - - 08b0cdae-05eb-4594-a0c8-3829d89075ff + - b4728bbf-aec9-4d86-8df2-de19d0bdd4cc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055427Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000648p + - 20241120T112120Z-17b7777dc45rltqhhC1CO1uz7s0000000w2g00000000wqy8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1377,31 +1447,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A32Z&sr=b&sp=r&sig=%2FKz0UCVVI1kq%2BGVx%2FPREcGfKSTm9saTtykN%2FrwuNwYk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:32.6257856Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A32Z&sr=b&sp=r&sig=g9SDgdLL7eY3jLXXnOFJDzzaxHe7XcS35JNT2m5osHw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:32.6250113Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A32Z&sr=b&sp=r&sig=Nq88qyoTCbDjtXJzRna%2BMIbL7VuCvcdDsAPVSf2KXAI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:32.626139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A32Z&sr=b&sp=r&sig=I8pazxfy5mEqSRuqGpUntbIXPREZ9RvRjig89mFvZIo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:32.626587Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A32Z&sr=b&sp=r&sig=BkSUBPDmd7p9jGEfzfWkMBmJBUkNp3wfRBIzAbFYXEc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:32.6269605Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A32Z&se=2024-11-07T06%3A54%3A32Z&sr=c&sp=rl&sig=oTG%2BRQDxmNPkbCZaFb20HBDJzg%2Bu%2Fm9T6MG%2FjzTaTTA%3D","expireDateTime":"2024-11-07T06:54:32.6271893Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A25Z&sr=b&sp=r&sig=w7YvX8BO7WFyrrfWzNZ0Vzxr7NLNXVnzPreLsy%2Fcp4s%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:25.9277704Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A25Z&sr=b&sp=r&sig=UOafkMw1%2BVcqF%2B7mINF7U97esOTuuBGu7jXjhfY1BCI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:25.9274763Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A25Z&sr=b&sp=r&sig=YokWhuxbQX0tsDvnjoZPrMTf%2F7nR0amh44fIsbJb09o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:25.9278721Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A25Z&sr=b&sp=r&sig=BXpvaTEWoJNlUSktfas00ywqvV2xfYeZ%2FdNoeB95oeQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:25.9279692Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A25Z&sr=b&sp=r&sig=FXYpbRi%2B3XBrXAaFW0aIK%2FFJSTpOjPCiKFjnR2VvQLY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:25.9280649Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A25Z&se=2024-11-20T12%3A21%3A25Z&sr=c&sp=rl&sig=CHWC40eifnZKRw9lFeq1QJW7iPeuIuYi7fABBlHZaU0%3D","expireDateTime":"2024-11-20T12:21:25.9281594Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.77Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4939' + - '5044' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:32 GMT + - Wed, 20 Nov 2024 11:21:25 GMT mise-correlation-id: - - 4ff6e34a-400c-4761-8c36-d2ddd9fe0328 + - 74c74a56-e1b9-45e2-9464-31026de85b7a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055432Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000064en + - 20241120T112125Z-17b7777dc45rltqhhC1CO1uz7s0000000w2g00000000wr4c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1419,31 +1490,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A37Z&sr=b&sp=r&sig=yQrwWrvRIHTxQOu1gSz4n5VzJC5Kea4CLi0SxdIuwQQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:37.9579971Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A37Z&sr=b&sp=r&sig=pAiT0%2BiXSCGYZOLjhraKpl3L3o86wywZfbzaI%2FE6bpM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:37.9572668Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A37Z&sr=b&sp=r&sig=lDkTHmqsSIBtFPe3LyjB%2BOUByI8iAq8i%2BISVIwvji98%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:37.9582904Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A37Z&sr=b&sp=r&sig=N6Sc0Bpz9crt%2BSLHQfHjJKyUAUdPk82LqvUnktIs4tc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:37.9586268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A37Z&sr=b&sp=r&sig=dLXsfw5ZiG0LLD7rLfBYwyq%2FiP9pfknnsJiyxV8vpkI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:37.9588815Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A37Z&se=2024-11-07T06%3A54%3A37Z&sr=c&sp=rl&sig=ejyRuIZOSyUnUxr0uMxt2b8FK6w7ZlNpY0nkBJLx9V0%3D","expireDateTime":"2024-11-07T06:54:37.959281Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A31Z&sr=b&sp=r&sig=1vnQ%2BhMj3WT7Bg59dvMCH8KZ2NCKbaImd5ZvOQQO6bE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:31.0372014Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A31Z&sr=b&sp=r&sig=TfNtT7ufLrQqISKMqusfWM9WcXFcAfs5UH7ZSTQYExs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:31.0368026Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A31Z&sr=b&sp=r&sig=oOD3qXbmB0NaF%2BvhQ7ioe7MTwZAkonCVuPg%2FSWxeibU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:31.0373833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A31Z&sr=b&sp=r&sig=GKAx0%2F1ua1lPB6Wkow1G5n%2BLAHeIm2icCWExTTyUXQ0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:31.0375615Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A31Z&sr=b&sp=r&sig=uMpW1ItshUBR%2F0yqKfAGyAsA2EQ5iPjXro5WdlX%2Bdbk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:31.0377522Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A31Z&se=2024-11-20T12%3A21%3A31Z&sr=c&sp=rl&sig=%2FIW664TIVhTx4OfGZ2CzoIHZhYrDl5ovf6DrT0K0Hlg%3D","expireDateTime":"2024-11-20T12:21:31.0379279Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.77Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4934' + - '5046' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:21:31 GMT + mise-correlation-id: + - b920b2c3-6148-43a0-b4cc-062385ea6287 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112130Z-17b7777dc45rltqhhC1CO1uz7s0000000w2g00000000wrab + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=kXfknCnS2bJup2ZmgFetjwr0IHLH5qRgu6keIjiTqgk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.1460414Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=PXMSBCrcjhg%2B1BQY7u6fto7ukBl4GSLMBOrHFUMTFpE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:36.1456438Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=s8Y2y96%2BC4abEd4eywOLKLAjdZIwbGfVFrUhntNaiUg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.1461652Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=IuS0Y53rleEEzXQe1MH9mA9cgMiJa7e%2BDZC0W9BxVKk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.1462568Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A36Z&sr=b&sp=r&sig=gYXIz3IrVrPh%2BV4FDLB9E2wPnlSBbHoS8v9Zfmw3jDg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:36.1463551Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A36Z&se=2024-11-20T12%3A21%3A36Z&sr=c&sp=rl&sig=dPZ4fchZB434Q%2F%2FuF68GjUCFbTNxQqp6eRve%2BXhppkw%3D","expireDateTime":"2024-11-20T12:21:36.1464492Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.77Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - close + content-length: + - '5044' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:38 GMT + - Wed, 20 Nov 2024 11:21:36 GMT mise-correlation-id: - - e2ea1321-584f-4a76-9584-71128e8ea261 + - ae061cc8-227e-4171-bc59-a95a8f2600ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055437Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000064s2 + - 20241120T112136Z-17b7777dc45rltqhhC1CO1uz7s0000000w2g00000000wrcc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1461,31 +1576,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A43Z&sr=b&sp=r&sig=mGaN4z0ubEszAu2ERz6vIQ8e8VVkVVgdoMqY9gKaQVg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:43.2791859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A43Z&sr=b&sp=r&sig=Z5TLxXTxgNRiTog8b2vxCpI3yORHb9ntbXCiQzQzNwA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:43.2789404Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A43Z&sr=b&sp=r&sig=KVfmup9sJ1Jju7wMWJTH%2FHN9%2BmWvwi%2BAFlr2rAULlrw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:43.27927Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A43Z&sr=b&sp=r&sig=SNaphc6JJ1zdVk%2FNenFLqRfFZ8CCuVCED09aR2VlvVU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:43.2793559Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A43Z&sr=b&sp=r&sig=60WLKN5eMFXGOrGQ271mqYbiFZIJK4lE0DpMSvYKWDk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:43.2794289Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A43Z&se=2024-11-07T06%3A54%3A43Z&sr=c&sp=rl&sig=Q%2BJDAcUPhJdGi0IXqWplZcx5dwvXRmgqzfAsADBoxOU%3D","expireDateTime":"2024-11-07T06:54:43.2795084Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=t5taTRPbN%2BBcyIYJZ7dhZAKdkDjxVWR15p1ZqjO0gwo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.486252Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=4MNP67IRAu2lKzpZ012xoo%2B2qZZbUEVlRxSBgk%2FWhLY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:41.485711Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=ND79kl9PzHtMioJKk7el8pyUZhw2u4zzrZMTgXdUBiw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.4864354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=xSzF7Az404ld%2BiMivbMuRGUgiO5bkTgQnrBNb9rJkt8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.4866065Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A41Z&sr=b&sp=r&sig=HtSGs68LyiR6DIMBvgJP0%2B9EWxZpThSl37vHT3PgCi4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:41.4867761Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A41Z&se=2024-11-20T12%3A21%3A41Z&sr=c&sp=rl&sig=53mB4njR2weCua6%2BYLcLzEjAAcGi8chGZVasg7Glmxk%3D","expireDateTime":"2024-11-20T12:21:41.4869436Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.77Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4931' + - '5040' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:43 GMT + - Wed, 20 Nov 2024 11:21:41 GMT mise-correlation-id: - - 5f157d3f-21b8-4ee7-b5c3-82e185c21f30 + - 4e92315b-3fed-44c7-a325-1df964664141 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055443Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000064z3 + - 20241120T112141Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001b09 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1503,31 +1619,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A48Z&sr=b&sp=r&sig=IuvLckyfw%2FxVvZawUoKyQYp2UPIdIKJabGIjzd0AkXk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:48.5831133Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A48Z&sr=b&sp=r&sig=xGVGaCjQnGFNzXUK60czB8KwEeCb5U3%2F9hn8huigL%2Fk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:48.5827052Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A48Z&sr=b&sp=r&sig=LMrNtfmA742HVqN%2FnWTvVhKabqce0zQM5sd4lRcYsSE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:48.5832058Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A48Z&sr=b&sp=r&sig=Ue1sie9nr2dU%2FYwnfCXrsQHUesYFdvb6LRVlQywsd%2FU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:48.5832983Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A48Z&sr=b&sp=r&sig=SXSTOipOx%2BINzvfU6ZYAoyJtPSEuXihNSU%2BJoCY7dRg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:48.5833871Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A48Z&se=2024-11-07T06%3A54%3A48Z&sr=c&sp=rl&sig=Ztvy0OvhnTOJpGBVL%2FYhmLP8uPirHgrpnF7R7f5bRRE%3D","expireDateTime":"2024-11-07T06:54:48.5834742Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=27IHVXBl%2BkMtL13WVbNX710zKyNsq7p5E0hM2V6zCQg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.6084758Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=YxNZXCwEKGtjnwKW%2BZnYrKQZTEdqQF7oPk1Tk79LvVs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:46.6079939Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=2dNN6xcDF7hGPYq9P3eOBfm%2B0cH7ALhIVDdkNUWuX08%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.608684Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=L6sWfwdrZKHF4bRXhwclrqIlwM6zZnWROm1l9i6y9uM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.6087846Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A46Z&sr=b&sp=r&sig=qWa0mFPNZ2XD246AMNFObChOjbYiRIu5NbnLDqmrXHg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:46.6088851Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A46Z&se=2024-11-20T12%3A21%3A46Z&sr=c&sp=rl&sig=zbdJ0CkunrwdNnlEE3prCWQU2wWzm2hSzCnq%2FsleWTE%3D","expireDateTime":"2024-11-20T12:21:46.6089822Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.77Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4941' + - '5037' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:48 GMT + - Wed, 20 Nov 2024 11:21:46 GMT mise-correlation-id: - - 190cf976-5fe3-4c71-9b3d-4da35e57c494 + - c0ea09b8-d41e-4363-92a5-d7015bdd3efa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055448Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000655a + - 20241120T112146Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001b3g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1545,31 +1662,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A54Z&sr=b&sp=r&sig=V1lqzAGPPcrnO0iR0X%2Bu1Gag6CqBnqtL5hfyErLtg%2FM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:54.54431Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A54Z&sr=b&sp=r&sig=2sEFv47tFQjhbpxNYoh76as0frUslS9f%2FTbRtL1pzBw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:54.5407115Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A54Z&sr=b&sp=r&sig=nsoo5Vq75t%2FMViQQboqQREcfOJO%2Bn5Iv9ypsfr0nnfw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:54.5443996Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A54Z&sr=b&sp=r&sig=qEtvebK67cqCfQPXi%2B4gXBWgRdjAxyU1%2BoqzjaKNoJo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:54.5444789Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A54Z&sr=b&sp=r&sig=J%2Fw0xdaVRpXuusByFOZ6r91MsueGAYDEdMyq%2BmbDukY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:54.5445581Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A54Z&se=2024-11-07T06%3A54%3A54Z&sr=c&sp=rl&sig=Ebweo%2F4HCvLSCpBVwXwvNAzx2poMYVuAOOCkjtVnezc%3D","expireDateTime":"2024-11-07T06:54:54.5446449Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A51Z&sr=b&sp=r&sig=0uWEqT%2BTgDGmC%2Fygi%2BSWDli5KWYeyMDXvpwkIX8m4Zc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:51.7314842Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A51Z&sr=b&sp=r&sig=5Ajo80FJTbDlt%2FE95ShPMgDmipmBItfgU6NmhBW3Pp8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:51.730965Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A51Z&sr=b&sp=r&sig=bikJMHRC%2Foj5dmzHVxxkTt%2FQDrLVaYPKRXgUl2iBUqA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:51.7316989Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A51Z&sr=b&sp=r&sig=Ev0TTNivhO4w6lgDeB74IRBQ55gAf%2BHV96j0PmiwXcU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:51.7318983Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A51Z&sr=b&sp=r&sig=9sZGJ06idVeLMrpebA2C3tgfQ6jP05R%2FAiFCLbtwMKg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:51.7322147Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A51Z&se=2024-11-20T12%3A21%3A51Z&sr=c&sp=rl&sig=SaoiZM%2FbHW5FDEA2MadO17ttVV03JuGWudJKZDR5c6w%3D","expireDateTime":"2024-11-20T12:21:51.7324206Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.77Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4941' + - '5047' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:54 GMT + - Wed, 20 Nov 2024 11:21:51 GMT mise-correlation-id: - - 8e8d78ef-621c-4e1d-9a4f-46bb6a8964a4 + - 5ca9c022-dc65-45b0-b3c1-e45ab3c050a0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055453Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000065bu + - 20241120T112151Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001b6x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1587,31 +1705,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A59Z&sr=b&sp=r&sig=8GJfqDLM4ZfQys9gDGMY9ghZdjHLGUhN93XuKlbgb88%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:59.8643446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A59Z&sr=b&sp=r&sig=%2BBNCF4cftRFJqbOsJLT7ielmvjPgz69DUEQHP7OIAyI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:59.8639922Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A59Z&sr=b&sp=r&sig=%2Fwha0qTooMAh%2B72IoCgj%2BgLMqWwxrhBn%2B2XRI5cmBjE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:59.8644363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A59Z&sr=b&sp=r&sig=WZOt6sJrV%2FTZsDkY4CMD3nHEAJqiNIkHQm6rvdplwYs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:59.8645691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A59Z&sr=b&sp=r&sig=SQXkXVaBVKY729ISp80QwAKQoZHUdv%2BQGDsp0Aodoas%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:59.8646645Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A59Z&se=2024-11-07T06%3A54%3A59Z&sr=c&sp=rl&sig=890neHbF9e40MScwArzKc%2FBX7ewyXLZkBQpcYmvdMwg%3D","expireDateTime":"2024-11-07T06:54:59.8647556Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A56Z&sr=b&sp=r&sig=iHatMva8xjnwq3QZmDyakFbODSJuAdgebZR3h74Orl0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:56.9186627Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A56Z&sr=b&sp=r&sig=mpAY9MuImehmnw3TG7WJaORuns%2Bl%2Bl6tVz6yP8oi6qY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:21:56.8518205Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A56Z&sr=b&sp=r&sig=5gciS1i%2F1L1snBDnf4YjtFP02vxOGd4iLdxIAw7HQmY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:56.9187942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A56Z&sr=b&sp=r&sig=Qk6m4t6QOs%2B6S4TtuFMC%2B0Usl50FQETJhbaFyxCCRZM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:21:56.9189157Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A21%3A56Z&sr=b&sp=r&sig=jKNFDl6Mz68VilwfsneDpvXHTp5EBUtsYmHcriYR7cE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:21:56.919035Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A21%3A56Z&se=2024-11-20T12%3A21%3A56Z&sr=c&sp=rl&sig=oWE3bzp8pSvXWMxyQjOa5l%2BakzW95TD8gc%2BvGYVA7e4%3D","expireDateTime":"2024-11-20T12:21:56.9191529Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.77Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4939' + - '5043' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:54:59 GMT + - Wed, 20 Nov 2024 11:21:56 GMT mise-correlation-id: - - c31f9041-9a78-45d4-ab0d-79eb890957af + - 65630392-4937-4768-b87d-064dded59d9f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055459Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000065mu + - 20241120T112156Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001bav x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1629,31 +1748,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A05Z&sr=b&sp=r&sig=7V750FObwxJn6gNi0oHgARFckEgHfZD%2FKE8IN6lLJCU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:05.1652814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A05Z&sr=b&sp=r&sig=Bn446f7v03OjNsrUdnFMtsFJu3NYovd%2F8%2BNgigwcihE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:05.1650478Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A05Z&sr=b&sp=r&sig=4FGP%2Bwx3J5BIbaKAoohhAdInUaHBQIHba81gkGuv608%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:05.165344Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A05Z&sr=b&sp=r&sig=Nv1346Alu9FvSvTvW9J7ffCWMXbhQX3hl65OTNXY%2BzY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:05.1654055Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A05Z&sr=b&sp=r&sig=rXQTLIyuVd2pNJ03XdTl7ddfekm%2FvIoK5uULjy3x%2BcI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:05.1654652Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A05Z&se=2024-11-07T06%3A55%3A05Z&sr=c&sp=rl&sig=w8o%2Bw87At1M7tSwVGB3q4Qba5DWof5nDoLZKhSbw0%2F4%3D","expireDateTime":"2024-11-07T06:55:05.1655245Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=Eir8jSpGXcf5p%2BH3luLw5PDgaHy5GGEC1ERsbasavsw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.059866Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=cE9AvYLLWrbbNU0xaPUpUDaAjqmPnZaUH3wT89615Fk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:02.0595961Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=%2BpRSH%2Bfvhz1CAoROv37ywgrTX15zGCF2gKbn2qSrjOI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.0599373Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=RZWqd9%2BW69Ytscvw4MweHoMTSA7oKGOk5uda2ciZYi8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.0600094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A02Z&sr=b&sp=r&sig=d7fiK%2FBP3z%2BaQdL6mcgQVd2LLCONwe8dvmV2yT8bUgA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:02.0600808Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A02Z&se=2024-11-20T12%3A22%3A02Z&sr=c&sp=rl&sig=ene7tjqe3tAgTegak4NGHiywclJZpgCrnV2hp2fm6h4%3D","expireDateTime":"2024-11-20T12:22:02.0601503Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:21:10.77Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4940' + - '5041' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:05 GMT + - Wed, 20 Nov 2024 11:22:02 GMT mise-correlation-id: - - 4edad524-7515-41dd-b739-171cac837b17 + - b1006f1f-db8d-4262-a423-9fdc08d6bd44 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055505Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000065sx + - 20241120T112201Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001bfk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1671,31 +1791,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A10Z&sr=b&sp=r&sig=dWr0ThrTNadYaSYxMW%2Bf5VAkCLzB3wi977Ih72yjooQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:10.4824899Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A10Z&sr=b&sp=r&sig=1BxTb7smZKLrmXARmc1UHPjechM4dGldvWL6Zizu6Z4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:10.4821022Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A10Z&sr=b&sp=r&sig=2psVlklzuItUPokb4Aocgj%2BWATzb5t%2F%2Fn%2F4LJrP1Qsg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:10.4826592Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A10Z&sr=b&sp=r&sig=gP10uRJgKP5SKLMtxDkG9FLp6JneDwJhx99Qd0ixAig%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:10.4828283Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A10Z&sr=b&sp=r&sig=kLd4Ffmi81nT25Cg2H0SgYiumQuY3Wsjhmhe0rVueqw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:10.4829966Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A10Z&se=2024-11-07T06%3A55%3A10Z&sr=c&sp=rl&sig=P6TJokjtDVF9uEiBnFQTtdxhAjpZ3WltJgUbSdQOQhs%3D","expireDateTime":"2024-11-07T06:55:10.4831644Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=tTu28P3GRDVQ3I7kjUcMR6TJm5HHM%2FP9nz5EbrXc3iU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.2045995Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=3hqFZJnfx1nQdIpTZCCGb70bQSSyV9ReLxKFkl0cOCo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:07.2042564Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=VQ3tJm8c3uA%2FiJ0loZ7V5KiPsqSwzlvMo%2F5lsd7n9Cs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.2047342Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=qlKaWBAQfZ0TdW0jrFibMDHhJkXQJt%2Bj009x8ORINMU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.2048639Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A07Z&sr=b&sp=r&sig=hlqFdCtg2y%2FzrmZ%2BBgZ6lerwax71jQQ0P397ov1are4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:07.2049972Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A07Z&se=2024-11-20T12%3A22%3A07Z&sr=c&sp=rl&sig=iQrVuit5g9aPITBFG%2FUZr0VVojavqj9iOFxCMFLfFQY%3D","expireDateTime":"2024-11-20T12:22:07.2051292Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"CONFIGURING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:03.863Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4933' + - '5044' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:10 GMT + - Wed, 20 Nov 2024 11:22:07 GMT mise-correlation-id: - - 03508a62-b240-4758-bdec-b0bd0a3c1eae + - d090f147-04b6-40da-a013-3a241e0f1ad7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055510Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000065y8 + - 20241120T112207Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001bnt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1713,31 +1834,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A15Z&sr=b&sp=r&sig=f%2FuWDz73BoucAv5g2W3Kp4n9rXTd4XT7a6W3XVYJ9fQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:15.7859758Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A15Z&sr=b&sp=r&sig=rSrE2VOVvMduFTBya1rohd460SQGrp83%2F0iwcPmLs%2Fs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:15.7847835Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A15Z&sr=b&sp=r&sig=UI5NL2ireA6qvi4YnW29ZjdYzfiP1JH7bEjclCrVFnI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:15.7861182Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A15Z&sr=b&sp=r&sig=1tfbgGzMwaYlGwZ8Vw7F%2BjbfiK8ZqFAwnlt0ASlj5cA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:15.7862604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A15Z&sr=b&sp=r&sig=%2FQ%2BcO03tCT9fEhQs04aVcJtLWImhfwF1pWe8QD6TLXM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:15.7863996Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A15Z&se=2024-11-07T06%3A55%3A15Z&sr=c&sp=rl&sig=HpZcm%2FvVVnNyONDj%2B6piJb9EnN27piHh7Za7dDr3T6o%3D","expireDateTime":"2024-11-07T06:55:15.7865385Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"CONFIGURING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:10.599Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=KFlt3Kc46y%2BjoH0PG7XX68YN13dmmTLtr%2FmZOw1LXlI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.3638563Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=%2BbJACMIMi6HBG76VWpncsLGaBy2KPWDpcElwetEtvCw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:12.3633593Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=4uq%2BN13KGIw5tU7ouyzM3LPd1MrwppX3BSCwrQT%2FLZ8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.3640652Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=oyhWpUdcj1MeHIRvCji00THjUWbzl1FYriR8hP4AVNk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.3642832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A12Z&sr=b&sp=r&sig=MhtOA%2B4Ex%2BveLiFbJ2cvRok5e6HXI2YkE71oFL1Pnl8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:12.3644973Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A12Z&se=2024-11-20T12%3A22%3A12Z&sr=c&sp=rl&sig=DELj6zJeMbFhY%2B5OKXYCdaXyS8FOOSrjOxqAn2RolWQ%3D","expireDateTime":"2024-11-20T12:22:12.3646808Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4938' + - '5044' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:15 GMT + - Wed, 20 Nov 2024 11:22:12 GMT mise-correlation-id: - - 718e93a8-62a2-4bc9-b8af-ff5a02799ed9 + - 9fb0f099-9aa6-46d9-bdac-6d4dea7dd0ff strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055515Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006647 + - 20241120T112212Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001bu0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1755,31 +1877,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A21Z&sr=b&sp=r&sig=71pZe7jK9ERnLcxLTmf9DDX60ajzz%2F77jWWMKTBzNUg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:21.0824507Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A21Z&sr=b&sp=r&sig=f6DFDorVF%2BXeigrrRBFtlprlpr%2BwrGZuwYsKFLo4OsU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:21.0820964Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A21Z&sr=b&sp=r&sig=fGvKpUfKYWf8L8ANID5JQgI%2Btxl%2Fvmhr4lf%2Fj5asrZk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:21.0826115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A21Z&sr=b&sp=r&sig=iF%2FWPMVNBcWYcPvqi0oYLYwEhKkUcLDhTW2Oi8Suo9w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:21.0827495Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A21Z&sr=b&sp=r&sig=K9xDstlIdRQhOC96thUS%2FrO4tJAKMTNQfRlUHSTIKX4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:21.0828951Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A21Z&se=2024-11-07T06%3A55%3A21Z&sr=c&sp=rl&sig=ujq2YmakgL8g5sSZlarXG0xyF3zBuANvVu3vvzJ3hQU%3D","expireDateTime":"2024-11-07T06:55:21.0830397Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=dtXw85J%2BUolq7P%2F%2FqlfgokBxvhrmPJPEniYFJKUz0ac%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.4958929Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=scldA%2BBR6DPvj3oV%2FTfFU25K%2Bt2grlwCt3eCuKoQAs4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:17.4955436Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=KOLSeJf4AXt1wpgaA4xFS%2FbYA9uHgt%2BOyXnFFDRWDRg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.4960679Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=BuAAVqXmxYO53OgUN%2Fdz62niqBikVF7qd353xVuDNcI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.4962832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A17Z&sr=b&sp=r&sig=w4Jj7uYgUlhFtg5Lgv9NLjL1VtSbuqgfXyiYkt2QFTo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:17.4964066Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A17Z&se=2024-11-20T12%3A22%3A17Z&sr=c&sp=rl&sig=9YRkZWM1GQb10FIndG6rMkHbAWQg%2FlI8CD3q%2FV0gJGY%3D","expireDateTime":"2024-11-20T12:22:17.4965409Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4936' + - '5050' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:21 GMT + - Wed, 20 Nov 2024 11:22:17 GMT mise-correlation-id: - - 2a98d3a8-138c-439f-a619-b97306bf870d + - 6423f5b3-4afc-4ef8-b51e-032f5f6400de strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055520Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000066dz + - 20241120T112217Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001bz2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1797,31 +1920,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A26Z&sr=b&sp=r&sig=qintkN6P%2FlN3wUhO%2B1OWEVS8Ecifv%2FwGVifUSkKwU6Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:26.3998908Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A26Z&sr=b&sp=r&sig=uFpJ7OhrgRMm2j7GpV0MO%2F4Z4Y9uREnH%2Fkx%2BNW%2Bleew%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:26.3990226Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A26Z&sr=b&sp=r&sig=wFxfTkr6A1qrTsUQkZKQzfdaXVNVuKHoMF8FfxhJ87M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:26.4002371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A26Z&sr=b&sp=r&sig=%2FaqTOs3ZEXcYkkxeciqKPFQPFizw9Da6Ho0z4xXfpVI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:26.400519Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A26Z&sr=b&sp=r&sig=NshCGK3rsmR5kSZM98Ej7nVMIvSXl1fYz0lwtDvb3AU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:26.4008082Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A26Z&se=2024-11-07T06%3A55%3A26Z&sr=c&sp=rl&sig=OIBEqz%2FtJdZ%2FzVLwUwFKwE95cEdQmXpyYfKnszEl3cY%3D","expireDateTime":"2024-11-07T06:55:26.4010849Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=ztyRLFCKIk%2BA%2BBSpRrH0OaFyopswypUyFkoUaIAMmbQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.6173522Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=Vp%2FkI7lPx4zkYs5k0IEpz8%2BaiiJNmCdVlF4ueSFz0nQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:22.6169507Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=WQZ%2FwbuK%2F6uwoH21DgK2V8oZ7S%2Bxorf%2BC7%2FEB5pMbpg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.6175813Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=pPsr9gnVx%2Beg2s1QALJy%2BoRQEsrDM5xyFODueaFw27c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.6176849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A22Z&sr=b&sp=r&sig=IaB0KSlliiGr0H1yr%2BFQNznszNtNCMXD8m%2FpN958OuA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:22.617781Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A22Z&se=2024-11-20T12%3A22%3A22Z&sr=c&sp=rl&sig=YKd9RDAsY9HTO7H5kk6IqvtslJ68Cwdi1DckLsH5Y68%3D","expireDateTime":"2024-11-20T12:22:22.6178702Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4939' + - '5053' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:26 GMT + - Wed, 20 Nov 2024 11:22:22 GMT mise-correlation-id: - - 732b33d3-d6db-4481-b2d3-e3dbbe84d2ea + - 9e529fd0-64a0-4fe4-a0dd-8983eb4d42c2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055526Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000066qx + - 20241120T112222Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001c39 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1839,31 +1963,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A31Z&sr=b&sp=r&sig=ESJ3%2FL3%2BOjznUBOL5xrQBYOPMb2Kwo%2BhPRxFTF3OPsA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:31.7082819Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A31Z&sr=b&sp=r&sig=IcH7Pd6S34T73E46ybXMC0c4L2zUZ6FqE8SGUYN79sc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:31.7078044Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A31Z&sr=b&sp=r&sig=WRUcO0%2FfL27WEM9LdzHiIyzgSew0i2jPTkLoze56vgA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:31.7084711Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A31Z&sr=b&sp=r&sig=tpGFvrTs124WqIOUc8uWgQJDXjR5lTaylVc7%2B1Y5nqE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:31.7086761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A31Z&sr=b&sp=r&sig=TyfGdi08abISdKlINaTrWCQ%2BzK8bewRx20Tje%2BTsfvk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:31.7088688Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A31Z&se=2024-11-07T06%3A55%3A31Z&sr=c&sp=rl&sig=MfGMuCrjGF9skVKx2rt%2FpzT7gkVIkww9IB7dAjbTYrE%3D","expireDateTime":"2024-11-07T06:55:31.7090612Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=c56T9UnJwXCsjnbwXPTu1TiEtgwFuglIFEAWQBUUKNs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.7420341Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=nncii%2BpG%2FyfuW%2BW5F4w%2FMEZjW%2B5lcrH1EzhZZWUlaSE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:27.7415311Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=GiFp6J3rHPd3%2BblEDI84QCFl6L51xosIAsF0k3lN6Pc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.7422454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=4Yk3wjScOfOSh9j61Ghw7CFGUKUMiIm0GShPoP9w4Ys%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.7424496Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A27Z&sr=b&sp=r&sig=3PMGrlekvBjjw3rUx0V3PqtSKqRa29hKgsJkVP7lgsw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:27.7426529Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A27Z&se=2024-11-20T12%3A22%3A27Z&sr=c&sp=rl&sig=4fb%2BV%2Bh%2FKOy2LNxaX9oNI31Uv1KuTVXf8qx5wUHP7C0%3D","expireDateTime":"2024-11-20T12:22:27.7428449Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4936' + - '5046' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:31 GMT + - Wed, 20 Nov 2024 11:22:27 GMT mise-correlation-id: - - f0f58c15-3f16-4654-8eab-92829ac7f1a3 + - 2b00e255-ce27-4cb1-9b1f-b6016f56e66b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055531Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000066xf + - 20241120T112227Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001c87 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,31 +2006,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A37Z&sr=b&sp=r&sig=QPktqqVtdf1wm0LgYd2mYw670UgTjjwk3e8qR1WgF3Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:37.0285379Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A37Z&sr=b&sp=r&sig=xy3QBjeCKBvi9ra0OJ2f86GBCkptPYawQmWhqywS3jo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:37.0280988Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A37Z&sr=b&sp=r&sig=YPXQTTKLNVEyqQ%2BNs85gxms3CDWxPUr2aYn7px5hMi0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:37.0287584Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A37Z&sr=b&sp=r&sig=9ZPoWosYDol1N3XBN9sOYnyuDay6et%2BlNuBPZk1X6po%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:37.0289533Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A37Z&sr=b&sp=r&sig=kua%2FIviJqSXMCd12J%2FZET8FSHfWKm3JCbkR9sy6qqSw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:37.0291336Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A37Z&se=2024-11-07T06%3A55%3A37Z&sr=c&sp=rl&sig=BMAo7ASTaq91Cll7rU3ERGqHCVtU7pwGWn00h21tWFs%3D","expireDateTime":"2024-11-07T06:55:37.0293002Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A32Z&sr=b&sp=r&sig=LWyp3VCOLAB2DWyuR0msN4MFc5Uf2uYzRp1GSB%2Fghw0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:32.8663543Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A32Z&sr=b&sp=r&sig=bk9luJzA55UHxX%2FJr3Qh3DEooVcqwCP7yt0dygMtySI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:32.8655788Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A32Z&sr=b&sp=r&sig=R7NJ02HXjlXotqNsI6RUoS81dKJqTP6JpCGudQ71PcU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:32.8666178Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A32Z&sr=b&sp=r&sig=QZaLy0FqHp%2B6zQiW2en3oinuauUpkVg5iwg9N3Oy9cg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:32.8668851Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A32Z&sr=b&sp=r&sig=amOlW54nHAIehnO6GRwwpfwRlvDA0vEz9okV8rcAb50%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:32.8671414Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A32Z&se=2024-11-20T12%3A22%3A32Z&sr=c&sp=rl&sig=nRve81sCy1qEwERygzwW4oGabGZFruWqGdDUFSvJZq8%3D","expireDateTime":"2024-11-20T12:22:32.8674559Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4928' + - '5034' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:37 GMT + - Wed, 20 Nov 2024 11:22:32 GMT mise-correlation-id: - - c23fc7bf-8767-4235-af4b-9823d5217fa3 + - a567658a-e990-4a45-b878-67761397a2b4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055536Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000674x + - 20241120T112232Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001cdr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1923,31 +2049,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A42Z&sr=b&sp=r&sig=FlR%2FKpQa4DzqBTA0adFSkoxPjAV33TpRLhQq5OnPh3w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:42.3306738Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A42Z&sr=b&sp=r&sig=X5ISYCVJ6NdDlnuEGEnJbXGxv6GLwWjLHLcbPLMXcYE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:42.3299243Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A42Z&sr=b&sp=r&sig=3hrW6v4YJiL%2Fc2S2PxQnBu7TnK8tl0kxXPsdqOL3v1I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:42.3310121Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A42Z&sr=b&sp=r&sig=URu%2Bt30EVZpAzy93vKTCiF2y81x%2FPvzX0plny8GRg%2Fk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:42.3313505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A42Z&sr=b&sp=r&sig=sR%2BKeBIVph7GsHho3Z6YB%2BzQRKjiNVufCudRXzR24DQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:42.3316806Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A42Z&se=2024-11-07T06%3A55%3A42Z&sr=c&sp=rl&sig=gAXxDI%2F254T0HaWX6dXDvFsLlgTjYOATndrxMHkuVRM%3D","expireDateTime":"2024-11-07T06:55:42.3320314Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A37Z&sr=b&sp=r&sig=hip9pGBbpt4tYW6JEi443jFkeTtvo81k7Ba6nAIY710%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:37.9873795Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A37Z&sr=b&sp=r&sig=SjLSzld51lzIophKPOJRbuS9S1YbmKJl61hVhPqOu6c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:37.9869125Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A37Z&sr=b&sp=r&sig=coC5W4vVjc%2BWV1Y8%2B0yw5Fjrc%2B%2FSC3XLdjYqWIK2Wp8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:37.9875286Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A37Z&sr=b&sp=r&sig=s6lFxAO%2FlsUpZXY1ZEaCswZp03c7Kce7NsQ%2BzV3TCRk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:37.9876675Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A37Z&sr=b&sp=r&sig=JMrj3SIXac951rfmQgxIi2Rr9HvskodoBGJ2U2bBryw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:37.9878128Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A37Z&se=2024-11-20T12%3A22%3A37Z&sr=c&sp=rl&sig=ukbvmLNSeaLEwhUI%2FACTKdUy%2FUBgvippQHS6J2jniBI%3D","expireDateTime":"2024-11-20T12:22:37.9879499Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4936' + - '5044' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:42 GMT + - Wed, 20 Nov 2024 11:22:38 GMT mise-correlation-id: - - 8faacc80-3698-4760-9182-f4fc0eed2870 + - 14bc339e-2c32-4ca7-afea-79ba2c5b30ce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055542Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000067aa + - 20241120T112237Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001cke x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1965,31 +2092,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=2BU6KtlP5gkWNLk%2FmYc82u2Y9K2mj8MRanw5MbzoiRA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.6315525Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=GSg530wxG3jw9WdgR%2F7VF0069XmQJ9qXXKxd3iAdB4I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:47.6312061Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=JwMx3Hgmk3oMXKok4vzpspcdTH3IY6dCdkE9xzWWptI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.6316567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=Usm1NA11j7UX33TgaIG8xC3dap4d8xNKUtn%2Fb4c73fA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.6317525Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=gFMlTmm8BaLw%2F3YaZ5BcJxwbReIUVJGKI8NIl0Ftvqo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.6318522Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A47Z&se=2024-11-07T06%3A55%3A47Z&sr=c&sp=rl&sig=sjcAXN2BMRGqwiFGX%2FnUokUDUXMlBL98L45yK%2F3n6L0%3D","expireDateTime":"2024-11-07T06:55:47.6319425Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=D8MVwz5%2Bpm2m2fDNu0oWeJ53BFqj9d3%2F1PKRwypfVUo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.1088242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=C08%2Fiwaupzgne19NagRsLkVOsL2%2BC3jiOfRn6%2FI2Tj8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:43.1084768Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=srF6F0aC1oCJrrJ8fjGGVGR%2BmcZIAzeHq2j54gvBX80%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.1089925Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=fqJALGatn5fH1T38fzXnU6hsxftC4k%2BD13PE0zQsZKk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.1091402Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A43Z&sr=b&sp=r&sig=kVTodwG9A5Q8kyv%2FZXFUOXIWWTujj0sWLE%2Fx3KAyO%2Bw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:43.1092801Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A43Z&se=2024-11-20T12%3A22%3A43Z&sr=c&sp=rl&sig=4pD1MD%2BqtJqNxVNiWHHlpzuYv2ClvrZEv8t8tkyHXZ8%3D","expireDateTime":"2024-11-20T12:22:43.1094201Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4932' + - '5050' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:47 GMT + - Wed, 20 Nov 2024 11:22:43 GMT mise-correlation-id: - - 2817d77e-7f1a-4eb0-a544-2f2af59113df + - ea0fd27c-dff8-4823-a449-0d3fdb8fb239 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055547Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000067gn + - 20241120T112243Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001crd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2007,31 +2135,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=Z7wZGIJrqVBoDBAI0t9RoU4ph3B%2BZb8ORMCyav52XeY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.916827Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=cFdjxYKQw3CDHuK78giQAWZ3xb5%2B1pmAT%2BtkD9P8I5o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:52.916415Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=7KmJKQ1ZQN6NVFIgG0FbqiftxPWoWQG4GDtcoRFYV0s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.9169012Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=Of7Hbob9tztpVIbGOEIL87HAPMp3WhY3TDv4cGqhf08%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.916972Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=CjwA88rB0aHJ36i%2BHz%2FBgHE0eQLSaE1nCEsj%2FaWUK8k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.9170467Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A52Z&se=2024-11-07T06%3A55%3A52Z&sr=c&sp=rl&sig=BR7pgTP7ES1t94nO%2B9F3wew0cLkk0oHwG0nv8hPlqso%3D","expireDateTime":"2024-11-07T06:55:52.9171195Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=KH2yG6uwkJ4lZgJILTzEj2ejkOib%2B%2BQJi95Gos2G9IY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.229705Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=P4qW%2BQAtNrbChXZopcsYqcqC3aZ11dssiiWDAbX3i%2B8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:48.2294498Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=HL6an3LS46%2FxydincIfEQRNz8of2%2BkbH5x9kw%2BiJBE8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.2297877Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=%2FkmgASwo0q%2B%2BsNs6lASbMWKANZsoPBumCLPr8dpAVB8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.2298733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A48Z&sr=b&sp=r&sig=5FoOsIA9%2FMIUlhHmkIsL2kXufay7THKzHHXsd3ZPsI8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:48.2302631Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A48Z&se=2024-11-20T12%3A22%3A48Z&sr=c&sp=rl&sig=u0bqssWH85AFCqCAGE%2Bl2akYhFUwGaStzQI9Aepw0qY%3D","expireDateTime":"2024-11-20T12:22:48.2303427Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4931' + - '5051' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:53 GMT + - Wed, 20 Nov 2024 11:22:48 GMT mise-correlation-id: - - cf90636e-062e-488b-a7da-79111307a0ad + - 1f8d6604-f83d-4c5b-8ec9-f4f7186a4427 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055552Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000067t5 + - 20241120T112248Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001cxh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2049,31 +2178,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=3No4TwxPLI%2FcNQhZGWWzHoDJl11KIZNwJa1yf%2BP1TMA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.2138334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=kpK5sDfMm9vIBVqcJxP8uOqx3HkbPyuP8yd8q8Q9ZoU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:58.2133608Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=2fl1kk12L%2BDEDTeYTsBdTyakV32f7jiczH%2FkbW%2FYY54%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.2140105Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=GI5ZjxZaltc11fJ6aWwOWl70N%2FO3k51f5UtWMOQ45S4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.2142049Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=H%2FuY9sg6o%2Fs4GYNbHDWKkwXQV2qiwTM5oUSLRym3hDs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.2143751Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A58Z&se=2024-11-07T06%3A55%3A58Z&sr=c&sp=rl&sig=keVTWZlQjbBD5CxShuqkFgdz%2FYBRl2fVo4YMRf%2FIOUQ%3D","expireDateTime":"2024-11-07T06:55:58.2145528Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=CLGadR65zP0SKHICGsw%2FBPJu0qA2qc9kkuuXMWcH9JQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.3505216Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=aAIkd8uMY3ZhBm8RGi%2BSniQ%2FGGRaS82Th3OQqnbHj%2Bw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:53.3503009Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=tMgii48TyL4%2FqbDXr5u0CZdS34NG4RKmfYPcLxcdl%2BQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.3506159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=Qx%2BwloIopkukIni4C7K7uWn3HMe%2BXzAb0nGS3xOo61k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.3507076Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A53Z&sr=b&sp=r&sig=lPtziCxA7WCwrpSG5kbqtsXeM8UCaciH4QJNZOs0qz0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:53.3507975Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A53Z&se=2024-11-20T12%3A22%3A53Z&sr=c&sp=rl&sig=Ora5KA%2Fpf7VFlOKsylzh5Lfch%2FdOgGQVEPOTkwzLHo8%3D","expireDateTime":"2024-11-20T12:22:53.3508833Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4940' + - '5048' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:55:58 GMT + - Wed, 20 Nov 2024 11:22:53 GMT mise-correlation-id: - - 531007c9-29d0-41e9-9212-6a79a51fcdbc + - 35484549-367c-4268-b16c-22ad6fcd371b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055558Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006802 + - 20241120T112253Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001d20 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2091,31 +2221,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=TMyNedUL6yMjmmNrdvZRyyMnuYTj8N0q411nCuOITXM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.5013786Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=3WCnjEHnMo3M7oM68H51bki%2FbK7%2Bhg1utA4%2Fo3%2FY%2FoE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:03.500921Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=ASBxzrtxGDvCUUEP1ToNhicE2UFV%2FWTPsSlF0sFW1us%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.501554Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=dud2EFA4MQ9KgLQ97H3kzi8095mdJMzatFphE80Ck8U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.501725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=CBOvCQRBO%2BRL7i8%2FjgP6wJRcSYL5k%2FJzZEIwTSIlJF8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.5018951Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A03Z&se=2024-11-07T06%3A56%3A03Z&sr=c&sp=rl&sig=dJNrdIMAQ1qqfSVXv7B9bnenTjqtir4ezAHWWmhewiM%3D","expireDateTime":"2024-11-07T06:56:03.5020626Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=N7kUEFM1niqqIyGkOthbdA677ba%2F2oXMQvel%2FNJz7t0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.4827462Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=L59hzRrTLM%2F0C3gqmXk5Nfn5DfvzzHLcN08Lpdkg9dk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:22:58.4794748Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=P4%2FG92xJUEeGFXH749RrFS%2FxjCK2qM9neLmZMEPkPpk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.4828389Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=xJNsSJPnhwgQdXbCKrB6GVAfPkRVbrzEHfIz5q0pQS4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.4829304Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A22%3A58Z&sr=b&sp=r&sig=Y7%2BUvV8A4VWgLFnJBEr1OsxdDl4IGeOfPQvF2eF7sjU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:22:58.4830164Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A22%3A58Z&se=2024-11-20T12%3A22%3A58Z&sr=c&sp=rl&sig=JsWV4HBDGvv31NTfqIBCAdiwuCwP03lriX63HqNe2cs%3D","expireDateTime":"2024-11-20T12:22:58.483101Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4935' + - '5039' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:03 GMT + - Wed, 20 Nov 2024 11:22:58 GMT mise-correlation-id: - - e33fcc76-7848-453f-a6ac-391045e33a5e + - aefe98a9-7043-4f65-8225-35cb0872aedc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055603Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000686u + - 20241120T112258Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001d5p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2133,31 +2264,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A08Z&sr=b&sp=r&sig=P7nhkfXaRvI5enfzk%2Bq4Ia0pyG3ZDzfW%2BBuOJm9ttuw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:08.8008992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A08Z&sr=b&sp=r&sig=nmED8lSw2jzUXTaCMa9Ie6woConcgDiGb6Xmq2rngf0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:08.8006158Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A08Z&sr=b&sp=r&sig=FUrO%2BAFb79%2ByHjKhZHumTI7Dqwwleskx4t7VY4iQJWQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:08.8010373Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A08Z&sr=b&sp=r&sig=erOX%2Fx0yWZWnEcmDlsmO7KfDS8S9ADpv85au6N3EokE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:08.8011756Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A08Z&sr=b&sp=r&sig=XtyQCqyNZ9WyZdIOLvHHdfpL39xU0o1DjUmZZ8BgI%2Bk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:08.8013123Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A08Z&se=2024-11-07T06%3A56%3A08Z&sr=c&sp=rl&sig=8%2FWvlfDr2SnfwKOhpn%2BexzT1bcg5RCyW9HOP7mD6700%3D","expireDateTime":"2024-11-07T06:56:08.8014501Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=Z%2BLBj4%2F1H60kbzIch8701KA3Te3O2uEWegFj0tdDwCY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.6183007Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=0W2kHXS34wxwx6JkmfWRsup7Nk7RBX77IQMmuS4LP7s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:03.6179508Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=8uNl6S2kKHA%2Fv%2FqmRYFz3FzfGxc7aFeb%2Fn1CwjMyl1M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.6184011Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=GHsGmQL5U4za8pBI4cui9Qz7yrYRXL6p9FX3nX7cS8I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.6184975Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A03Z&sr=b&sp=r&sig=zIGJFs9z19MvE07Ttx1eQJ1B%2Bi27rKHMGjLPNlNuDHI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:03.6185893Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A03Z&se=2024-11-20T12%3A23%3A03Z&sr=c&sp=rl&sig=ntknyze2GP7GcqdbpAvmN%2FpHejg2bZEIH0Emc0CskJo%3D","expireDateTime":"2024-11-20T12:23:03.6186799Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4936' + - '5042' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:08 GMT + - Wed, 20 Nov 2024 11:23:03 GMT mise-correlation-id: - - 1274228f-dd92-4c02-8a6c-c2262f80a279 + - a09bf85c-89a4-4224-83bb-98aa1c695154 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055608Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000068ek + - 20241120T112303Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001d92 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2175,31 +2307,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=aV4tFgHxpXfoSvlCZy5KcEcaN141jzU4uNinYyLX9TA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.1079654Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=i1wBdUHJKVVM%2B48xev9cEXdlWl%2Fm2H6oB9O9Uz1Sjd4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:14.1069869Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=8Qzhi5%2FwZpaE4XE%2Fd1nzHG3O%2Blo61rkZ3zgdCbNeOeM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.1082987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=aNdhsnk0VLuwiyF36WBHqOO7%2FYVtfbyV5RZBDPrPE6o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.108649Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=QxjuKEKhHLhpNCysSgPMjf3tSsv4BvlfHtXxv07J2cM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.1088205Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A14Z&se=2024-11-07T06%3A56%3A14Z&sr=c&sp=rl&sig=1sJ2vtlveuz2ZQyHfQ0yKWXT%2FhTx8s1RYj2PHgVgw6Y%3D","expireDateTime":"2024-11-07T06:56:14.1090181Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A08Z&sr=b&sp=r&sig=JtZCM%2BGeh0DN6zr6fbXaGuQNwylrWunHOTVFQ2WGrgo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:08.7669169Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A08Z&sr=b&sp=r&sig=5wlFU8KG3KA%2FVbNPvRfdyA9iV%2BpLbAU1kSzrZlbKAdY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:08.7666163Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A08Z&sr=b&sp=r&sig=%2F0uKIptHjuemODaDeoHbohJzlJAo8GLetZF8OQcVQ9U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:08.7670059Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A08Z&sr=b&sp=r&sig=aoZAXUcSOed5pj%2Fg4hLLBQ1T9AbxKInJi0UBS2mdA%2FM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:08.7671531Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A08Z&sr=b&sp=r&sig=5H2WmwoF2GrE9eVMIBdHiPOsqztArE%2B%2B2aafglvUnvk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:08.7672705Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A08Z&se=2024-11-20T12%3A23%3A08Z&sr=c&sp=rl&sig=O%2FyBvukdWaPFNtAl5D1DD7KLkCQ9kCIEa4RAvRaNozU%3D","expireDateTime":"2024-11-20T12:23:08.7673581Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4933' + - '5046' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:14 GMT + - Wed, 20 Nov 2024 11:23:08 GMT mise-correlation-id: - - 020af240-297a-457e-b7bc-993589410cca + - 5772f177-82ec-4095-a31c-bc719bccfb85 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055613Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000068ph + - 20241120T112308Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001dcg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2217,31 +2350,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=z%2FZWBRqbRRjxdI6YjRaOfZRkhNRVj%2B%2B4Vx4vJi2%2BquY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.4152805Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=4%2FFGXbc%2Fd3JJms%2FgJzlqH99zSmVXRAiG557qGQGWbFk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:19.4150355Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=D5xPKOZyxzGN5lENyGE8s0%2FgJa3sQzMDuDsE2TM06Uc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.4153819Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=mQZxdQGEaHuB7HynosXOYyzyGLjMO9zYZjh9Jgm%2FI%2BE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.4154815Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=a3hsk%2Bb2g%2FVt3VMuiMKvQDKds5CSjc%2BAOe3DuV8ZmGI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.4155823Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A19Z&se=2024-11-07T06%3A56%3A19Z&sr=c&sp=rl&sig=A1OSlrFRRQ8SNUcYC4PU3%2BFxPUFfGuppbbaTNQluRBI%3D","expireDateTime":"2024-11-07T06:56:19.4156803Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A13Z&sr=b&sp=r&sig=Nu4fxiQE8%2FgzCSkuA8gBp6oi8jI4tjevsb5o%2FoncT%2Bc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:13.9177987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A13Z&sr=b&sp=r&sig=J7loSxqbksTnV%2BnnN4DMMgPY%2Fv8vQnLFNvim0h%2FmbDs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:13.9175819Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A13Z&sr=b&sp=r&sig=hRpCKi1tuxYTKtEXMIDbnttCptm8dSNA0iTwGl6HBz8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:13.9178807Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A13Z&sr=b&sp=r&sig=dDKJ8%2FCAxf%2F8o9r2pNowSyOYv4VqHRR%2ByDDkiSwu67s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:13.917973Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A13Z&sr=b&sp=r&sig=kfsWhzP3IhK9t3XKXqnhe81lC4qrvYR%2FBN74E7kOdhs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:13.9180608Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A13Z&se=2024-11-20T12%3A23%3A13Z&sr=c&sp=rl&sig=eT2u02E5Rrc8yBv%2BEYSIe6hshIBN7zjSUni%2F3zbcWmM%3D","expireDateTime":"2024-11-20T12:23:13.918137Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4948' + - '5050' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:19 GMT + - Wed, 20 Nov 2024 11:23:13 GMT mise-correlation-id: - - 495e97c3-b0d5-4ffa-88e5-ca2d59025e4a + - 1b3dd13a-c959-4f7b-b9a2-1c8848583c44 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055619Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000068wg + - 20241120T112313Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001dgn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2259,31 +2393,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A24Z&sr=b&sp=r&sig=MO4H82SV2o07FP8RBpwfxnDp4NQwRFmWnc2d5VKZkEo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:24.714162Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A24Z&sr=b&sp=r&sig=H7Vt2fn%2BbqCn%2Bn0CDUidoPY5YvC76ZYRBtK1wadFnEo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:24.7137782Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A24Z&sr=b&sp=r&sig=Itl%2B0ojVLN0UcRkURKQWh2T1ylK%2B8OcP7pYCI8U%2FOhg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:24.7142835Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A24Z&sr=b&sp=r&sig=cvE5G5RVQeJzH%2FdhtEPUZwbdn1EhqT24dTBMlCbaTb8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:24.7144167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A24Z&sr=b&sp=r&sig=j%2FNCIek8IiVMQFSs3m72Y%2BztUOMJQT1rhx6phAUpwc4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:24.7145832Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A24Z&se=2024-11-07T06%3A56%3A24Z&sr=c&sp=rl&sig=CXE4HlbslryExoNLDdS9TOYbmy8sZdFHGN8%2FGJ0QdoA%3D","expireDateTime":"2024-11-07T06:56:24.7146944Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=7mKsl23hLUP02nRDAS9L44PgQwSORGmshvKUoU3RhT8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.0441942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=AEx%2Br2V2hhpudPHNGyWFZtbHu86WbWhcn4EhL8sKfiE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:19.0437851Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=n9d7EfpFWDiX5r6nu0wD%2B5XDW97EpJ48gAuVr4b8l%2B0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.044382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=Z027Pi9mC%2FCEryDGDppTuBd5ULcphExuAASJXCbAbDw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.0445565Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A19Z&sr=b&sp=r&sig=EtFeRx0oWW9O%2Fka15hC3hCSMB2qml%2FhZTNG7vqH%2BA%2Bw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:19.0447542Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A19Z&se=2024-11-20T12%3A23%3A19Z&sr=c&sp=rl&sig=e5k0YBIrOKvpWgYeLrhA11ef%2BTxP%2FxVmTFMhGi3vP%2Bw%3D","expireDateTime":"2024-11-20T12:23:19.0449495Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4937' + - '5049' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:24 GMT + - Wed, 20 Nov 2024 11:23:19 GMT mise-correlation-id: - - 134749a4-fbf1-41f0-a174-c6098947bd9c + - 74705d0e-540f-4b70-b640-d9e07ae76a43 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055624Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000694y + - 20241120T112318Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001dmn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2301,31 +2436,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=dQUXNIRCIVgDSlA9ULcG1SaE6pmFuQweVQiqJrzp3SQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.0012834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=hB416DkvkneeYPa3ukYiAgAS18WtgfEN6LRoqfs3hbM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:30.0008529Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=gzl0BAxKhnuo8NZZOrrH584VWxrrJn62NXgr090gY%2FA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.0014611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=HkOQ4no3NfRFQbdrIc5s8%2B2BjEMU2quY0hMYuaFQHlo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.0016382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=a89CyKpUEtzfCt7BK9qWywfdQZmiB51UDEmX6P5urRM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.001835Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A30Z&se=2024-11-07T06%3A56%3A30Z&sr=c&sp=rl&sig=fKCCjXp%2BqWC%2BOMAzrBzLYCNezV%2BnoPYvvaz5A4M9VKY%3D","expireDateTime":"2024-11-07T06:56:30.002008Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=03Es941Ad%2BPKcWzLLZ%2FEWqCHHye5CquuK7nubu%2B2MDM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.1632013Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=RweljhnzjBQ50xBDzeBl1%2BTJoW9TFv%2FxB3hTko1m8us%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:24.1629237Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=G12YFGvFM1rCr8vIl9LNeVK8Aa%2BwRiEr0%2Bf3xhcbuyI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.1632898Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=8NbkxFCG7zZQITole0hcBvBE9BewsysUdEAqmeYfRzI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.1633769Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A24Z&sr=b&sp=r&sig=ne2ZLuCxWjhXJaEQRxjQ7FTgm4cBKT%2FaVU47LVF00Xw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:24.1634662Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A24Z&se=2024-11-20T12%3A23%3A24Z&sr=c&sp=rl&sig=eER1vdNeFSFHJOnYtYQOlxLbBwfYdRYyFG2jnF3M5MI%3D","expireDateTime":"2024-11-20T12:23:24.1635543Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4928' + - '5044' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:30 GMT + - Wed, 20 Nov 2024 11:23:24 GMT mise-correlation-id: - - 3a4251c9-8255-49fd-9b5a-07953e9fb44e + - ba973ade-12cf-4c55-b76d-813be964f549 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055629Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000069cv + - 20241120T112324Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001dqv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2343,31 +2479,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=4F42srhRB%2FvD%2FTZFMlunVwBiiV%2BFLQBdclHYtev3Te4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.2889696Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=qZrKQd%2B7thPquwnYaE%2FR7Pc29F9o2tjV6DRwg4QEZWM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:35.288684Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=WQDqRNHkiDIdtkttUBO4DOaJG2AATejzQqbFTFVCnPo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.2890671Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=GKKyg5lGO7vNnxo0riE7lY%2FCpMAuDHFPkKXshOhgkqw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.2891619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=GkdFWVPyWCMneLTbt8%2FfQtiN9k0DanyE0vrjuPliNxM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.2892886Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A35Z&se=2024-11-07T06%3A56%3A35Z&sr=c&sp=rl&sig=fScCh1vVaWhML8yPQjm8nOgnm7NqVk2q0pfZ5kTjZDk%3D","expireDateTime":"2024-11-07T06:56:35.289393Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A30Z&sr=b&sp=r&sig=J7pHjta1wonkF6r9A2G%2BTPdQl1nYdBKsqlzbATGqVPs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:30.2316697Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A30Z&sr=b&sp=r&sig=VS3JfPr8Huxbsl31rclFTbXsI4YF034vGZH1blRTZsU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:30.2313326Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A30Z&sr=b&sp=r&sig=AruBLU4B961qXSN5iP7fIlINo627ZfZML9QQ3FVWw58%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:30.23183Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A30Z&sr=b&sp=r&sig=FVmaMhwKNXDLV3419EZkZO7lNAZkxWIuk%2FivJAOVOdc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:30.231975Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A30Z&sr=b&sp=r&sig=TGwjR9Ccsifp66aytnbOFfcxBZVu0SNWDuMFpxNes5E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:30.232114Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A30Z&se=2024-11-20T12%3A23%3A30Z&sr=c&sp=rl&sig=XtrOEZIhG7ROwjLaUPlth9r6F%2FuBz0O7Btuxf26h%2BE4%3D","expireDateTime":"2024-11-20T12:23:30.2322521Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4932' + - '5032' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:35 GMT + - Wed, 20 Nov 2024 11:23:30 GMT mise-correlation-id: - - 18b2e3d6-0384-4c8c-8d23-65a7756487f2 + - 41aa920e-6d3c-4c0a-8c41-8acdf7a05f1c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055635Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000069md + - 20241120T112329Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001duw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2385,31 +2522,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=meCq2Qz%2BGxIDNz30Pr2%2F7ENGuQRPKo9p4GyZ7UNbkw4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.5806896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=Bm%2FILHjmmhAPS6W01%2FAD93FRzH5%2F9HL6Rc6Ryhso80Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:40.5804117Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=DvlviuFMWLSEK1JcHR5XrKAX3Y6y1UCjRPZjwnsRd8I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.5807818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=oX5eFhf8xjxsGh65ptb5lvWSbRdPVleJrkFKrPoxJxU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.5808783Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=gPZWAA7CN%2BnbOEYDgMLV%2FMaBJWJbZ5FLi4CpIh%2FIJTk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.5809678Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A40Z&se=2024-11-07T06%3A56%3A40Z&sr=c&sp=rl&sig=icP8kuPrSqMj8fWpBFjLAX78mCDXwFdRkB2OFI7H1xY%3D","expireDateTime":"2024-11-07T06:56:40.5810566Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A35Z&sr=b&sp=r&sig=KaPQcpMyrXxY%2FmSS%2FP3xgK2w4XbyWqsyJ7fpH0hwAU8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:35.3708316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A35Z&sr=b&sp=r&sig=DpthvHGrozmDFuhTfRnexk8Lob7nMFa6IHa1Og8gG2k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:35.3698619Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A35Z&sr=b&sp=r&sig=ZMQtklfgB2u64kn5onH8f6KfeVB%2FhtHeFKYBseP9GfQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:35.3713399Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A35Z&sr=b&sp=r&sig=fT3zYsMQxzJLMSBHqBotqxyA4dKTkhOk%2BHwokQCvBwQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:35.3716314Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A35Z&sr=b&sp=r&sig=yakmfCM0wLcNinz8nO3T56y3GKVkkODwg7Sa6TtzbUg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:35.3719604Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A07Z&ske=2024-11-20T18%3A20%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A35Z&se=2024-11-20T12%3A23%3A35Z&sr=c&sp=rl&sig=gwRkirP%2BLW%2FVnv9Vo7tXZ9BjH%2B9E3n6EaI3k03GEhmQ%3D","expireDateTime":"2024-11-20T12:23:35.3722667Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4936' + - '5042' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:40 GMT + - Wed, 20 Nov 2024 11:23:35 GMT mise-correlation-id: - - 25258f23-f851-4331-a6bd-dca906b655f6 + - 7f581cc5-7492-427b-8e07-a3a013168c06 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055640Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000069tq + - 20241120T112335Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001dzw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2427,31 +2565,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A45Z&sr=b&sp=r&sig=zXSxPKOIEF0HRByoMtZQNz58sCqJoM%2B3wJuwGVO12h4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:45.8719705Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A45Z&sr=b&sp=r&sig=tnq03QvwrwfWvBWOLWOTr6htzNK2SwTrCdr5ymX5TjY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:45.8717163Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A45Z&sr=b&sp=r&sig=4%2F%2BpAACMr5TEPUuniZ4kaYGUE%2Fekutm5BO%2BLEVSDVso%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:45.8720536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A45Z&sr=b&sp=r&sig=1lF8YOi7ZWyxhBf%2FSJSmCPd5FMmgG9vu2feIiejHk1w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:45.872136Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A45Z&sr=b&sp=r&sig=tSkfz6wfjumEeBMpDizOrPwRFpV67kDwlilF6pjpYuc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:45.8722152Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A45Z&se=2024-11-07T06%3A56%3A45Z&sr=c&sp=rl&sig=r9clmLWuk3owbKQwhxSykEJqBhYKIKccoFNcDXctDg4%3D","expireDateTime":"2024-11-07T06:56:45.8722976Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A40Z&sr=b&sp=r&sig=jRntQWYFCRAVV7Az%2BRQl4HCYIXXZgDJkG5kK6fhaVRw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:40.4983329Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A40Z&sr=b&sp=r&sig=KIzzHMVTELeYGhBU1Xkeo%2Be5JFudtTcvKACKxoVbdAU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:40.4979935Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A40Z&sr=b&sp=r&sig=RHIsyPLoYj5wN09%2Fo8UvngXYl9bI4LiJBehq0tNDh7o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:40.4984706Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A40Z&sr=b&sp=r&sig=tqsD%2F5JZ4UYRMZ8OAzV5zmuetvBYbKfFAdF%2B9DaIlxA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:40.4986105Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A40Z&sr=b&sp=r&sig=AbPk1pVjNh%2FkWLRYp10JG3iNP3Tbssz%2BXhgTGU2f3E4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:40.4987439Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A06Z&ske=2024-11-20T18%3A20%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A40Z&se=2024-11-20T12%3A23%3A40Z&sr=c&sp=rl&sig=knMRCDLGNAnk%2FnXwmcNqxfTKbh5dCjKMCmvK0RAy5GI%3D","expireDateTime":"2024-11-20T12:23:40.4988793Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4931' + - '5044' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:45 GMT + - Wed, 20 Nov 2024 11:23:40 GMT mise-correlation-id: - - 3a5f3561-23f7-4f0f-bce1-5d1418a6a773 + - 4be36850-18a2-4009-a246-464193f72724 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055645Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006a1f + - 20241120T112340Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001e3q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2469,31 +2608,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=VvNvJa47I5hd6BVyjBq3Xm3qtdoOm622%2FZWY8sDgHMI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.1712714Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=yLHjbTsmti0thtEWt3AmV03TKpysu3bwQEsWhfuCxts%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:51.1710383Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=zZCb3qEeLVHnRZEGu9oiN1gOjaXOjakx0a7WqWfgJQU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.1713384Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=oIKhvK%2BrMrvnEpqL5c9wD%2Bkv3Vlg%2B8ytlbCTNrfGv%2Fw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.1714031Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=%2BOkK%2B1VlBt3rQ2%2BCvXTnrM0zJE9NgJZYVVuuJOWwT1Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.1714663Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A51Z&se=2024-11-07T06%3A56%3A51Z&sr=c&sp=rl&sig=SgnTFBjuvJSEyvAY2abPJVRE%2Fi8%2BfBFFdidNalNxmtM%3D","expireDateTime":"2024-11-07T06:56:51.1715281Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A45Z&sr=b&sp=r&sig=XxOcx55DyZpLXAa%2Fs62bxKFv%2BZIAh02s25Oxuy7h5Bo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:45.6245106Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A45Z&sr=b&sp=r&sig=t2K6Q%2B4B4KvHfzE%2BEMFovBpLmvwbmXrImykdVptOap8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:45.6241645Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A45Z&sr=b&sp=r&sig=U0rLkjF9m3pZdVvF%2FD4l%2BK1rsywvbAUCKYMz0tbYQMs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:45.624601Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A45Z&sr=b&sp=r&sig=9DJ%2F4Q6jQa6vScsZDg54bISBVYoZjOsGRb2kzsh8ieM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:45.6246924Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A45Z&sr=b&sp=r&sig=G%2BO7Km4ew%2FGKj%2Bn9dg3jdzEfkQnoJhRPf%2B2jOR7TRTc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:45.6247805Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A45Z&se=2024-11-20T12%3A23%3A45Z&sr=c&sp=rl&sig=FIj4CipC3v3fXIQzxwwikXKQG0fqhaHvEWT9zomlvuY%3D","expireDateTime":"2024-11-20T12:23:45.624875Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4940' + - '5048' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:51 GMT + - Wed, 20 Nov 2024 11:23:45 GMT mise-correlation-id: - - 2ea354d4-5a21-4db3-ab8b-69515d4bca95 + - 73e66ecc-9f13-4fd8-911d-412ce9f99809 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055651Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006a9u + - 20241120T112345Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001e7q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2511,31 +2651,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=ZftyfbpJE2OG4PjZZj2bcv5tcFMu%2B9cm6bQjyimtz0Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.4652653Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=iLXSglmkb%2FyrGqVT%2BcWgfTeNi0sv9EJ5ybo5r%2FE0x7E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:56.4648601Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=scjzDl%2Bn%2FNsUwp4GKMuuuPZCZ763FYZsC%2BIY4MOtess%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.4654218Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=VgPXKt5rUj19tVLuNpwc2O2M9uc9rSYkwtTLz6tUU2s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.4655617Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=JVx591aci0%2FLJjugG156S16u9N6GACjkV8GpYEDaWT0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.4656999Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A56Z&se=2024-11-07T06%3A56%3A56Z&sr=c&sp=rl&sig=DFKRUzgkOOo9OG6Hj%2Fae42ZBaSg%2F97WgRYKW97jpar4%3D","expireDateTime":"2024-11-07T06:56:56.4658378Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A50Z&sr=b&sp=r&sig=Rnxhy9QMQLMQj8ZqLgiDr4Ook57jsZ%2B05UYCGe%2B5FeY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:50.7490794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A50Z&sr=b&sp=r&sig=X0cfnFpxNvP8RX4AFl4%2BvaUXCiXAGN2ZE%2FwnxkvfJlU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:50.7486447Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A50Z&sr=b&sp=r&sig=nHHVsAsB7SBP16R5LJF69VPvZNUQRa6eZhj3kzytj1c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:50.7493602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A50Z&sr=b&sp=r&sig=zlc1X3NgXgihxaiQa7VhY0wXaoeF8F4%2FCuGOZGzs%2B3o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:50.7495137Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A50Z&sr=b&sp=r&sig=aQqCO3E6T20VWhTdml62qTuR1E5WZtdcntxKI75uicI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:50.7496393Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A56Z&ske=2024-11-20T18%3A21%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A50Z&se=2024-11-20T12%3A23%3A50Z&sr=c&sp=rl&sig=8Ys8A1j581fYT4wQh8oQic9ue0Vmvle7r18IG3n2rUk%3D","expireDateTime":"2024-11-20T12:23:50.7498007Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4940' + - '5040' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:56:56 GMT + - Wed, 20 Nov 2024 11:23:50 GMT mise-correlation-id: - - 5d0de477-6f71-44e6-a129-9937b34adc5b + - c3698bd5-89e8-42c1-8934-f6ce20214f3f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055656Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006ahh + - 20241120T112350Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001ebv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2553,31 +2694,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=3t9cJhRuyLDTRAIkm69KcmgPJkNZ3zQ6HQH0if76BPk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.7739813Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=VUdfq352uiOkhYi6TsdCmD4wyJNEUa8xf28gMEvhRZ4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:01.7733623Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=pVHxQDV9A9d5CxJjHXXPKqSL5t3deuQsIYHo8a2Deeg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.7742276Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=S5MKQx907ss9gXhIO%2F1jJXAWvlQDxYAVxqgvg4SzBHo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.774466Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=Igxj2pr82NXFhZvTQayBmHcyApX6e9oq0TzZ07zHMG4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.774686Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A01Z&se=2024-11-07T06%3A57%3A01Z&sr=c&sp=rl&sig=knyTjYaVU97zlI6GdUJBxABFvNZLkwqHek0H29WJvhM%3D","expireDateTime":"2024-11-07T06:57:01.7749118Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A55Z&sr=b&sp=r&sig=214Cy5f6tLwKfc5CsGD%2BtlxzHBMusnoJP0FqAjn1g%2FA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:55.8742666Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A55Z&sr=b&sp=r&sig=ba6sU8T%2FYRPHPjjCMSTpW74XrSZ1NVe0TSdpZO7rrbQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:23:55.8738361Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A55Z&sr=b&sp=r&sig=Ni2%2F5gOJMBEJk1av5smQFYg0JwuHiO2j2SiteGRBM68%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:55.8744318Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A55Z&sr=b&sp=r&sig=U5i15HU3wlvDgonPncJWgKJBlgMMqmTi9DH3ak4mHyw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:23:55.874603Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A23%3A55Z&sr=b&sp=r&sig=lFdA4%2BA2sH%2FeTZIcExLMZ6x122E5KZZFf6uQZp%2B%2FOjM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:23:55.8747657Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A23%3A55Z&se=2024-11-20T12%3A23%3A55Z&sr=c&sp=rl&sig=0oQM2cT0V%2Bs5iVxRLloQh3lX2W%2BCDBem0JL18SMjIXY%3D","expireDateTime":"2024-11-20T12:23:55.8749308Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4920' + - '5047' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:01 GMT + - Wed, 20 Nov 2024 11:23:55 GMT mise-correlation-id: - - 7393e7ef-ce90-4f8c-8944-f36ac6da4cb8 + - aa272af5-f374-436d-84ac-371edbbacec7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055701Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006as5 + - 20241120T112355Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001egm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2595,31 +2737,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=gFy8iTaJ7iIlyKxt11ZIJIqDEfifJDOgNCr3bP%2FAN2E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.075523Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=GzGfwt9jNAQ8YoODA5PY5yI2I%2FoFDuxXHBw%2FjUGAF4w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:07.0751773Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=0B6V%2FT%2BHGJ0gqNintPDGg7xDkC0KhOUjW%2Fe2aSTdmmM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.0756162Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=N7mTxs5HmKH8aqo1ZYICAwwAxNn3k15qk0fHQ4HT0GY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.0757147Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=%2F%2BoTDZICtkUxGinGtIDuUtG3m%2BJehSjgVMBei0aC4Hs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.0758033Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A07Z&se=2024-11-07T06%3A57%3A07Z&sr=c&sp=rl&sig=ZSpmDF3FwXGN9JnuJBptxPEbXMAwNOBWGQjiN6S5JPg%3D","expireDateTime":"2024-11-07T06:57:07.0758894Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A01Z&sr=b&sp=r&sig=astyppIrumgH6kjOwnxwjm6pSLTXgQY3KRW91b%2BK6kY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:01.0094554Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A01Z&sr=b&sp=r&sig=46qffTWkJT4YW5Q3VzZNJNRQRSh8vfv3H4%2B20o0ur7U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:01.0092583Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A01Z&sr=b&sp=r&sig=2z9pQwL1U3IXuOo%2FwS0P03dSIIjoqu3WCPqBII94rms%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:01.0095373Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A01Z&sr=b&sp=r&sig=7qhXQDTBQqrakJzaaVmHRWdJuCjpIqWIFkwJ80tgETA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:01.0096504Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A01Z&sr=b&sp=r&sig=urtrgB2SOEBshoez7Wvjf1Sfv%2BOe6ATRcZyjyD3npJQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:01.0097378Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A01Z&se=2024-11-20T12%3A24%3A01Z&sr=c&sp=rl&sig=7xIm%2F53eTgaz7UYdAeysmqCACRAB2EaD3H7ZKY5eSoQ%3D","expireDateTime":"2024-11-20T12:24:01.0098237Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:21:10.556Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:22:09.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4937' + - '5038' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:07 GMT + - Wed, 20 Nov 2024 11:24:01 GMT mise-correlation-id: - - c44b9388-85ee-4bd9-a706-a3e644685e87 + - 77a5b652-0c4b-4d52-9f6c-fe25b436121c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055706Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006axq + - 20241120T112400Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001ent x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2637,32 +2780,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=nnbWOfEf0kxCJBlFBJgE1RAeDmV3R5imLSbhkJe8NgI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.3710045Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=rvX6gwJstlLoP3H%2F1o%2FBBUwDamSbcJus4TRhdv0puB0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:12.3706993Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=1vK%2BMLXshZzVpBimY6x0CY1gls2wQ0rEIoYCma9LybY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.3710952Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=IQCow5mkAJyfbZ%2BQhEb4BDwT02d7RhIqnLzFI4HFUNQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.3711841Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=TGld%2BX2cMU2AyM33hBQx5quE%2B45lNzjmTY7fOsYV%2BN8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.3712837Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A12Z&se=2024-11-07T06%3A57%3A12Z&sr=c&sp=rl&sig=ui9757sjH86o1ssWxJbUBDVNm3gOn2GROQr9GAr2H7U%3D","expireDateTime":"2024-11-07T06:57:12.3713744Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"FAILED","startDateTime":"2024-11-07T05:54:21.837Z","endDateTime":"2024-11-07T05:57:07.92Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:10.402Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A06Z&sr=b&sp=r&sig=s1s4SHrYP8ubvLq7oit83oeHtV0xq%2FHdUJz3PsiDk5A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:06.1353633Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A06Z&sr=b&sp=r&sig=nKxZ338UCyW46XV0PBiJdBLBzH6XR1FmDp97jClhB4U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:06.1349112Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A06Z&sr=b&sp=r&sig=46QTfQVtuPtA6bGjY2aypN64aSVU86nfSOus7XoggX0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:06.1355377Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A06Z&sr=b&sp=r&sig=9uyFSppxt7JG9EUWYNgzaFxYOU0vHaquaZblo9rizfQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:06.1357207Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A06Z&sr=b&sp=r&sig=dXDHLGw0W%2F2%2FCc187vPylOt5QTG%2BYWOjwdj64siCsyQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:06.1359093Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A21%3A10Z&ske=2024-11-21T20%3A21%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A06Z&se=2024-11-20T12%3A24%3A06Z&sr=c&sp=rl&sig=dAycLhWlt1BPTUQbye8P02A7wUvtDN%2FWaLtgmkgQSsc%3D","expireDateTime":"2024-11-20T12:24:06.1360814Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"FAILED","startDateTime":"2024-11-20T11:21:10.556Z","endDateTime":"2024-11-20T11:24:01.047Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:01.998Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5061' + - '5166' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:12 GMT + - Wed, 20 Nov 2024 11:24:06 GMT mise-correlation-id: - - 37f7f434-8428-4e6c-8cf8-2eb02fa77923 + - dac0e27d-2e05-4c39-b6eb-95ad9d2d76f6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055712Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006b40 + - 20241120T112406Z-r16f5dbf676xzf6qhC1YVRyban00000003xg000000001et4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2680,23 +2824,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:10.8948909Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:10.8948909Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:12 GMT + - Wed, 20 Nov 2024 11:24:06 GMT etag: - - '"13011fa6-0000-0200-0000-672c55960000"' + - '"97031001-0000-0200-0000-673dc5c60000"' expires: - '-1' pragma: @@ -2712,7 +2856,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FFDDFC107D1B4AAF885EB8B411E5E33F Ref B: MAA201060516011 Ref C: 2024-11-07T05:57:13Z' + - 'Ref A: E7BD46F5A5CB479E8619679D6ACF7149 Ref B: CO6AA3150218017 Ref C: 2024-11-20T11:24:06Z' status: code: 200 message: OK @@ -2726,32 +2870,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=server-metric-test-case + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=server-metric-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A14Z&sr=b&sp=r&sig=m29U2HOEHrs%2FAvwQmACbIig%2Fh6IjwivmnVvTHLTQZ1g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:14.6375105Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A14Z&sr=b&sp=r&sig=qrHP%2BUl%2Fm6gdlwa4%2BvU%2B0vKZE5ScqCndt%2FI6h1TeDyk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:14.6370909Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A14Z&sr=b&sp=r&sig=cQKLQJI2w3yJdgWf8Nspz00z91bziaPgAf0Z8Hop%2F6c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:14.6376963Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A14Z&sr=b&sp=r&sig=7F%2FcQaZkxGUnrUKdKB71Y46mAuPH%2BugRtXqyLQX2Caw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:14.637865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A14Z&sr=b&sp=r&sig=pkWoSdFr82CIOYdPP7leDA706qGRIjYLEfsEgrZTgzM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:14.638052Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A14Z&se=2024-11-07T06%3A57%3A14Z&sr=c&sp=rl&sig=O9JlYEsgZkJhR2rwMIx0Iv60CnV66Ih7CEv%2BaowKONA%3D","expireDateTime":"2024-11-07T06:57:14.6382201Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"FAILED","startDateTime":"2024-11-07T05:54:21.837Z","endDateTime":"2024-11-07T05:57:07.92Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:10.402Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"c23ab11c-eaa3-40a4-b28c-0c6a3affdaee":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e16a84d4-0d84-4e3f-9b6c-95bdfe65901a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1910b9b5-6676-409b-bd2c-ea77f1578fbb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/2508307d-5378-4c46-9eb0-1aa1264ff37a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A07Z&sr=b&sp=r&sig=yPlvkIqh0MS70dmOGTwwLwATZRLHHiLOb4QiOkUGFI0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:07.2089362Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/b6e4c597-f909-49c0-8392-21bd03fa49b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A07Z&sr=b&sp=r&sig=O3JjP8ztTNX5GV8O4cymhtDSK9y39MsFXBF2dQuy79M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:07.2086762Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/1404fdaa-1ad5-4517-a786-7da37427454c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A07Z&sr=b&sp=r&sig=F4lrN51SQE9kkwZa4QlE%2FaYPC30%2FdccpT%2BtEtUFJ0XM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:07.2090086Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/97e6c8ad-ecca-4200-a475-4f911557f7ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A07Z&sr=b&sp=r&sig=%2BoDpHk0CBJhoCxh8qWDZBJH8SgbZ7mvHNoAYxN38v68%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:07.2090773Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/093bfb02-0eed-4f62-a6df-bbfc7c4f5dc2/519c096c-b33a-4cc5-94dc-e62d18fd1c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A07Z&sr=b&sp=r&sig=SHeeSYODWO8kPF%2FgWlyb3p%2FDvjj0QeiA4Y2GbdfYTyg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:07.2091486Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://f93i0ank26s7pko4b8018qqz.z19.blob.storage.azure.net/9b1b95d4-79d5-4d21-b343-35c1f69e96ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A20%3A23Z&ske=2024-11-20T18%3A20%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A07Z&se=2024-11-20T12%3A24%3A07Z&sr=c&sp=rl&sig=Q9duQDfZvHw0aolwnQYOP6%2BktxXMogNYNsa4vWJSr%2B4%3D","expireDateTime":"2024-11-20T12:24:07.2092175Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"FAILED","startDateTime":"2024-11-20T11:21:10.556Z","endDateTime":"2024-11-20T11:24:01.047Z","executedDateTime":"2024-11-20T11:21:07.492Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-20T11:21:08.404Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:01.998Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5079' + - '5184' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:14 GMT + - Wed, 20 Nov 2024 11:24:07 GMT mise-correlation-id: - - be16b482-7e7e-4308-b061-cc1fea6c94ce + - fd4b5870-3cb4-41e4-8a33-4dbb9c5fd627 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055714Z-16bf8d9b4c7txwfdhC1BOM9ahs00000007ng00000000xxeh + - 20241120T112406Z-1846dc7bb4d9ql4khC1YVRdrac00000003h0000000004kpm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2773,12 +2918,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003?api-version=2023-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-11-07T05:52:38.3156909Z","key2":"2024-11-07T05:52:38.3156909Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:52:38.3938148Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:52:38.3938148Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-07T05:52:38.1594446Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-11-20T11:19:44.6041576Z","key2":"2024-11-20T11:19:44.6041576Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-20T11:19:44.6979064Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-20T11:19:44.6979064Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-20T11:19:44.4635358Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -2787,7 +2932,7 @@ interactions: content-type: - application/json date: - - Thu, 07 Nov 2024 05:57:15 GMT + - Wed, 20 Nov 2024 11:24:07 GMT expires: - '-1' pragma: @@ -2801,7 +2946,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D81D754C5CF942429EE8C1FB08B43699 Ref B: MAA201060513047 Ref C: 2024-11-07T05:57:15Z' + - 'Ref A: 12B08243B09B4BC88640F15201225158 Ref B: CO6AA3150219031 Ref C: 2024-11-20T11:24:07Z' status: code: 200 message: OK @@ -2815,23 +2960,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:10.8948909Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:10.8948909Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:16 GMT + - Wed, 20 Nov 2024 11:24:08 GMT etag: - - '"13011fa6-0000-0200-0000-672c55960000"' + - '"97031001-0000-0200-0000-673dc5c60000"' expires: - '-1' pragma: @@ -2847,14 +2992,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 44C5E22AE1DA48A5A866B7DEB09F3321 Ref B: MAA201060514033 Ref C: 2024-11-07T05:57:16Z' + - 'Ref A: 419101072E3442D99AE765C7F7B16135 Ref B: CO6AA3150220025 Ref C: 2024-11-20T11:24:08Z' status: code: 200 message: OK - request: - body: '{"testRunId": "server-metric-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-howbews7pjfw3drjj/providers/Microsoft.Storage/storageAccounts/clitestload6r573ysih": - {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-howbews7pjfw3drjj/providers/Microsoft.Storage/storageAccounts/clitestload6r573ysih", - "resourceName": "clitestload6r573ysih", "resourceType": "Microsoft.Storage/storageAccounts", + body: '{"testRunId": "server-metric-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-2u55gbaskghfw4oe3/providers/Microsoft.Storage/storageAccounts/clitestloadwt7fgnea5": + {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-2u55gbaskghfw4oe3/providers/Microsoft.Storage/storageAccounts/clitestloadwt7fgnea5", + "resourceName": "clitestloadwt7fgnea5", "resourceType": "Microsoft.Storage/storageAccounts", "kind": "Storage"}}}' headers: Accept: @@ -2866,33 +3011,34 @@ interactions: Content-Length: - '520' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testRunId":"server-metric-test-run-case","createdDateTime":"2024-11-07T05:57:18.319Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:18.319Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testRunId":"server-metric-test-run-case","createdDateTime":"2024-11-20T11:24:09.244Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:09.244Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '742' + - '748' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:18 GMT + - Wed, 20 Nov 2024 11:24:09 GMT location: - - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-01-preview + - https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-01-preview mise-correlation-id: - - c65be063-891d-4adb-a239-dcf884670f07 + - e94daa97-127c-4ac8-b26d-9b0a376f6fe9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055717Z-16bf8d9b4c7nn6fjhC1BOM5ufn00000007g000000001e46f + - 20241120T112409Z-1846dc7bb4dkr9fthC1YVR8qhs00000001r0000000003kpu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2910,23 +3056,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:10.8948909Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:10.8948909Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:19 GMT + - Wed, 20 Nov 2024 11:24:09 GMT etag: - - '"13011fa6-0000-0200-0000-672c55960000"' + - '"97031001-0000-0200-0000-673dc5c60000"' expires: - '-1' pragma: @@ -2942,7 +3088,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E9E11A7034A64C80887E24AFDA8D693E Ref B: MAA201060515019 Ref C: 2024-11-07T05:57:19Z' + - 'Ref A: 3F67B20163DF4272AA0AD1DE6997D52F Ref B: CO6AA3150218047 Ref C: 2024-11-20T11:24:09Z' status: code: 200 message: OK @@ -2956,31 +3102,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testRunId":"server-metric-test-run-case","createdDateTime":"2024-11-07T05:57:18.319Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:18.319Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testRunId":"server-metric-test-run-case","createdDateTime":"2024-11-20T11:24:09.244Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:09.244Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '742' + - '748' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:21 GMT + - Wed, 20 Nov 2024 11:24:10 GMT mise-correlation-id: - - 1abb5503-5aef-4609-9bfb-83b029eac445 + - 16dbd979-71e5-4e2f-a052-0a4a02b76601 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055720Z-16bf8d9b4c74rffhhC1BOM0zgn00000007fg000000004zgw + - 20241120T112410Z-r16f5dbf676dn9f8hC1YVRrkvw00000003xg000000001c55 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2998,23 +3145,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:10.8948909Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:10.8948909Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:22 GMT + - Wed, 20 Nov 2024 11:24:11 GMT etag: - - '"13011fa6-0000-0200-0000-672c55960000"' + - '"97031001-0000-0200-0000-673dc5c60000"' expires: - '-1' pragma: @@ -3030,14 +3177,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 912DF8D2AE9347FAB9E5745C54AF0625 Ref B: MAA201060514025 Ref C: 2024-11-07T05:57:22Z' + - 'Ref A: F627371908F44890B6BCAC903AA19DCC Ref B: CO6AA3150220037 Ref C: 2024-11-20T11:24:10Z' status: code: 200 message: OK - request: - body: '{"testRunId": "server-metric-test-run-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-howbews7pjfw3drjj/providers/Microsoft.Storage/storageAccounts/clitestload6r573ysih/providers/microsoft.insights/metricdefinitions/Availability": + body: '{"testRunId": "server-metric-test-run-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-2u55gbaskghfw4oe3/providers/Microsoft.Storage/storageAccounts/clitestloadwt7fgnea5/providers/microsoft.insights/metricdefinitions/Availability": {"name": " Availability", "metricNamespace": "microsoft.storage/storageaccounts", - "aggregation": "Average", "resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-howbews7pjfw3drjj/providers/Microsoft.Storage/storageAccounts/clitestload6r573ysih", + "aggregation": "Average", "resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-2u55gbaskghfw4oe3/providers/Microsoft.Storage/storageAccounts/clitestloadwt7fgnea5", "resourceType": "Microsoft.Storage/storageAccounts"}}}' headers: Accept: @@ -3049,35 +3196,36 @@ interactions: Content-Length: - '625' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview response: body: string: '{"testRunId":"server-metric-test-run-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/Availability":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/ Availability","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":" - Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-07T05:57:18.342Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:23.683Z","lastModifiedBy":"hbisht@microsoft.com"}' + Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-20T11:24:09.269Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:11.801Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '3242' + - '3248' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:23 GMT + - Wed, 20 Nov 2024 11:24:11 GMT mise-correlation-id: - - 2f21e4cc-0b4e-4487-afbe-1d65feaf6874 + - a04f1d70-4430-45be-9291-9b013287f8ad strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055723Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007f000000001pvmm + - 20241120T112411Z-1846dc7bb4d25twmhC1YVRr3u000000003x00000000064ps x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3095,23 +3243,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:10.8948909Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:10.8948909Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:24 GMT + - Wed, 20 Nov 2024 11:24:12 GMT etag: - - '"13011fa6-0000-0200-0000-672c55960000"' + - '"97031001-0000-0200-0000-673dc5c60000"' expires: - '-1' pragma: @@ -3127,7 +3275,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C1C8517DC84644C284C1D18617771C7C Ref B: MAA201060515033 Ref C: 2024-11-07T05:57:24Z' + - 'Ref A: A9889AFFF28F47099E1BBA2F675F0516 Ref B: CO6AA3150217035 Ref C: 2024-11-20T11:24:12Z' status: code: 200 message: OK @@ -3141,33 +3289,34 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview response: body: string: '{"testRunId":"server-metric-test-run-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/Availability":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/ Availability","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":" - Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-07T05:57:18.342Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:23.683Z","lastModifiedBy":"hbisht@microsoft.com"}' + Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-20T11:24:09.269Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:11.801Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '3242' + - '3248' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:26 GMT + - Wed, 20 Nov 2024 11:24:12 GMT mise-correlation-id: - - 89e80f83-e928-4bd9-9d60-2a4341cea344 + - 1d05653e-3bbb-4500-b47f-832e6ae70393 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055725Z-16bf8d9b4c7b59wqhC1BOM918400000005yg00000001tcuf + - 20241120T112412Z-r16f5dbf676bfk2zhC1YVR2ru400000003hg000000004n7u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3185,23 +3334,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:10.8948909Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:10.8948909Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:27 GMT + - Wed, 20 Nov 2024 11:24:13 GMT etag: - - '"13011fa6-0000-0200-0000-672c55960000"' + - '"97031001-0000-0200-0000-673dc5c60000"' expires: - '-1' pragma: @@ -3217,12 +3366,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FDF8C1196EB149C29778D8B223A472AE Ref B: MAA201060514045 Ref C: 2024-11-07T05:57:27Z' + - 'Ref A: 10352D810A4040C8A549C2A8E3E9CB74 Ref B: CO6AA3150219037 Ref C: 2024-11-20T11:24:12Z' status: code: 200 message: OK - request: - body: '{"testRunId": "server-metric-test-run-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-howbews7pjfw3drjj/providers/Microsoft.Storage/storageAccounts/clitestload6r573ysih/providers/microsoft.insights/metricdefinitions/Availability": + body: '{"testRunId": "server-metric-test-run-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-2u55gbaskghfw4oe3/providers/Microsoft.Storage/storageAccounts/clitestloadwt7fgnea5/providers/microsoft.insights/metricdefinitions/Availability": null}}' headers: Accept: @@ -3234,33 +3383,34 @@ interactions: Content-Length: - '289' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview response: body: - string: '{"testRunId":"server-metric-test-run-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-07T05:57:18.342Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:28.96Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"testRunId":"server-metric-test-run-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-20T11:24:09.269Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:13.635Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2495' + - '2502' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:29 GMT + - Wed, 20 Nov 2024 11:24:13 GMT mise-correlation-id: - - bcb8e8cd-7667-45f5-93d0-751280154a2a + - 946a0508-8067-498c-bf60-baf73664a34b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055728Z-16bf8d9b4c7v8mr6hC1BOMh3uc00000007h000000000h05k + - 20241120T112413Z-1789fbbbd78z6tj4hC1PDXnyz80000000h4000000000hbvv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3278,23 +3428,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:19:10.8948909Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:19:10.8948909Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:29 GMT + - Wed, 20 Nov 2024 11:24:13 GMT etag: - - '"13011fa6-0000-0200-0000-672c55960000"' + - '"97031001-0000-0200-0000-673dc5c60000"' expires: - '-1' pragma: @@ -3310,7 +3460,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0BB447EC6693476CB67CB9A00A91696B Ref B: MAA201060513035 Ref C: 2024-11-07T05:57:29Z' + - 'Ref A: 75266AA3C12247C2B74EBE91C1C10EEF Ref B: CO6AA3150220011 Ref C: 2024-11-20T11:24:13Z' status: code: 200 message: OK @@ -3324,31 +3474,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://95bc01db-3ad2-4e87-9281-ecd9a87bfed1.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview response: body: - string: '{"testRunId":"server-metric-test-run-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-07T05:57:18.342Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:28.96Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"testRunId":"server-metric-test-run-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-20T11:24:09.269Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:13.635Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2495' + - '2502' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:57:31 GMT + - Wed, 20 Nov 2024 11:24:15 GMT mise-correlation-id: - - 5ec76874-8fbe-49b3-9b02-09603d8aa38c + - c073c85f-c92c-4f99-af36-2c2487301f11 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055731Z-16bf8d9b4c7hxwq4hC1BOM82c400000007a000000001szhe + - 20241120T112414Z-1789fbbbd78qmwkfhC1PDXrfm40000000hdg000000006trz x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_show.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_show.yaml index 2797ab7f70e..250ccae48ab 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_show.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_show.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:11:28.7280866Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:28.7280866Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:09.6834456Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:09.6834456Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:06 GMT + - Wed, 20 Nov 2024 11:23:41 GMT etag: - - '"fa00843c-0000-0200-0000-672b40e70000"' + - '"97039802-0000-0200-0000-673dc6b50000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DAF0598624F94CD39A51DE3AD444AF12 Ref B: MAA201060514027 Ref C: 2024-11-06T10:12:05Z' + - 'Ref A: 7DD5BDDB155F4CADB9F6BA1983C85F18 Ref B: CO6AA3150219031 Ref C: 2024-11-20T11:23:41Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier show-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:12:10 GMT + - Wed, 20 Nov 2024 11:23:42 GMT mise-correlation-id: - - b1528be4-ce41-45a5-ab9e-858f2d23ab59 + - d87e15b4-e9f2-4a81-ac94-8c0af1762ac6 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T101209Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bk7 + - 20241120T112342Z-1846dc7bb4dscstdhC1YVRnkq000000003pg00000000474z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"692a36b1-ec00-4c0e-8414-8a962eb90a3a": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "e9151262-f449-450e-8048-2681cdc77147": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "a52157c3-97a2-43f2-95c4-401b58bb1e7e": + "78"}, "fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "9a85ea0c-8da4-45e8-8868-ba27831d1274": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:11.058Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:12:11.058Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:23:42.738Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:23:42.738Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1044' + - '1146' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:11 GMT + - Wed, 20 Nov 2024 11:23:42 GMT location: - - https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-03-01-preview + - https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 000c7b46-5f40-4937-b253-b009fc87be34 + - 4dc2cf79-4800-4b06-9ab1-1edd5e743e08 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101210Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bkb + - 20241120T112342Z-1846dc7bb4dscstdhC1YVRnkq000000003pg000000004755 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:12 GMT + - Wed, 20 Nov 2024 11:23:42 GMT mise-correlation-id: - - 8f2fcccf-efc2-417e-94ea-55a7eb059a57 + - 68c1663f-4d27-4cf3-aaa3-656cd6c78f19 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101211Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bkg + - 20241120T112342Z-1846dc7bb4dscstdhC1YVRnkq000000003pg00000000475b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A12Z&ske=2024-11-06T17%3A12%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A12Z&sr=b&sp=r&sig=BPs%2BuA6D7trp3MV8iAZ8yjG5DA9bMCb4%2BgLNs0k%2F9%2FA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:22:12.6390932Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A44Z&sr=b&sp=r&sig=C1zp4aMW4kx7RYPtBIkjN6oO18a%2FLE2ob6%2FaO4M6hBo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:33:44.0713421Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '579' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:12 GMT + - Wed, 20 Nov 2024 11:23:44 GMT location: - - https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 49b05418-0ca5-4d17-8b04-17f4765b0f82 + - 2ec43239-0810-44d0-9a1f-6630546e6dd0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101212Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bkm + - 20241120T112342Z-1846dc7bb4dscstdhC1YVRnkq000000003pg00000000475d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A13Z&sr=b&sp=r&sig=U4yPx6KZBKWFNl%2BcXEoQPnz3%2Fmrm01nPbe5ieMBXNVI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:22:13.1031706Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A44Z&sr=b&sp=r&sig=C1zp4aMW4kx7RYPtBIkjN6oO18a%2FLE2ob6%2FaO4M6hBo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:33:44.217673Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '575' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:13 GMT + - Wed, 20 Nov 2024 11:23:44 GMT mise-correlation-id: - - a3f04deb-e926-4e36-81f9-414947204fce + - a95217bf-8b17-4423-9bd0-62c75b356bbf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101212Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bkq + - 20241120T112344Z-1846dc7bb4dscstdhC1YVRnkq000000003pg0000000047af x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A14Z&sr=b&sp=r&sig=%2FMe84Jwpeo9bPLbX0Ff5RfgnpwUw9evHRl95kwdxbm0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:14.0769998Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A45Z&sr=b&sp=r&sig=dohod7EgwIkAVoNrX0fD1nvl8Rjvuh7zYKvWLGOIUhg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:45.5040214Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:14 GMT + - Wed, 20 Nov 2024 11:23:45 GMT location: - - https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 9c9b3bf3-ab8f-4207-a7e7-07ac5f2e10e9 + - 5ab7e077-bf0d-4404-bde8-405d1cb5d00d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101213Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bks + - 20241120T112344Z-1846dc7bb4dscstdhC1YVRnkq000000003pg0000000047az x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,59 +351,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A14Z&sr=b&sp=r&sig=%2BPlFrlza5daQAWVCRcXqj68qNuttfFCBCXFOKCUI2o8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:14.5470436Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A45Z&sr=b&sp=r&sig=2tVBS1KETNMtya2FEt0hNfENhSSSkkGEIpvCZNJ7VJo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:45.6414747Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '570' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 06 Nov 2024 10:12:14 GMT - mise-correlation-id: - - d4368ab7-c03e-4700-83a0-db8132314ac7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T101214Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bkz - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A20Z&sr=b&sp=r&sig=Qt4ESq8irOJkPTvBFkdvhKkof9f77Cx8xyE7Xt8GLg0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:20.9690701Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -404,13 +370,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:21 GMT + - Wed, 20 Nov 2024 11:23:45 GMT mise-correlation-id: - - afd90945-92a8-413a-8817-35937c1e4e9f + - 747ceda0-37fc-40f0-816d-c1086d5d9918 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101219Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bmm + - 20241120T112345Z-1846dc7bb4dscstdhC1YVRnkq000000003pg0000000047bw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,17 +394,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A26Z&sr=b&sp=r&sig=RrEgAZ0InbjeGCWjPA7OriNJmvyw6Ip%2FD63hfcC4JzE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:26.4203203Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A50Z&sr=b&sp=r&sig=0ZhIeisrAvrZCjFxh7D98W08IcDimJ1Ys5qrh%2BKCpwk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:50.7568389Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -446,13 +413,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:26 GMT + - Wed, 20 Nov 2024 11:23:50 GMT mise-correlation-id: - - fc2075bf-fc49-46f1-b31d-c09fa08cc7c9 + - ae68925d-8081-419c-9da5-aaca73cba338 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101226Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bnb + - 20241120T112350Z-1846dc7bb4dscstdhC1YVRnkq000000003pg0000000047em x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A31Z&sr=b&sp=r&sig=i1q0C90zPmoL56xMoEbxdNFSykyXF7i1LselKJLHo8U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:31.8186708Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A55Z&sr=b&sp=r&sig=hKy%2FitSB7l0pigLoR%2BWjS87uZYx%2BO%2FZhS8g0HHoMQqc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:55.8750012Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:31 GMT + - Wed, 20 Nov 2024 11:23:55 GMT mise-correlation-id: - - 722d5c44-7e49-466e-95d2-8c4bf2739c22 + - 562fb008-f369-4d09-89ef-f9116c824050 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101231Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bnz + - 20241120T112355Z-1846dc7bb4dscstdhC1YVRnkq000000003pg0000000047km x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,73 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A37Z&sr=b&sp=r&sig=y367ygH93n0O3BeEzR1cvnRbIgIaExp4VXg4%2B%2FxrGxc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:37.2780575Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A01Z&sr=b&sp=r&sig=f77%2BQtSC0lXQO%2B5tVadkYleX2F4AL47H3gRQOJ4gQdU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:01.0047531Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 06 Nov 2024 10:12:37 GMT - mise-correlation-id: - - 71e8bc13-5d3c-43b1-8307-ee06b833143e - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T101237Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bpn - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A42Z&sr=b&sp=r&sig=QyZ%2BMmXjKXkpCBhdV5vh%2FZjqeZ%2BfWf4uL7XkycT77HA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:42.6789414Z","validationStatus":"VALIDATION_SUCCESS"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:42 GMT + - Wed, 20 Nov 2024 11:24:01 GMT mise-correlation-id: - - 38c3d830-1914-4928-8571-de12cfeefa39 + - b7359f26-8823-4f39-afb9-00e5a0888e9c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101242Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bqf + - 20241120T112400Z-1846dc7bb4dscstdhC1YVRnkq000000003pg0000000047qq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,33 +615,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A43Z&sr=b&sp=r&sig=JKkD03finEmf5OivB7Kg5%2BPg3uZHt50OTTyUbfvFB3s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:43.340986Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A01Z&sr=b&sp=r&sig=UA5VBB7kxsbXvbkjPMQPExhBWzJFRdlCQt83hpt9w98%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:01.8429966Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:43 GMT + - Wed, 20 Nov 2024 11:24:01 GMT location: - - https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 85631b73-51c3-4c50-984a-7c552ea7d794 + - bd5fee52-d3fa-4686-b06b-ac61b8ec675a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101242Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bqk + - 20241120T112401Z-1846dc7bb4dscstdhC1YVRnkq000000003pg0000000047qt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +660,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A43Z&sr=b&sp=r&sig=Q%2B1Ol8q30kthH3yG42FpKrjLk33vxO2TBLbFZDJ2Ul0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:43.8778795Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A00Z&ske=2024-11-20T18%3A24%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A01Z&sr=b&sp=r&sig=QWCCus5HIwJokIL0Dk3I5KuSDSGhKGLkltyR2rQPKGQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:01.9576415Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:43 GMT + - Wed, 20 Nov 2024 11:24:01 GMT mise-correlation-id: - - 6e9eea8e-660d-490b-904b-341fccb7e3ac + - 3dfa4929-0318-4a44-8c91-2b793e9327f1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101243Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bqq + - 20241120T112401Z-1846dc7bb4dscstdhC1YVRnkq000000003pg0000000047rp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,31 +703,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A49Z&sr=b&sp=r&sig=lbVzruUuz0GntTPgL0cI4ti9XGc%2FHz4C%2FQrB63Tm3B8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:49.3082508Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A07Z&sr=b&sp=r&sig=%2B7kGWlBBMPq5cPt0tFRmu6KxA7NCGs7FVFVGfIjbWls%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:07.1156206Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:49 GMT + - Wed, 20 Nov 2024 11:24:07 GMT mise-correlation-id: - - f5d83cd9-6ac0-4dcf-8ef5-38c346c8ad5c + - 274c3fb7-553a-4a1a-adf7-b58e73f62925 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101249Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006brd + - 20241120T112407Z-1846dc7bb4dscstdhC1YVRnkq000000003pg0000000047up x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +746,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A54Z&sr=b&sp=r&sig=nXHGjhYMqEhhg6IIsd%2FwkpsRMEHXzMYuh4Yrjecwi%2F4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:54.7399124Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A12Z&sr=b&sp=r&sig=gkXK7EFg4VqL%2BkF7RwRxLXEAGrdHoI4%2Br%2FfbYfltMwA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:12.2326309Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:54 GMT + - Wed, 20 Nov 2024 11:24:12 GMT mise-correlation-id: - - adc0c869-5265-40e6-9491-5b529f1c3fb2 + - fdd05157-2392-496d-b138-a19e9c9093af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101254Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bsa + - 20241120T112412Z-1846dc7bb4dscstdhC1YVRnkq000000003pg0000000047yc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +789,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A00Z&sr=b&sp=r&sig=je2zZZzjfCsrn8Ok%2BgMtMcLAnyiFtuGb0u5aN7XHrCw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:00.1614713Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A17Z&sr=b&sp=r&sig=x20vHC2Uf%2BIjPKyG9%2F4rdyB49uXJvlVtNxFqitkvhnw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:17.3437663Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:00 GMT + - Wed, 20 Nov 2024 11:24:17 GMT mise-correlation-id: - - 3081319a-3e7f-4789-920a-5682fdab0ebb + - a4bf4adf-07e6-4c59-a46e-e98ee0f1ef84 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101259Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bsz + - 20241120T112417Z-1846dc7bb4dscstdhC1YVRnkq000000003pg000000004812 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A05Z&sr=b&sp=r&sig=HFITu3s%2BP4RUzkBFLVqNLsofNwlhz%2BDlFOSXWFHSIMA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:05.545014Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A22Z&sr=b&sp=r&sig=OavJlOGjXbfjsQ5TNfdSBMeyBNcxXqKKwlDJlP5aCKQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:22.46838Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '559' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:05 GMT + - Wed, 20 Nov 2024 11:24:22 GMT mise-correlation-id: - - b44c9075-d67c-460e-a024-74ef3109492d + - b0a1b110-e378-48b9-ad1e-a45294b51f96 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101305Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bu2 + - 20241120T112422Z-1846dc7bb4dscstdhC1YVRnkq000000003pg00000000483s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A10Z&sr=b&sp=r&sig=eEjZY1tUO1eJIWo9K7YmT%2FFbMhLuQZRDqDkAyHmnWlU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:10.9455799Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A27Z&sr=b&sp=r&sig=WEe%2FtglZiSaKyWQQjoU8N7581qBW2ftfhveyIpWJkak%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:27.5974666Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:11 GMT + - Wed, 20 Nov 2024 11:24:27 GMT mise-correlation-id: - - 0f6972f8-24c5-4161-8316-f6740a0f2366 + - 65803a79-43f2-4d42-9dd0-c5c312949c75 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101310Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006buw + - 20241120T112427Z-1846dc7bb4dscstdhC1YVRnkq000000003pg000000004860 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,31 +918,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A16Z&sr=b&sp=r&sig=uWyLPuOAUeUPmKE1lmBF1h0%2FtEQXAr%2FV1AZbIUg4czc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:16.3416919Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A27Z&sr=b&sp=r&sig=mukkqrq4bDLcyJ7Mv8Laxflf%2FYOV3yhcVKCUMIq0Skg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:27.7118102Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A27Z&sr=b&sp=r&sig=Ey2rZwWVa0dbLfr%2B3tyyvVkjgB5X4gb4jRAjK3hyU2A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:27.7121219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A27Z&sr=b&sp=r&sig=SjI1C5rUmZVjD8b9QqJCeFQELBzYIN7zH5NM6q%2FzYyU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:27.7122041Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:23:42.738Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:26.467Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '2866' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:16 GMT + - Wed, 20 Nov 2024 11:24:27 GMT mise-correlation-id: - - 5085e89c-d5bb-43f4-bf94-09bb7638c1ab + - 9d3c636b-14cf-4fe7-b746-5113e96a2428 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101316Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bw3 + - 20241120T112427Z-1846dc7bb4dscstdhC1YVRnkq000000003pg000000004865 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1026,35 +962,39 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A21Z&sr=b&sp=r&sig=3IEtQFE71qly0vlz8mrRhw%2FG%2ByGRgUQOeczBfKfpkvE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:21.7123525Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:09.6834456Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:09.6834456Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive + cache-control: + - no-cache content-length: - - '558' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:21 GMT - mise-correlation-id: - - 69936b84-5db5-41b6-b4af-6c28d601f517 + - Wed, 20 Nov 2024 11:24:27 GMT + etag: + - '"97039802-0000-0200-0000-673dc6b50000"' + expires: + - '-1' + pragma: + - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T101321Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bwq x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 53DC1220D7864FACBE14AA6180BBA7A5 Ref B: CO6AA3150219039 Ref C: 2024-11-20T11:24:28Z' status: code: 200 message: OK @@ -1068,32 +1008,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A22Z&sr=b&sp=r&sig=IFJan65AEQB3ch%2Br2uiKiwBdSYf8tNj80Ilz%2B59PluI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:22.1525139Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A22Z&sr=b&sp=r&sig=tTfroZK5YB0vFZGdpTO6Fh%2Byj7xoIekK9fzkXVsPp8o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:22.1529002Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A22Z&sr=b&sp=r&sig=A4g%2BwQKo4QJo%2BfhqFeb%2FXARN7%2BKwhq5%2FXXkNLFlWV4k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:22.1530417Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:11.058Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:16.521Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A28Z&sr=b&sp=r&sig=ELP8rtfRnuCWaE19UmbjWzja3nZqNr9YifUyh4e%2FYTA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:28.5465526Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A28Z&sr=b&sp=r&sig=SjI2GbUOoWH3IB81M1qcXM%2F3wJeB2y%2FA24Wma3wdUoo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:28.5469204Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A28Z&sr=b&sp=r&sig=9EMeiM5wXhJOv%2BBFl4k%2BQDa5tZy1Dvp56ZLwfUDQV5c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:28.5470361Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:23:42.738Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:26.467Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2774' + - '2882' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:22 GMT + - Wed, 20 Nov 2024 11:24:28 GMT mise-correlation-id: - - f96d6eb2-39fa-4908-87ca-82806602d4db + - 4e094a24-a93f-446a-ba2c-bcc3bbef48da strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101321Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bwt + - 20241120T112428Z-1846dc7bb4ds2rqjhC1YVRyyk400000003k0000000000egg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1111,23 +1052,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:11:28.7280866Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:28.7280866Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:09.6834456Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:09.6834456Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:24 GMT + - Wed, 20 Nov 2024 11:24:28 GMT etag: - - '"fa00843c-0000-0200-0000-672b40e70000"' + - '"97039802-0000-0200-0000-673dc6b50000"' expires: - '-1' pragma: @@ -1143,7 +1084,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7CC18C28AB1341C59F71ADA5E022EB3A Ref B: MAA201060513031 Ref C: 2024-11-06T10:13:24Z' + - 'Ref A: 2F1EEAA585BB4E1AB33408666CE944F2 Ref B: CO6AA3150220047 Ref C: 2024-11-20T11:24:28Z' status: code: 200 message: OK @@ -1157,39 +1098,87 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=evJDdkqxrepfyXlKgJaazCWG33XZ9X5bILpZYsG4Ud0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:30.0469726Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=1%2Fy812EozQPf9ce7H4v75uJ%2B2ksIUAw3vzsTDhHENq8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.0476887Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=t4eIlf8IVb1jNwtdYWEMSXvHolqt6Huk3w5IOY7pDXs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.0480605Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:11.058Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:16.521Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with + given name \"show-test-run-case\".","target":null,"details":null}}' headers: - accept-ranges: - - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-type: + - application/json + date: + - Wed, 20 Nov 2024 11:24:29 GMT + mise-correlation-id: + - b8136103-c21f-43c0-82f2-3ecc594fe58e + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-azure-ref: + - 20241120T112429Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000013mf + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-error-code: + - TestRunNotFound + status: + code: 404 + message: Not Found +- request: + body: '{"testId": "show-test-case"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '28' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A30Z&sr=b&sp=r&sig=jgdcF%2BKqxILK1QIiMey%2FaJzQ6IWkmzbgFfV44PgO%2BlQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:30.7801169Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A30Z&sr=b&sp=r&sig=3kM0040q5aTjweLa%2BIwBADXfJEvZTCEDWVQ%2FIuYx3%2BQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:30.7796358Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A30Z&sr=b&sp=r&sig=wh7mEvZKvZEdU2kZzgWBA9BXLCWXdySP99gT0xbShHc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:30.7802779Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A30Z&sr=b&sp=r&sig=3bxaKS1wQUMK8%2B5inVwaeS9hMq3fJTRmaEDA08eB76U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:30.7804407Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A30Z&sr=b&sp=r&sig=4T7q%2FIxvTppC0c7ftuyfYh7hFLydpfaKhjQPboikiPQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:30.7806034Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A30Z&se=2024-11-20T12%3A24%3A30Z&sr=c&sp=rl&sig=v0C0KE2YCbCPbKikxthKgbrusEQ0AR08va7KleMex3o%3D","expireDateTime":"2024-11-20T12:24:30.7807514Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:30.769Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2774' + - '4955' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:30 GMT + - Wed, 20 Nov 2024 11:24:30 GMT + location: + - https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 53f6fae8-e254-444b-9cdf-6d6ae156d2fe + - f1a5f11c-a7c4-43a8-8c30-88937a0e189f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101328Z-er1d798b584jjq9jhC1SINbpms00000005q0000000001ywd + - 20241120T112429Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000013n0 x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1200,39 +1189,36 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:11:28.7280866Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:28.7280866Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A30Z&sr=b&sp=r&sig=%2BI9hjB5V%2F1ScgXH%2FpoMhKKcOGoQVJtfaKBQucBLq9qo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:30.9291408Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A30Z&sr=b&sp=r&sig=Wy9jkw45L%2FUFZfQhMA7oHxkw%2BpaEGJE5TNo7j4IVx3c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:30.9287609Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A30Z&sr=b&sp=r&sig=taEeKm02q79aDMQgWtKLXCSiiXVFyn0Fy%2F9hQUS4Ulo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:30.9292834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A30Z&sr=b&sp=r&sig=aqZVIsz9aEO7dLYEDtfvLD44o8xaZodU1%2BsyBoS3ITo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:30.9294251Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A30Z&sr=b&sp=r&sig=rTSai9B6R%2BIuBLB4t7S1UxEepdC%2BIN71FRd%2BNciaQ0Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:30.9295658Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A30Z&se=2024-11-20T12%3A24%3A30Z&sr=c&sp=rl&sig=0x8XK0aIVPiDRYWt8Dbd9Ro1AXRsyY1Bb1LoQOKv5%2Fk%3D","expireDateTime":"2024-11-20T12:24:30.9297053Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"NOTSTARTED","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:30.905Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: - cache-control: - - no-cache + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive content-length: - - '653' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:33 GMT - etag: - - '"fa00843c-0000-0200-0000-672b40e70000"' - expires: - - '-1' - pragma: - - no-cache + - Wed, 20 Nov 2024 11:24:30 GMT + mise-correlation-id: + - 15c4eda1-257f-4613-8fd9-dac3bfcb3db9 strict-transport-security: - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112430Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000013pz x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 4803E934E84D439D908F70759C4F9F48 Ref B: MAA201060516039 Ref C: 2024-11-06T10:13:33Z' status: code: 200 message: OK @@ -1246,41 +1232,41 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with - given name \"show-test-run-case\".","target":null,"details":null}}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=Mb%2FAPFnMhUCvssabnsm83B65ih3MQFuT29Zp%2BJ%2Bu0YQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:36.0811355Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=o6LVmTy98cwAQr%2BbOGS1aoEzSpXg1g8SWkAWFLeqBEo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:36.0807585Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=WZsnn5x1EsO9W0S5tD%2Fu20DP7s1EoZS8Lshknyavtkc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:36.0812474Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=zUfGk4BWnKrg4wc%2Bf3sYzh56LBG2l67KdvTdsms7zLY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:36.0813413Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=r9ZbC9JtOoFMTBMjokhEECl0xNRjDuGw309VzLseO%2Fc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:36.0814334Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A36Z&se=2024-11-20T12%3A24%3A36Z&sr=c&sp=rl&sig=RNK3M77N925UAE%2FDTVg7AjNvtrMvdz2oS1rROMUuUao%3D","expireDateTime":"2024-11-20T12:24:36.0815222Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:31.094Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: + accept-ranges: + - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive + content-length: + - '5002' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:37 GMT + - Wed, 20 Nov 2024 11:24:36 GMT mise-correlation-id: - - b541b4e4-ffde-429b-aceb-2b7862d4b252 + - 509f1d03-2859-4d9b-bec0-f5fd2e97aacf strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked x-azure-ref: - - 20241106T101336Z-er1d798b584cft5mhC1SINz3u800000005g0000000004fzs + - 20241120T112435Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000013v9 x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-error-code: - - TestRunNotFound status: - code: 404 - message: Not Found + code: 200 + message: OK - request: - body: '{"testId": "show-test-case"}' + body: null headers: Accept: - application/json @@ -1288,43 +1274,40 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '28' - Content-Type: - - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: PATCH - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A38Z&sr=b&sp=r&sig=qCWbpOg%2FvwLtJNoh6dTu3QZeJXDyqjQWccxloOQ6ea4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:38.8854692Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A38Z&sr=b&sp=r&sig=11QP6z9%2FeG6K6qvqOVoajIb3uM65g685W6uNpxg7rEc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:38.8851919Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A38Z&sr=b&sp=r&sig=7zHud3JKnQERLCrQATohetXaUSMkbEoMVuGci8G853Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:38.8855612Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A38Z&sr=b&sp=r&sig=mSlIuWdJDVSii4x0XgmBNbYG40MfM9Pdl4PAWL0vdwo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:38.8856521Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A38Z&sr=b&sp=r&sig=6GNj0N9iqBuLCGs%2B3M97qQwWKho5lbIdiQguVGIc7S4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:38.8857412Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A38Z&se=2024-11-06T11%3A13%3A38Z&sr=c&sp=rl&sig=0vYedH9O6w7qdFuH%2F%2FoUr4%2BsF7qmpGeyDdS7CpVv26M%3D","expireDateTime":"2024-11-06T11:13:38.8858278Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:38.642Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A41Z&sr=b&sp=r&sig=VJLmoTRz%2FGNh0yvjXAw9YLKKXUm2XX6u64pq0YnyWmA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:41.2048516Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A41Z&sr=b&sp=r&sig=JNR0sH8AWCwOD3PYhPtwzytwGdQBhbD%2BeK3v6VHqR7I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:41.204577Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A41Z&sr=b&sp=r&sig=9uDtgC%2FwMq4W0HM4MYxKHsjeyZtf2G1LBMuO1sW5dBM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:41.2049509Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A41Z&sr=b&sp=r&sig=2gA2zvfpiYN98LDyJKXY0N2huyKl%2BAXhA9Nk7Tek0Lw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:41.2051854Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A41Z&sr=b&sp=r&sig=q37Td0vXgxDt%2BQVIprnYkZ%2FWSRKWJ0bM%2FJfN4q4BlsQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:41.2052852Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A41Z&se=2024-11-20T12%3A24%3A41Z&sr=c&sp=rl&sig=H76%2BTsYzBfxbBGLPCyKfe3XEP0HW0RuQpAOCoRQzbTg%3D","expireDateTime":"2024-11-20T12:24:41.2053818Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:31.094Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: + accept-ranges: + - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4849' + - '5001' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:39 GMT - location: - - https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2022-11-01 + - Wed, 20 Nov 2024 11:24:41 GMT mise-correlation-id: - - f69cc1e9-43c8-4dd5-8acd-0557d112165f + - b3fc1edc-68ef-4fe7-8a75-5de6dedba092 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101337Z-er1d798b584cft5mhC1SINz3u800000005g0000000004g0c + - 20241120T112441Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg00000000140z x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1335,31 +1318,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A39Z&sr=b&sp=r&sig=6yo71iVJvcukb34vTVkWGbl1byHOBio6bGf%2BWa5PocY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:39.5456115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A39Z&sr=b&sp=r&sig=SsTL4p%2FEtCSgMPDPF%2Bjps2rciSSSHq6hMBALvmM%2FNfA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:39.5453893Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A39Z&sr=b&sp=r&sig=WcSMuQhqHxYpBFobGAih1%2BqMDYoYo3riJahrq%2BbDI3M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:39.5456882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A39Z&sr=b&sp=r&sig=BOuQ4UAqldNXXkZDio4jwfITGnM47WVEzx%2FVq7ru%2FS0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:39.5457584Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A39Z&sr=b&sp=r&sig=1VP6Iu5wK%2BaGqFZqonNkMb2YbhGfKyvV0TP90%2Ba%2BpLE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:39.545838Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A39Z&se=2024-11-06T11%3A13%3A39Z&sr=c&sp=rl&sig=S1Ki8bcG6YLnP0GstHFRdU5HOPHNxswHKWtxlp%2Bu%2FsQ%3D","expireDateTime":"2024-11-06T11:13:39.54592Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A46Z&sr=b&sp=r&sig=xr1CKTnowng%2F548aAjRBexwtX4d0OIqYq1uglIxpZJg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:46.3266354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A46Z&sr=b&sp=r&sig=aWJxwEl307yHdJuxwbxaKezxBxa6LdGEDtsY%2BOL3HE4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:46.3263225Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A46Z&sr=b&sp=r&sig=sDrYfAkKcE0X1spaNyrNaesf96616PZlBBfI8llnkxc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:46.3267227Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A46Z&sr=b&sp=r&sig=BLXSnNHdSY1JbxR1tMsZ%2BVmQ8kWm330l8svCvuM75mo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:46.3268346Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A46Z&sr=b&sp=r&sig=yfymgPaEwpEfHkxj8GQBE%2BIBVwUQkH7dDAJhjJDTDI8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:46.3269287Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A46Z&se=2024-11-20T12%3A24%3A46Z&sr=c&sp=rl&sig=ZuQrUh2C2lWnpcCYY5mhXZqwF885aMuxCNK5b%2FHkhtg%3D","expireDateTime":"2024-11-20T12:24:46.3270115Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:31.094Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4907' + - '4996' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:39 GMT + - Wed, 20 Nov 2024 11:24:46 GMT mise-correlation-id: - - 362248ff-cfa5-4859-9630-bbc686969c0f + - f70b1edc-90fa-4a1b-8c0d-df9216b97f85 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101339Z-er1d798b584cft5mhC1SINz3u800000005g0000000004g1k + - 20241120T112446Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg000000001455 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1377,31 +1361,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A44Z&sr=b&sp=r&sig=xy%2FfXvIGgN%2FNYN5r1bxKRQc%2FEpItKHuXK37Sz2NeW6Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:44.9705694Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A44Z&sr=b&sp=r&sig=E3jt%2B9viPdVlKgDYVb5rEB7xMzmm6ycv9qPs8jJDt1s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:44.9701778Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A44Z&sr=b&sp=r&sig=zH6vXeNvQ7HwFRVosEYr15TtWk7LlVvtd0UekMXWY5s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:44.9709028Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A44Z&sr=b&sp=r&sig=holCEcTLBmJPH4Ppysm4J3C2frVPiHML0vxvpXGbj2c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:44.9710519Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A44Z&sr=b&sp=r&sig=Nb4qAHBSZVpDBNF2OjCHmwHYiwEIBXBhV6AmaPeFduI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:44.9711765Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A44Z&se=2024-11-06T11%3A13%3A44Z&sr=c&sp=rl&sig=%2BOBLskBuLcwB7y7M9Rsaq6MjoIwkX1kgvt2ZO1KVjAw%3D","expireDateTime":"2024-11-06T11:13:44.9713193Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A51Z&sr=b&sp=r&sig=i11kXEaQb61St10V05IkxdJvcW34I0Be7yVZHTl%2FfLo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:51.4488103Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A51Z&sr=b&sp=r&sig=aZih9n%2FSL0crXB4Ghr3p58k%2B02dsDvdvr59IwGdnzrI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:51.4483689Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A51Z&sr=b&sp=r&sig=ef7rLHnak3yvNLiiqNdjpZ3fX%2FyFoy3Wt5G9Fa5sMx4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:51.4489217Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A51Z&sr=b&sp=r&sig=tZt5VEAZQa04L3p49A%2FFp6PywqWHb5uyBrynCQbW59Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:51.4490127Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A51Z&sr=b&sp=r&sig=aYz%2FJVnuLSnQX9YLtyw4hpZxI9WdmBUp9WYccWHmRsA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:51.44911Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A51Z&se=2024-11-20T12%3A24%3A51Z&sr=c&sp=rl&sig=MIy%2F8GY183yoO6rXTblzhJR8qsLkOOTwkhXww4q%2BoZs%3D","expireDateTime":"2024-11-20T12:24:51.4491961Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:31.094Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4894' + - '5000' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:45 GMT + - Wed, 20 Nov 2024 11:24:51 GMT mise-correlation-id: - - 4447a2b4-75a6-4959-9c40-889259d23adb + - fd0241b4-b170-4cc3-9cfa-ee7522a544ac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101344Z-er1d798b584cft5mhC1SINz3u800000005g0000000004g48 + - 20241120T112451Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg00000000149m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1419,31 +1404,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A50Z&sr=b&sp=r&sig=mFgUgEtzNKrCnC1mQ0VeU7jU%2B8XIz2tMCvEYYQ5gJE0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:50.424581Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A50Z&sr=b&sp=r&sig=f4n2ufnJmqcJ3dAyQFoXydLnqEstYbFpSMakSXDxSkE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:50.4241587Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A50Z&sr=b&sp=r&sig=TmdOvOUReXpo5lj6SF4D%2FCTp9BoPSOftKVEkWysEVl4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:50.424724Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A50Z&sr=b&sp=r&sig=YR1vqzIpuIDDBo1XA70XqAEgMKKPsybWhAIZhPgSsh8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:50.4248727Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A50Z&sr=b&sp=r&sig=OEKMWTMRXSCigpNTI8v60KZN6hGuJwexgE4SpT8epM8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:50.4250184Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A50Z&se=2024-11-06T11%3A13%3A50Z&sr=c&sp=rl&sig=1uri7qnMCYmX9yaZ675XHbMMPiEui3CyGzbe82oWzs0%3D","expireDateTime":"2024-11-06T11:13:50.4251627Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A56Z&sr=b&sp=r&sig=%2FvBsu1qXH%2F7dELZagnTEaqT42OIzlwIvnfonbbldoX8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:56.5714638Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A56Z&sr=b&sp=r&sig=6Ca68dzRE8UE3gKagIJH5qJM65sOlVVhxzMM6Tz3CJ0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:56.5711559Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A56Z&sr=b&sp=r&sig=UZZh%2BG74gFqKK6Fwx%2BQFyulonArefwChH4VCPHbR2jk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:56.5715704Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A56Z&sr=b&sp=r&sig=KjU%2FOnUm%2FYzRv2az3yT5Fk8tCgzpC7GJyGObr3p8yCI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:56.5718049Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A56Z&sr=b&sp=r&sig=oSVEAuq9hoWoCPu39y6b0c9mIq6fkHa633VxN3XtuII%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:56.5719027Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A56Z&se=2024-11-20T12%3A24%3A56Z&sr=c&sp=rl&sig=jl8i3f7Lk2dQU5cEJCdnJCM%2F98AWxUGk0wo7guSdgbA%3D","expireDateTime":"2024-11-20T12:24:56.5720039Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:31.094Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4886' + - '5000' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:50 GMT + - Wed, 20 Nov 2024 11:24:56 GMT mise-correlation-id: - - cb09693e-82db-4f29-b0ea-97e3b8afe2a5 + - d3886ca5-9669-4640-91a3-89bac33049dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101350Z-er1d798b584cft5mhC1SINz3u800000005g0000000004g81 + - 20241120T112456Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000014ey x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1461,31 +1447,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=iM4zwgxi5TZYNmXjQjfDtVftvmD41DEcZP2v4GNcMrc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.5694416Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=PH0k45873L1Bmb8YildLkp9ukKvyHsekY6Y9Sx2DZSg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:56.5691986Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=AnGmwK0W0TuZ23UbWOcRZ7ft21dvFQHqRD7rIBdAuMg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.5695327Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=BrAzqStTWmGWeWhCL0J8Cf8cQZCVcTRcqsie9JlQadU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.569623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=l6j8YR7RWLbzEQRFomdYbbCcCgzfz7iWmZ7rCIEAU84%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.5697189Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A56Z&se=2024-11-06T11%3A13%3A56Z&sr=c&sp=rl&sig=LVLtiQq9JZPzcSk69RdI85ZwnFwXuL4u7BRibxDVntw%3D","expireDateTime":"2024-11-06T11:13:56.5699783Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A01Z&sr=b&sp=r&sig=cwuhznj2VyB97CMZadV27OApfzaS4s0eiNl38SB73d0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:01.7317504Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A01Z&sr=b&sp=r&sig=fqnAyo1BdB%2FzOangbHiA%2F6P393mQ9AMkLFaxxlREauw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:01.7314767Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A01Z&sr=b&sp=r&sig=Zm9FlPm2RLQ2g7kINKnVM93SA397E293BtbxNIOk7iY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:01.7318331Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A01Z&sr=b&sp=r&sig=q03LXbhM43gSh82zeaenxER7UIoOwY%2BCGw%2FBGtvnkSI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:01.7319106Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A01Z&sr=b&sp=r&sig=k2Na0w1x22oSy9kXDMfbA7qO38dBkHhI4u40Dous5Ak%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:01.7319864Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A01Z&se=2024-11-20T12%3A25%3A01Z&sr=c&sp=rl&sig=6OMlbG8jLemleS0ad9Tuwlr%2Fcj1mOl5YjTd8aeZrJls%3D","expireDateTime":"2024-11-20T12:25:01.7320607Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:31.094Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4883' + - '4996' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:56 GMT + - Wed, 20 Nov 2024 11:25:01 GMT mise-correlation-id: - - 4de2a41e-f0f3-4901-b9f9-b9ef0d534eb0 + - 65c365d8-5f85-4780-a92a-ac2a212dae67 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101355Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gbf + - 20241120T112501Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000014ks x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1503,31 +1490,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A02Z&sr=b&sp=r&sig=kpEPtN2zJ9GxugBjy4sd6fkHd9mYMwhURfMnuAx%2Fah0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:02.3423502Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A02Z&sr=b&sp=r&sig=n3i919CuHGM%2FhHwnPDAgK%2FBMH59hT6ig529nYcGKWK4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:02.3416936Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A02Z&sr=b&sp=r&sig=4OllHGzteBrUqAqjDW%2FFNuVPquBvZga8Ksv5ymI9KyA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:02.3426749Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A02Z&sr=b&sp=r&sig=SOrXbYMNwVTQ7R4OvudaZhETHGseQLICbqCoiga9g4w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:02.3429833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A02Z&sr=b&sp=r&sig=lsjg5EF%2B0CMBAo9ao5nWwMglIdKQi15LetV77T2q6LU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:02.3431945Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A02Z&se=2024-11-06T11%3A14%3A02Z&sr=c&sp=rl&sig=X7GsGEaTuOOCuA3VI5xJRTGx1OERy0KpKIOZXCJRMNY%3D","expireDateTime":"2024-11-06T11:14:02.343423Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A06Z&sr=b&sp=r&sig=4dF5oLT33tZ0GQcdJIptz8TxsfcVr5WMLPNtiU9X810%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:06.8626687Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A06Z&sr=b&sp=r&sig=b9UHrsfpZrxcR%2FJihoGkIDwVf5bKb%2FTfpgHyJq68Rd8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:06.8623244Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A06Z&sr=b&sp=r&sig=qBT2HtxcWsA48f7MUN2T2gm4gB%2FJryvseJmjb9Gh4Uc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:06.8628289Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A06Z&sr=b&sp=r&sig=uBEfeor7dxYbRraDMES1ubYA4XbTdxnTjiBIAcZTOdY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:06.8629739Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A06Z&sr=b&sp=r&sig=ntVatVTCC1zxLj%2B58s0dszgQ1P7D56VN1VkRnpTsdfs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:06.8630713Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A06Z&se=2024-11-20T12%3A25%3A06Z&sr=c&sp=rl&sig=uNSz38dYBhe0iVChq8psPlkJLcciFzTX5t5FwMf9cqA%3D","expireDateTime":"2024-11-20T12:25:06.8634115Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:31.094Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4893' + - '4994' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:02 GMT + - Wed, 20 Nov 2024 11:25:06 GMT mise-correlation-id: - - 5f8fb276-866e-410a-a88e-3fb66546bfea + - bfebd41a-0ea8-4536-a86c-42c23e8850c2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101401Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gf4 + - 20241120T112506Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000014rf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1545,31 +1533,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A07Z&sr=b&sp=r&sig=H0RoY4WFBOEUXBrccRoZovtTErE7P0uJMYx7miaJTQE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:07.7451618Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A07Z&sr=b&sp=r&sig=ahaYP71J4zYG3vs2pW3nd8PG9tlFqCW4Osogrm2m%2B54%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:07.7447573Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A07Z&sr=b&sp=r&sig=ybNADtRfTg46P0H2QkgyLmVuW%2FBBtaeOJGWI%2F17imaw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:07.7453337Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A07Z&sr=b&sp=r&sig=mp2SHSDEfPlt8mM799CK8%2B811L6JOQfCJ%2BiLoi%2BvOTA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:07.7455051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A07Z&sr=b&sp=r&sig=u8K8dU3XNzICtGhYq56Y76ZWja5SFpNOLP%2FhXna4SAQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:07.7456742Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A07Z&se=2024-11-06T11%3A14%3A07Z&sr=c&sp=rl&sig=jzVMd2z8z%2Buxfv%2FOUExKYA73p0cfs96yUHs%2FOdwWui8%3D","expireDateTime":"2024-11-06T11:14:07.7458426Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A11Z&sr=b&sp=r&sig=lDTBlcFHpmcTvYvtmWpQYfn4aZcFvDlp%2Bt1%2BTRqul0w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:11.9970262Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A11Z&sr=b&sp=r&sig=C6%2FFvfAxV4VZ053kqoDrwEnZAyCjKfAlvENQYpOgTTc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:11.9967534Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A11Z&sr=b&sp=r&sig=Be1IrulqqaNU0Dr7NS%2FDvXMQ7hskxgRpIVKnfcOQZQo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:11.9971167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A11Z&sr=b&sp=r&sig=unMRKxgRPs97wOb9XjUGg7JFfOMlOi3Y4FSkN4m09vA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:11.9972013Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A11Z&sr=b&sp=r&sig=dB7tQXOvOGPqvp%2BCWtQA3a4dEQXPnDMQlMfFUC8WDIo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:11.9972921Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A11Z&se=2024-11-20T12%3A25%3A11Z&sr=c&sp=rl&sig=ISXIXjaTmyt5DQEv2jmjgPpuqBV%2FDDwkiIx4N7JZ%2FP8%3D","expireDateTime":"2024-11-20T12:25:11.9973781Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:31.094Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4904' + - '5000' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:07 GMT + - Wed, 20 Nov 2024 11:25:11 GMT mise-correlation-id: - - 75fe5bae-a863-43a5-b222-1b6b2bb90267 + - 61be549a-debb-4012-adfa-86487ee977b1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101407Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gka + - 20241120T112511Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000014vt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1587,31 +1576,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A13Z&sr=b&sp=r&sig=sbHUD9rvLOtRuQHgeKqmejzZZrTSHMXJz9SXSmBacVk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:13.2014361Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A13Z&sr=b&sp=r&sig=kxuBue3QPdWto7yo92nRRINCHgsXkF4Z1zSJ3gfj3Nc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:13.2007156Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A13Z&sr=b&sp=r&sig=30DDte1UtSlfUqbgXB75zvDKHLjVZcdGZ970fbKUZRk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:13.2017436Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A13Z&sr=b&sp=r&sig=ueFjkL5wI6ML2o6%2Bi1rZPw5hOn%2BqXdr%2FscB84UQ2AgI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:13.2020514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A13Z&sr=b&sp=r&sig=hJnk%2FVILnB%2BGKrDYjCYHEPvHFDGEOhbNcy8Aks3Mmqc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:13.2023408Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A13Z&se=2024-11-06T11%3A14%3A13Z&sr=c&sp=rl&sig=uzu1d2F7VzwqXf%2FABWYjLT9cSb1Ng26wAIFfYbUJpC4%3D","expireDateTime":"2024-11-06T11:14:13.2026314Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A17Z&sr=b&sp=r&sig=b7gmT%2B6W9zB1fcLZV2ZR9mdkUGTL9ays57bAOE8VZ9Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:17.1312505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A17Z&sr=b&sp=r&sig=uFgiKSVUsjYOpI0rYl0V7Z%2BHloK0GXia%2FmY03Ta35Gc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:17.1307107Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A17Z&sr=b&sp=r&sig=WkMnCxnCGD9pr4taGVgD0fk2pLO9toN2%2BjROOvejyTE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:17.1313758Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A17Z&sr=b&sp=r&sig=TbMYi681wMGb9Crem9U%2FSPOPnyK5w%2Bm1VP12xjO2SAo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:17.1316372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A17Z&sr=b&sp=r&sig=hOn%2BAMZUaub5Qdy2Dbd049GiLwGMBc21zxsB6m6CfpA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:17.1318798Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A17Z&se=2024-11-20T12%3A25%3A17Z&sr=c&sp=rl&sig=RYwFqqixX3sRegPH%2B1FxOw1rIKqeXO4OnAp2EU4NzK4%3D","expireDateTime":"2024-11-20T12:25:17.1321344Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:31.094Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4896' + - '5002' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:13 GMT + - Wed, 20 Nov 2024 11:25:17 GMT mise-correlation-id: - - 8352ba31-8dd1-44fa-b1f1-fbbe2feb7fcc + - 00364444-176f-4e7e-a274-bc6d006f12ef strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101412Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gpg + - 20241120T112517Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000014zs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1629,31 +1619,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A18Z&sr=b&sp=r&sig=n6xqHUeS2xaemi2MUdzC2o89u7C8Xs%2F6o9LnNuWRNRw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:18.6591386Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A18Z&sr=b&sp=r&sig=rCpDyg8MO%2FEbee4y05PyX9bnCvTJ7R1SzkEGwN6qu%2Fg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:18.6588562Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A18Z&sr=b&sp=r&sig=1v0XjU6%2B6bNxh3lJA0q18eP96aUI%2Bh3VIt46aBUZ%2Bd0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:18.6592611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A18Z&sr=b&sp=r&sig=pppQmDproZTydebYcNYCJiKQ%2Fej50d5Bs2OfBKtWOkM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:18.6593807Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A18Z&sr=b&sp=r&sig=Z1Lwv9HTSoHR5g6zWa2sB4n1gxXl7fyCXb%2BE8kGVxfc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:18.6594954Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A18Z&se=2024-11-06T11%3A14%3A18Z&sr=c&sp=rl&sig=ot41AG0SNs9ZRMqMpz5sB8bhJPqlbKyw63v%2BLf7fJfQ%3D","expireDateTime":"2024-11-06T11:14:18.659609Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A22Z&sr=b&sp=r&sig=bU%2Bhxg%2F2U8IzjSM0sI0oMY6I%2FIHOR6ASdcOHmUQgAmk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:22.2534836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A22Z&sr=b&sp=r&sig=8CDL3yljooDq1BPpmbLOF4GvwCnuQBBB5Tsl%2BVOQGfY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:22.2532378Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A22Z&sr=b&sp=r&sig=YlZAenIf3zVn5ZFS4O50fYg8z%2FfzLlPPjAggfj0KkLQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:22.2535754Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A22Z&sr=b&sp=r&sig=QBL9RFOgwFpXiJLtJqQE8ke44cOKeKD4d0DT2LFET%2FY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:22.2536646Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A22Z&sr=b&sp=r&sig=d8SCMuf9sJE4wk7JcjpHOiJtqWJvatn06yVoCXn6saw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:22.2537539Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A22Z&se=2024-11-20T12%3A25%3A22Z&sr=c&sp=rl&sig=yyCYrAXzfcz6Q64uYaAzClBWFyOqG1vVCNqzOxqH%2BwM%3D","expireDateTime":"2024-11-20T12:25:22.2538368Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"CONFIGURING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:19.8Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '4997' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:18 GMT + - Wed, 20 Nov 2024 11:25:22 GMT mise-correlation-id: - - 5ec56301-0588-4a32-9e94-7da869362997 + - 83a2b5d5-e639-4baa-bbf0-fea809193079 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101418Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gsm + - 20241120T112522Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg000000001553 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1671,31 +1662,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A24Z&sr=b&sp=r&sig=yLOa3l38lUi8ryZSYBWzLH1giU9a9g%2F9uAoMXRf26EE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:24.1122086Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A24Z&sr=b&sp=r&sig=S5RBaGba%2Bm1OP6r6PfP6mfurE3pTzU2moelDASPT%2FX8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:24.111985Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A24Z&sr=b&sp=r&sig=NslEK5YIAOggufYgx78hcp4XFCGdU3DGbmtCkHYDK%2BQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:24.1122664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A24Z&sr=b&sp=r&sig=ravBDFAdrebkxzvhngE%2FOuEy%2BzRFSHT5trj2YpGZK7c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:24.1123227Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A24Z&sr=b&sp=r&sig=MACwRI3kEBqSCTx1Kt1FPQ1rorWs31VilIX7dULZuVM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:24.1123781Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A24Z&se=2024-11-06T11%3A14%3A24Z&sr=c&sp=rl&sig=5MCKB71iMD7L1nmwrdnlPL7SD471QcmQ6JC63DsZMSs%3D","expireDateTime":"2024-11-06T11:14:24.1124335Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:23.498Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A27Z&sr=b&sp=r&sig=CqOhOs8q8sEn4aJzmEkKQHjyu%2Bu28jQn3JqZ%2BsrVkW0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:27.3843119Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A27Z&sr=b&sp=r&sig=EYWVf4eFZDbeD0GBgWEXwwoSz4TfDLvsU3s1xREqtjs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:27.3840858Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A27Z&sr=b&sp=r&sig=3zNZQyJvjKLwe%2F0E02zD0ma78r4jDOOiCPujIHhYGPI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:27.3843857Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A27Z&sr=b&sp=r&sig=%2FGfNbuAcS56IMm8i3I5tDIODtUAsKkwcXQ7RcEjWkK4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:27.3844499Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A27Z&sr=b&sp=r&sig=ob1WCJ1HloInsPC7hQBKRDnqLgozWJhxU3dWbFiqovo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:27.3845097Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A27Z&se=2024-11-20T12%3A25%3A27Z&sr=c&sp=rl&sig=gGwY0%2BwUGQP%2B1VdpBDmPzsXfNL5mMsfcvqvFzuZWRgE%3D","expireDateTime":"2024-11-20T12:25:27.384569Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4894' + - '4994' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:24 GMT + - Wed, 20 Nov 2024 11:25:27 GMT mise-correlation-id: - - d7437d77-38cf-4c59-8c5f-4285ecb5acc1 + - 1f1c2dea-9b1b-4609-bcd6-c3d090c496cc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101423Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gv7 + - 20241120T112527Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg00000000159y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1713,31 +1705,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A29Z&sr=b&sp=r&sig=%2BtIApaUx2nzlXlcpn7v6xVXuAumAsqNPkQd0FFsNPpk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:29.5146134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A29Z&sr=b&sp=r&sig=WwJopypMLUOBx%2BceMzpUVtWjSEYwWhGC2uoC08VwCmM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:29.5141759Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A29Z&sr=b&sp=r&sig=alZORZiyvbWRcJTCo4Fdzo2f2SsgB1GEzgXGE53g6bI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:29.5148042Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A29Z&sr=b&sp=r&sig=nwRAwi5XtwPwGbG%2FTVZ30VwXN1i%2FgXop%2FH2HM6ipBtg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:29.5150522Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A29Z&sr=b&sp=r&sig=gXCRyw%2BDaox%2Be%2F3L%2BEphogIClk%2B0Jdn4Jtt%2B7di%2Fl7U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:29.5152556Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A29Z&se=2024-11-06T11%3A14%3A29Z&sr=c&sp=rl&sig=RftGb9biTLYp1xdfw8awcoBo3DWFznHEtHfHUxhdqoU%3D","expireDateTime":"2024-11-06T11:14:29.5154519Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:23.498Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A32Z&sr=b&sp=r&sig=BTLOhkw4sfAqgpwETocRqx9Z%2FmxfItdfDMW4JoQ%2FjfA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:32.5168794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A32Z&sr=b&sp=r&sig=ZchCMXkDQFIel%2FG5te3vxAsTiDHJLaFHZZigxHCSQWQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:32.5166655Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A32Z&sr=b&sp=r&sig=%2Fsj7j4NoZcHxOl7%2B%2BhBR9kQOR%2BTeCLQXmpMVWmGoyD0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:32.5169982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A32Z&sr=b&sp=r&sig=HOsKOPNU5bfgcrfnVAm2pe3g7ieqzVRx6le3PnGY5Z4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:32.5170881Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A32Z&sr=b&sp=r&sig=Kg%2BFSPiary0OrLWczsgqHmY110IsNz%2BVuLeptE2gv2Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:32.5171754Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A32Z&se=2024-11-20T12%3A25%3A32Z&sr=c&sp=rl&sig=WV87%2FRNF9PL8poJWja%2FUn5zAvoWd%2FRyo%2BASh3SgQPGo%3D","expireDateTime":"2024-11-20T12:25:32.5172585Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4907' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:29 GMT + - Wed, 20 Nov 2024 11:25:32 GMT mise-correlation-id: - - e3f3d86b-ae17-47bb-8052-328109f858b7 + - 012f4af5-9726-4b00-95b7-10ac48126845 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101429Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gxw + - 20241120T112532Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000015et x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1755,31 +1748,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A34Z&sr=b&sp=r&sig=jypqdlvKGycbP6QP9QwXL1kvRjNE%2FCUFCxcuVpvgvSU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:34.8961088Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A34Z&sr=b&sp=r&sig=6VqWAZh6sJhNQxjECnZASjLtVXroOxPXJp1R%2FzSot3o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:34.8956432Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A34Z&sr=b&sp=r&sig=ZdjdRbHr108gpk%2BQsUUrPXEtB3SWUuNEf8pTxC3lb4I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:34.8962345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A34Z&sr=b&sp=r&sig=cHw5jVTeOsxpa1oCWxZSWXEPTJOUjtTkFRHkdDvF1BA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:34.8963927Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A34Z&sr=b&sp=r&sig=Yde4iqLB%2F0v%2BOlgyHLLAFFXG171hulmjn2C%2BpEViZpk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:34.8965733Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A34Z&se=2024-11-06T11%3A14%3A34Z&sr=c&sp=rl&sig=DVTi%2FbM1y%2BtDUUrGwcnkskkrikDFGcunD9OjOH%2B8xrE%3D","expireDateTime":"2024-11-06T11:14:34.8967374Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A37Z&sr=b&sp=r&sig=D%2FvAb4vUhQpx3f6%2FxiOwMPzzYtKnF6y%2ByzkSOIqDI04%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:37.6489721Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A37Z&sr=b&sp=r&sig=DcniLdXfJANdGcqWp2xyTv7JdD506ei9ezPTHrimXdM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:37.6487118Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A37Z&sr=b&sp=r&sig=y5x5NaKdoc2FmtbrQFcW30T7siHSfoWjcrrCDMXX5Zw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:37.6490665Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A37Z&sr=b&sp=r&sig=dnuxkzdgPaF17TH%2BezxV59BsnFcySRfcDFuuXO1ldio%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:37.6491611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A37Z&sr=b&sp=r&sig=3HrjWQYIODMJm4BEOs4tkrlQ%2Boc8juGR1HDA6XhGWD8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:37.6492542Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A37Z&se=2024-11-20T12%3A25%3A37Z&sr=c&sp=rl&sig=O%2BZ9%2FdWUyIcJG19fDOdmzs%2B3IkIa1E7I0ruSKfQbPyM%3D","expireDateTime":"2024-11-20T12:25:37.6493458Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4899' + - '4999' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:34 GMT + - Wed, 20 Nov 2024 11:25:37 GMT mise-correlation-id: - - 93302612-7e30-4761-b2ff-70869cbd57ec + - a5152b78-81db-4e39-b07b-b7a9b0e6c4e7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101434Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h0g + - 20241120T112537Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000015mp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1797,31 +1791,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A40Z&sr=b&sp=r&sig=KLsotJ8Bk%2BQXzFJa4DqYix%2BXbvD8cfCbFCGKsWReyjo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:40.3189832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A40Z&sr=b&sp=r&sig=AJIa0LF62b8xOIVU%2BB5zgmMLnRgRie%2Foxts9PQ%2BkpfU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:40.318733Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A40Z&sr=b&sp=r&sig=%2BCAKyGt0jNtgV9T30z7ElSgk4h6i%2BVpGpB0OOnKOA6g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:40.3190558Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A40Z&sr=b&sp=r&sig=tybA8jjw0T2pNkwnyA3IhJIxfgrhTroBv%2FYuq8sxhp4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:40.3191374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A40Z&sr=b&sp=r&sig=rPsgFDKmm7uUNO6mGz0zW64tWjaTD3M1ycYRae5f8G0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:40.319207Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A40Z&se=2024-11-06T11%3A14%3A40Z&sr=c&sp=rl&sig=1hkzZcE%2FzhRKdp%2FFz1Rs6f0ii4Kpki6rJ831bUDpivE%3D","expireDateTime":"2024-11-06T11:14:40.3192765Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A42Z&sr=b&sp=r&sig=cTgRkGkBpPCX1%2B5MQbqeo3qy8Tge4x6y2ga0CIvAQR0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:42.7719885Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A42Z&sr=b&sp=r&sig=ENnwTvgpuZV%2FxFs6Z72m9WWXH5XerAxKqEUMfUZNTlE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:42.7716739Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A42Z&sr=b&sp=r&sig=DdWWIqS30UgUIjcZMFquRR%2Bw5hl3J%2BvWIamYHPUwK7A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:42.7720542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A42Z&sr=b&sp=r&sig=qk4qhY80hd4ELP9tgD25erNSmy4Vm5VBWtHWWyhUXlk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:42.7721066Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A42Z&sr=b&sp=r&sig=%2FTVfTe%2FhZMdComfW0oxUzjnUn4cas0tifFdJ8tSiPPY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:42.7721552Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A42Z&se=2024-11-20T12%3A25%3A42Z&sr=c&sp=rl&sig=%2BNn0tOQgMEkC7WjDpzablmLPBOGOF8apl1pa1%2B0KToQ%3D","expireDateTime":"2024-11-20T12:25:42.7722015Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4899' + - '4999' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:40 GMT + - Wed, 20 Nov 2024 11:25:42 GMT mise-correlation-id: - - 4d46a450-7300-408e-97cf-ed7d149874f4 + - 950831d1-4da2-45c7-986c-9f5a9783aa48 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101440Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h37 + - 20241120T112542Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000015s9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1839,31 +1834,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A45Z&sr=b&sp=r&sig=SLHbLHYBUiJVA97Xzw5vPMCJhXdfpV%2F4ME3tgNuqz9w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:45.6974747Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A45Z&sr=b&sp=r&sig=O%2FSVnSEQs16CTAp4l8uOyxHRea9xWPQi9HY1w8wVuI0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:45.6972537Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A45Z&sr=b&sp=r&sig=frwR2PQreU%2FOgBWY8pw8Y5G3MDUoX5GPsN5hwCirjKs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:45.6975684Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A45Z&sr=b&sp=r&sig=iz6qNwLisAS0%2FHMFjqYrMHDQstqejztRYK5kvKk%2Ffwc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:45.6976664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A45Z&sr=b&sp=r&sig=PsvenNskVp6Z%2F2ae4UJAWsvoZKV9GGBAvQyPa0WNIcY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:45.6977679Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A45Z&se=2024-11-06T11%3A14%3A45Z&sr=c&sp=rl&sig=%2B4SlP5zYSZSig9UDyklTMzT3oKT%2BV4Pj4onhlHM1O8s%3D","expireDateTime":"2024-11-06T11:14:45.6978642Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A47Z&sr=b&sp=r&sig=97GZF5D3LytR31tXumV0FwI9b7q0QX8Sbv%2B3TXiz13s%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:47.935083Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A47Z&sr=b&sp=r&sig=KtCIHe6YQIdbJUkWCRk0vONmiOW%2F6k3JxRe9gs%2B%2Fqgs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:47.9340964Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A47Z&sr=b&sp=r&sig=PSL3Tz0z%2Fiv%2FdXujM2qW4hEZaERoK85lkMP9G5sLBPg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:47.9353252Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A47Z&sr=b&sp=r&sig=9LrLnyoM0Zdo3XggSBAe3cYBw8c2qNV1oLmKQ0i7hH8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:47.9355594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A47Z&sr=b&sp=r&sig=LIeMIVpmjPVHDv80jX%2Bv2beXwqJdGok%2BNjjncICdI6Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:47.9357792Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A47Z&se=2024-11-20T12%3A25%3A47Z&sr=c&sp=rl&sig=rszFRSlKrOOapzss61jcQW7ivgrzoZfPZkUxj0eGQ8I%3D","expireDateTime":"2024-11-20T12:25:47.9360077Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4897' + - '4998' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:45 GMT + - Wed, 20 Nov 2024 11:25:47 GMT mise-correlation-id: - - dfc31635-85c3-4a61-b10e-7c23e6916af9 + - ea735f83-8a64-43c3-be0e-55fa1923dc92 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101445Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h5r + - 20241120T112547Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000015wy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,31 +1877,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A51Z&sr=b&sp=r&sig=yIWkD877sSdq2TSPkYkJ9t0E2vOKsykCNtBeD8zwsKs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:51.2412859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A51Z&sr=b&sp=r&sig=nlMp2rcL8OdrOeYaXpCgNtfj1yT1T43uJWMJBsftaFQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:51.2409653Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A51Z&sr=b&sp=r&sig=xlBRwzb%2FtXAK7g7N9Hc1YMkt71e%2BFtYxQyjyG5h5RAo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:51.2413905Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A51Z&sr=b&sp=r&sig=eC00AzUvFJPaNambVStNFReovKMbR7xBJ%2BUzoS6eD%2B4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:51.2415032Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A51Z&sr=b&sp=r&sig=MWm%2BEuoh%2FWOrzzsACxyNvX3XXc9LU93aIJ%2BNzhevfNk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:51.2416076Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A51Z&se=2024-11-06T11%3A14%3A51Z&sr=c&sp=rl&sig=%2FhP5C4o8VLOTTg1y4GrmCq18Vd6yaciusvteBLGEX4Q%3D","expireDateTime":"2024-11-06T11:14:51.2417095Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A53Z&sr=b&sp=r&sig=OXF5uB7Eot%2B5U6oajAlLSKaWPb7mGjGT1i3qLZh3TPA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:53.0628922Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A53Z&sr=b&sp=r&sig=yoAkACJPEF1uemn9vyd61EaG0KEfEQ9VPkqmM1wQWFA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:53.0624298Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A53Z&sr=b&sp=r&sig=OlX%2FfE7ldzQD4orx5wNNOs%2BfVcIy6uH7rUbAjIeW38s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:53.0631565Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A53Z&sr=b&sp=r&sig=p1fDjF%2B7de35ji8vp4bVFA%2BJvSFbHhV%2BMSL3W8SzAxQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:53.0636593Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A53Z&sr=b&sp=r&sig=wX9UxYQIPj3G274XboUOXnvM3mlUyoyMamYH6PV86Lg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:53.0638955Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A53Z&se=2024-11-20T12%3A25%3A53Z&sr=c&sp=rl&sig=0d%2BP027KEiEmYdvhvOzhRDCDqUOYCRf9radDiBCwebA%3D","expireDateTime":"2024-11-20T12:25:53.064066Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4897' + - '4996' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:51 GMT + - Wed, 20 Nov 2024 11:25:53 GMT mise-correlation-id: - - f4363172-9772-4e69-bd36-f22b27c26957 + - f020b15c-ff48-44fa-b199-943db855c900 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101451Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h7v + - 20241120T112552Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg000000001625 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1923,31 +1920,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A56Z&sr=b&sp=r&sig=t%2FlaQ7nwVfCht0NwsRZtl4lVqDLPcUN7zWRZMMNPbgc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:56.6508527Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A56Z&sr=b&sp=r&sig=S7R7wVOjVC6el4NVXMiYJ0Ztr72cTEwy0LzvAFjcZaI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:56.6505705Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A56Z&sr=b&sp=r&sig=78lodlXrt2wXrw2wtcHqiKapCNm%2BXg09ouepU64a0Ck%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:56.6509446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A56Z&sr=b&sp=r&sig=QAvdYIiJ9J7KoVks%2F1LA1TirhJPlOLRKMztzr%2BgLz5U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:56.6510444Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A56Z&sr=b&sp=r&sig=%2FWjeglVxaap2Hm17D4PeJ5FK0nsEGHXe0oKoEcykMd0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:56.6511367Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A56Z&se=2024-11-06T11%3A14%3A56Z&sr=c&sp=rl&sig=IU0Fjl3c8QpYoyc1L1BSjn1KKIdbbUdtCQNxiEx9SfA%3D","expireDateTime":"2024-11-06T11:14:56.6512304Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A58Z&sr=b&sp=r&sig=h2J9dJhlfmt5FBlecKYkw%2F4MrVGqKC0ZPYMqSF5M27Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:58.1848666Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A58Z&sr=b&sp=r&sig=F4jhpzwD31OMczKHfa8XmOe6k7TXFvW%2BH1g5FqoDB9Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:58.1845906Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A58Z&sr=b&sp=r&sig=X8lziFjPzk960fXMbRtCyEns%2BbqCB60eoYr0d5JqPHY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:58.1849345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A58Z&sr=b&sp=r&sig=L8BlR59oYnLlI4LXJ1VOH%2BXpQF5%2BM1G8tVmGazKJq8g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:58.1850094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A58Z&sr=b&sp=r&sig=ZJm9pOJqhyQLAdi9S67aNvm98W14HSMEXoNDVSMuJKI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:58.1851679Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A58Z&se=2024-11-20T12%3A25%3A58Z&sr=c&sp=rl&sig=%2BJf9h5EhiHAwXhgNFQXiycpXL0Gn2g5AM%2F%2BIQrlIXRo%3D","expireDateTime":"2024-11-20T12:25:58.1854364Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4891' + - '4999' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:56 GMT + - Wed, 20 Nov 2024 11:25:58 GMT mise-correlation-id: - - 032faa34-b672-413f-a95d-aadf1b07d91b + - 39ce9b78-e76f-492d-9b11-32ca4f154809 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101456Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h8h + - 20241120T112558Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg000000001670 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1965,31 +1963,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A02Z&sr=b&sp=r&sig=wRCorwi4rski2vQACZ5bcqCScSmA60c47mgDk9be%2F1M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:02.0344618Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A02Z&sr=b&sp=r&sig=8Hb2ODBfPGmhJuN06MgwmzCPayKfAVzIFHGbbGBeEvo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:02.0342059Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A02Z&sr=b&sp=r&sig=x8qpxI255bCa%2Bas%2Fe3zsbHsL3e5x2pAnnK7ew6a%2FqWk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:02.0345501Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A02Z&sr=b&sp=r&sig=tY1zflKNFbvY4zXa3kB5lh%2ByXF%2BNZmPBjOsHeQ5EvSM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:02.0346942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A02Z&sr=b&sp=r&sig=Zqv5hsYX9szQnqYhubj1D4W6lFAvOFtvMxdvCRuPxMM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:02.0347825Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A02Z&se=2024-11-06T11%3A15%3A02Z&sr=c&sp=rl&sig=D3dlYTjJT1bh6bh0%2F3YQ3EyIC7y8TCPBdXN0oW%2BrweM%3D","expireDateTime":"2024-11-06T11:15:02.0348603Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A03Z&sr=b&sp=r&sig=97%2FXKLdE5A6tUIKBv6NqKazBDfyC7G5nXhsUL821hVk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:03.3204946Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A03Z&sr=b&sp=r&sig=29%2B5ohwyD5KOuNUKJs1Z4ElMU34UTRFut%2BfVFwyctGg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:03.3197881Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A03Z&sr=b&sp=r&sig=ET1XqnpaNXReK3TVM1912UfQpXXsqjlKXeL%2F%2B2Qs2hI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:03.3207113Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A03Z&sr=b&sp=r&sig=RB2w%2BbKxiSumSBTMqFGvdiEEXvVcUHRu6kG%2Bfq8Y1do%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:03.3209109Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A03Z&sr=b&sp=r&sig=2iFHOG6OTKq2QMhngKn4JcywBGEgD7XawPOymOyWcxI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:03.3211326Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A03Z&se=2024-11-20T12%3A26%3A03Z&sr=c&sp=rl&sig=fKrvZGtvdXpZI3gaqswxFP5HgB6dwZYgj4CEX6SJB0I%3D","expireDateTime":"2024-11-20T12:26:03.3213359Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4897' + - '4997' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:02 GMT + - Wed, 20 Nov 2024 11:26:03 GMT mise-correlation-id: - - 61c7c68e-9a13-49cb-94f6-77da4534ea81 + - 33ac4ed0-42ae-40ee-b695-9ad1e699d751 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101501Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h9k + - 20241120T112603Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000016b7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2007,31 +2006,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A07Z&sr=b&sp=r&sig=1NGxYO8uEMmVX1ktk9RV6YEtmEys3pfmB0045StFOgg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:07.399152Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A07Z&sr=b&sp=r&sig=HmBpwdjhKdjcrnnmXjaOffQkA8rH0226sRt3zTl9YaE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:07.3987675Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A07Z&sr=b&sp=r&sig=1Hp5YrkZpJWqdTxgzqy2xj40fx%2F1MOUWA2VJ0sBTBto%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:07.3992737Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A07Z&sr=b&sp=r&sig=xqDcniBeOISzmxpffZCWYqpskv2BbjSvCKqGlPI0J4w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:07.3995032Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A07Z&sr=b&sp=r&sig=yelbIHRnAJcAFes7WK4JQfGiNq88QRrlhyX9XWSwiFM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:07.3996251Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A07Z&se=2024-11-06T11%3A15%3A07Z&sr=c&sp=rl&sig=xYDY8aaFsTODfbwzCWuuAOb0SgVfuVWyGxtQ9ouLva8%3D","expireDateTime":"2024-11-06T11:15:07.399773Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A08Z&sr=b&sp=r&sig=ah4PO1PqhfKMg5ABIvW6iUTj6YKuHeXbr%2BGzD%2Ba4bbs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:08.4455198Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A08Z&sr=b&sp=r&sig=2cY42ozohWfzm2vO23dMv1xCFXGDrBdjZCzfo6EL28c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:08.445161Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A08Z&sr=b&sp=r&sig=1UYC6ivvcQePiKSDXc8X9tMAz%2FCmUqpGGx0xjaI0jRU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:08.445611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A08Z&sr=b&sp=r&sig=IOGQhPTxG0bQRJeRwOBhywhaSVM8gczSqN3Fh866ihw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:08.4457002Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A08Z&sr=b&sp=r&sig=bFku5fqfco2BRDWW8pOEwNRmgKyFMd01ZVLuuSyUeuY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:08.445788Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A08Z&se=2024-11-20T12%3A26%3A08Z&sr=c&sp=rl&sig=kSSiyWXeZxjg18hiCG3lXBlcUP24na8xcrzmOzeZLwQ%3D","expireDateTime":"2024-11-20T12:26:08.4458724Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4881' + - '4986' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:07 GMT + - Wed, 20 Nov 2024 11:26:08 GMT mise-correlation-id: - - 3d3187d9-c913-4ed2-941a-029d65ef0340 + - 302ac9e2-27f3-44e3-bbe4-dc1f85332aa4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101507Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hb0 + - 20241120T112608Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000016fh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2049,31 +2049,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=%2FqIZonn4vMs4ORkABBCBz3tiv3XhbUAm27ALd%2BuhV8U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.7886228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=3KIHWKjfTqZHPnCR7G5oq0cnmkMIq0gmGMmUyFpFyqw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:12.788124Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=pPlpooiWhENGAMgeYMQmi4IgWMk%2FTTlc0WPyaXH42do%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.788865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=cBh7wtSNVLgKkYL9qo2lpHbGmdZepTXKX0CI5HdRImc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.7890492Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=259sOkQ1r2sZ2UfZOEMMqLS1ctSmCPq71ZSRyPw9c%2Fk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.7892382Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A12Z&se=2024-11-06T11%3A15%3A12Z&sr=c&sp=rl&sig=AtQCk5q0TjsOO%2FUcKI970WUsxz%2BouXOTBDKyYcnydcM%3D","expireDateTime":"2024-11-06T11:15:12.789452Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A13Z&sr=b&sp=r&sig=W8SEM6NMl2JM%2FGVxND50%2BIFryDVgEslpvF8vURkGtEg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:13.5660963Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A13Z&sr=b&sp=r&sig=%2FTdPBm7kE9jdtUs7dzSXx5G39sH%2FKI1Ftfc5n36s2cI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:13.5657756Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A13Z&sr=b&sp=r&sig=GL3nFQ6kudexOcRVraMuEesl2kphRlUdLbOogz3ZVLA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:13.566198Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A13Z&sr=b&sp=r&sig=yr3Qzr8gIr0Rd1I8PAqTT1B608PX%2F4mk8Ge83v18kAo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:13.5662956Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A13Z&sr=b&sp=r&sig=3JtusZXtNmk9jnXqPPRwVAK7hbeuTXD5TDSrYVNXxmI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:13.5663954Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A13Z&se=2024-11-20T12%3A26%3A13Z&sr=c&sp=rl&sig=Bkv%2BiC9eE%2BNL%2BTirPFqHnbOW4ZWgDA8u11LBVIh12zs%3D","expireDateTime":"2024-11-20T12:26:13.566485Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4890' + - '4997' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:12 GMT + - Wed, 20 Nov 2024 11:26:13 GMT mise-correlation-id: - - 02fedc76-4967-459f-a91b-dc5a0e64404b + - e950f0d0-2e5f-42f2-b1b6-f2e82092649a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101512Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hcu + - 20241120T112613Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000016mk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2091,31 +2092,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A18Z&sr=b&sp=r&sig=XluoPqTf1XtmekyDtXu8TvOw7UOlN1Yp8Ct6uM7nCTk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:18.1867653Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A18Z&sr=b&sp=r&sig=MoOGkMoDvGrH%2F5M4%2FEcSQpmcrz1X8kEM27jfAvSLH%2Bw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:18.1863126Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A18Z&sr=b&sp=r&sig=MdUXSkMH5hvUUwpNre9myQjFdWN1ZcGzjjBXJijrLBo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:18.1870596Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A18Z&sr=b&sp=r&sig=ZS99e1gOCJBLmag%2FVFHkYHPK7M%2FifCPmrOaZX3%2Fpt6k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:18.1872634Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A18Z&sr=b&sp=r&sig=vKrN6jmkoGoYXVTdls9246MU8%2BeM24LXRKG9PWcXZnY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:18.1874686Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A18Z&se=2024-11-06T11%3A15%3A18Z&sr=c&sp=rl&sig=NVZvpcvjVqVR6xB3QuV1pa2%2F4yvM41p%2Fe4HYkhByE%2FE%3D","expireDateTime":"2024-11-06T11:15:18.1876653Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A18Z&sr=b&sp=r&sig=nrqCXsq0VRqmC3H85EbDZfeTXiFmiTEJyGvLyyBkLIM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:18.6909129Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A18Z&sr=b&sp=r&sig=0t3uCRDgSEE4VAks3Y25MMVX%2FtmJbW5nl4oWvfdsBpQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:18.6905627Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A18Z&sr=b&sp=r&sig=JxHZPJdNt9AtQCbn6qWmyOqmd%2BKfBmMz1mLvCeyjugE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:18.6910922Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A18Z&sr=b&sp=r&sig=WpvW%2BQW7WXq0MZwdsBnWWirvrSV2Xf1YFaxkEAGJCvw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:18.6912672Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A18Z&sr=b&sp=r&sig=iHLEbEGBaAGgA0Xl7ogjiG10V2vswciYiXU6YTmVjf4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:18.6914259Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A18Z&se=2024-11-20T12%3A26%3A18Z&sr=c&sp=rl&sig=2cNzCe3ema3DgUfWllW%2Bz82l1%2BBF7FRGl2ppqR1c6xs%3D","expireDateTime":"2024-11-20T12:26:18.6916605Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '4993' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:18 GMT + - Wed, 20 Nov 2024 11:26:18 GMT mise-correlation-id: - - e1417e5b-6739-4417-b97f-8372cd05d57e + - 4117dadc-5d23-4797-9f11-209bd71a315f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101517Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hep + - 20241120T112618Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000016sb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2133,31 +2135,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A23Z&sr=b&sp=r&sig=vo0qru8QCAuUr%2F%2FzeN3M1zI9hceAsfwCHvVkRbsV234%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:23.5824199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A23Z&sr=b&sp=r&sig=9E7TlF7380vCLiChtEn0rw20svUotI1zd8urqGoAqe8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:23.5820677Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A23Z&sr=b&sp=r&sig=IycBtEejAksLOgzwAL5%2BEb9MnqeGsk2rWkvI8SwFzV0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:23.5826159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A23Z&sr=b&sp=r&sig=OfHfNIAzYQiqZo1lFuiedJPiahwyze6aWaqBQtGl%2BNI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:23.5828204Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A23Z&sr=b&sp=r&sig=VPAz8vPQrf5uw%2Fb4TjRKtT4oXx%2FWSq2al%2FLaRYEAIHk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:23.5830175Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A23Z&se=2024-11-06T11%3A15%3A23Z&sr=c&sp=rl&sig=5l4PqabXTL4pHHAUXyJ4Y24bygwQEKt9hYpisSI0AP0%3D","expireDateTime":"2024-11-06T11:15:23.5831581Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A23Z&sr=b&sp=r&sig=UkCSagLAGSgfUfsb3DCQusNkAePXTGpe%2F8Rt3CLDUbk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:23.8346567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A23Z&sr=b&sp=r&sig=1S5ffpQe2Af52U1TEmxgxUfPoE%2FARa8SsE49vRoHDi4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:23.8343877Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A23Z&sr=b&sp=r&sig=T6NkNJIdqKbRav9nbT%2BDWGKXQZZLAVSIcfoc7Kh2XDs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:23.8347215Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A23Z&sr=b&sp=r&sig=%2BvT9juNna%2BF5H7FwpH0eDikZBi5By0%2F3TBqD85MnjW0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:23.8347934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A23Z&sr=b&sp=r&sig=rwiVQkgdctKv7wiE2rmRtJ2yLC0jnPo3KHAu49Wd%2B0Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:23.8348581Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A30Z&ske=2024-11-21T20%3A24%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A23Z&se=2024-11-20T12%3A26%3A23Z&sr=c&sp=rl&sig=KmghcOTlBbX3EUyuj77EnjP0ExdrJ7xXrpfZ2fCB21k%3D","expireDateTime":"2024-11-20T12:26:23.8349134Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4895' + - '4997' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:23 GMT + - Wed, 20 Nov 2024 11:26:23 GMT mise-correlation-id: - - f17d8406-0785-4c44-92db-dd2d8a9c648b + - 275b3537-fb69-4e2e-b0d7-960c3222ca36 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101523Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hgn + - 20241120T112623Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000016wr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2175,31 +2178,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A29Z&sr=b&sp=r&sig=4sHZFoMfReSMW4%2BzLHvC33yaEAkf%2BjS8rkHg83KLSCI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:29.0203629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A29Z&sr=b&sp=r&sig=qs8E5usikjgSCAfJmZj%2F2vaXV1h2zYBdJN7zsLf6vuk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:29.0198962Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A29Z&sr=b&sp=r&sig=DtF9IgQWxjFjBlcdFuv4tFDowhxlf31spFN2cOsQI7I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:29.0204734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A29Z&sr=b&sp=r&sig=fU%2BzY96Jqo4RhIuFQkxQgOM%2FnM7T3pcyxKTHhH0d50o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:29.0205739Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A29Z&sr=b&sp=r&sig=%2BzTbDNJOcXSzVRrlI4%2FPaUSGYpgiKUFtt2OGtYpJX6w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:29.0206637Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A29Z&se=2024-11-06T11%3A15%3A29Z&sr=c&sp=rl&sig=L7u4R7DHQnifuhgnpcvIbccuM3%2F0dT8Qoit8pQPzm8g%3D","expireDateTime":"2024-11-06T11:15:29.0207518Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A28Z&sr=b&sp=r&sig=N%2F%2B68tpgZ30IxfJjRXQ%2FOTZHTIy7IJJ6TYRU%2FVYuDzk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:28.968988Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A28Z&sr=b&sp=r&sig=ScV0uFbsrnSEpRKVVJ5AWW92%2FcNbJyziVKATvvAwGHM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:28.9686077Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A28Z&sr=b&sp=r&sig=SC2ERcW96wnoQDF3YOmmgABRt9f9LAKwM42iu1FiXxI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:28.969122Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A28Z&sr=b&sp=r&sig=quYJ%2BV6DFJMhIBDMg%2BAPQ39i4rkQF4M%2Fv1NYqB%2BcQKM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:28.9692655Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A28Z&sr=b&sp=r&sig=S85V15mjH1RNB1ztqdXDHYgJlq05zh9UpLX6lGHcHEo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:28.9694042Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A28Z&se=2024-11-20T12%3A26%3A28Z&sr=c&sp=rl&sig=O4nuI1%2FFsdiDqbJGYB%2F%2F5Xy2%2FrsKdZlFkjfdNNPqW1Y%3D","expireDateTime":"2024-11-20T12:26:28.9695423Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4897' + - '5007' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:29 GMT + - Wed, 20 Nov 2024 11:26:28 GMT mise-correlation-id: - - 62ac0296-33c3-40ed-8d26-88423ec5f3b2 + - 25bf703f-a870-4eab-a81f-3e06879f3c33 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101528Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hka + - 20241120T112628Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg00000000171g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2217,31 +2221,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A34Z&sr=b&sp=r&sig=a66HDAdDc3gC5BU7wfeF3X%2BsEAq5%2B4snj6uInK75Thk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:34.4291037Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A34Z&sr=b&sp=r&sig=g4Oq4y3axikk3mN2a7kcs%2BRrOqIePHDBSNeeydRw788%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:34.4287708Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A34Z&sr=b&sp=r&sig=%2BKIpOHigbX9e873VYxkZUlCvG3jH7woqBylIZ8iezN8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:34.4292333Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A34Z&sr=b&sp=r&sig=d6PAwUY3oeMYh%2B7LQ1%2FiejZ61YfbjVqhDo0Onu6%2Bslg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:34.4293423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A34Z&sr=b&sp=r&sig=G0egYtMaAY6UV55YmZ%2BZ8D1KW8pyx3I4bd8hFAOSVIk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:34.4294488Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A34Z&se=2024-11-06T11%3A15%3A34Z&sr=c&sp=rl&sig=rQG%2FazURUm1qy%2FPHHFDBvYZurbi%2Fodz9L3uY7ouvblA%3D","expireDateTime":"2024-11-06T11:15:34.4295549Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A34Z&sr=b&sp=r&sig=h5Xg%2BPhDVNlS7MQSpGcZyNAkEvRZ500L8i8%2BV4eRIq0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:34.1036348Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A34Z&sr=b&sp=r&sig=33pmIhkLYSiC8ylKO0AAGbiwx8%2FgApOHaeocb3Qllug%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:34.1032579Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A34Z&sr=b&sp=r&sig=nWrRkQtjSo90lBGx2oad1jF0VeewUPd6KhrxPoyMvNI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:34.1037708Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A34Z&sr=b&sp=r&sig=S8BpC%2FAoRbG9aYbJIH%2FgIGrVNKf9P%2FHfVsOXviHpnJU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:34.1039075Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A34Z&sr=b&sp=r&sig=7MtsM89h0geLMmaQLY7nYdBoDNFIXyxNc5w7nZmNakU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:34.1040403Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A34Z&se=2024-11-20T12%3A26%3A34Z&sr=c&sp=rl&sig=lZkQe6xaT5rxzKJE4Ac6rxM0Yu%2FFJkfkNcOhtn7HgZc%3D","expireDateTime":"2024-11-20T12:26:34.1041971Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4903' + - '4997' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:34 GMT + - Wed, 20 Nov 2024 11:26:34 GMT mise-correlation-id: - - a2226756-1439-4f19-840f-2c74214bebd0 + - bf944a0b-f9dd-4c27-8d75-a5754059db11 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101534Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hn8 + - 20241120T112634Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg00000000175n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2259,31 +2264,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=wftGzPfis3xzbYgeXc17ru5EfM32AUn8FFxQsscyh7U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.8079236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=4TNGIeWZawgrn8l3OcKZNi6VpPWS6nvrg2OCWnVh72A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:39.8076493Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=TrBk9INmkAR0o8wQlcSgyT7j1Gzssvj%2B7myPWcY9HaM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.8080085Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=pdV3e1DRuhhBeW%2BfF7zjW6zKNM7GX3ndq5LJCMiWyqY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.8080939Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=2%2FFpW%2Bl9BDwCGOO5LyhhbENWDZKGCQMgxvxitq5FF8M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.8081819Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A39Z&se=2024-11-06T11%3A15%3A39Z&sr=c&sp=rl&sig=EuKcEqtghyzge6TRLJXEoN1%2Fxf4PwfBrjFJ3ic3PltA%3D","expireDateTime":"2024-11-06T11:15:39.8082687Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A39Z&sr=b&sp=r&sig=o7FpfSHAW6bgPxjt5u5Nv0BqthXtcbWiQZGxFS5d66w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:39.2411601Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A39Z&sr=b&sp=r&sig=zQ0fExlMKG2iSDir0PFCUhzUEUHQA%2F8u0bEiwA1rto4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:39.2408008Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A39Z&sr=b&sp=r&sig=2WC2yq7Ton5VxiY5lk2JRI2NGiG%2BtFBfa1xM30ZNC1g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:39.2412971Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A39Z&sr=b&sp=r&sig=z3xpujXrpBh%2FRcMl0DeeSerjKhhkqtEuHWivDXeQyco%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:39.241436Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A39Z&sr=b&sp=r&sig=4K68I3wenAf4sA8Iz%2Batma1KG58sjr3I9%2BYAfoHcCXE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:39.2415764Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A39Z&se=2024-11-20T12%3A26%3A39Z&sr=c&sp=rl&sig=8%2BwcEoSLM7oaJWNrw2iqLRWeJw1fAzRxUJhCYdlaEr4%3D","expireDateTime":"2024-11-20T12:26:39.2417191Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4891' + - '4994' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:39 GMT + - Wed, 20 Nov 2024 11:26:39 GMT mise-correlation-id: - - 9c5a7052-02e1-4010-acea-f19b13f24e6e + - 1f6b40b7-0287-4d39-9d50-f6667b2526d8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101539Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hq2 + - 20241120T112639Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000017am x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2301,31 +2307,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A45Z&sr=b&sp=r&sig=l7svlDKRKJ92VX2NVO05zCRYS3dYdrEmkUBaiVHYIok%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:45.171985Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A45Z&sr=b&sp=r&sig=EvSNZeHFY9tadKgRt0CM3V12K9p0kNV5qOmVks%2FedbA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:45.1717577Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A45Z&sr=b&sp=r&sig=ecdD%2BObcg7P3RTxveVgekK50uPtLScbauSeQlb4am78%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:45.1720495Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A45Z&sr=b&sp=r&sig=N4bIAj9Lzd0Tpqsc55MbWMWz2E6FAZ2n9qPlIVu6JZ0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:45.1721128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A45Z&sr=b&sp=r&sig=cVDqaCbwI1P4%2BCHhpLG9DmMxOkYzXlABEORBNc6MbFI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:45.1721754Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A45Z&se=2024-11-06T11%3A15%3A45Z&sr=c&sp=rl&sig=fhpRizltpcGfuDJuaLyDo9c0PFKOcY45nUV%2FQs9wzu8%3D","expireDateTime":"2024-11-06T11:15:45.1722361Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A44Z&sr=b&sp=r&sig=FTuS6IrxGxP8HHZjyR6SvF9vbWQCWkDYrmONeDqGLMU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:44.3754642Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A44Z&sr=b&sp=r&sig=%2FULsk2rbOEpW1euZ9TkKldj3akwfhhWR1w2bdyJHvSg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:44.3750333Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A44Z&sr=b&sp=r&sig=m3mSGZ39HDPi3Qt9nMbxDRXP5Hqn1YhjmgcVUfsiJA8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:44.3756047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A44Z&sr=b&sp=r&sig=SmGC1JC0yIOipUqip5%2FFtqAeOjOb4ghjLg6a1p1VQKU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:44.3757502Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A44Z&sr=b&sp=r&sig=Tcuz%2B2HSGmDuobZMb%2BBRNixf%2FIbfwnPz8YLIDNvyWqk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:44.3758928Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A44Z&se=2024-11-20T12%3A26%3A44Z&sr=c&sp=rl&sig=1x0W4EEbl7%2BxtcB16rAbUaeGKNql4L%2BG3PnHfDajHn0%3D","expireDateTime":"2024-11-20T12:26:44.3760443Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4888' + - '4997' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:45 GMT + - Wed, 20 Nov 2024 11:26:44 GMT mise-correlation-id: - - aeafd168-da9a-4354-997a-1eae6b068c46 + - 4b4e3047-363e-47bf-90f9-bcd1e819af3f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101544Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hs3 + - 20241120T112644Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000017ft x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2343,31 +2350,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A50Z&sr=b&sp=r&sig=f%2BEiMg2KQK4R88CXEF9ulcqmyBn15CSUCL6RySOuOBk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:50.561945Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A50Z&sr=b&sp=r&sig=DdafK%2BIKxhG%2F%2FoRd7q4iVhOblDQ4jnY46Cn%2FPNNeu88%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:50.5616602Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A50Z&sr=b&sp=r&sig=v%2FIgLcKTfV4ahrDAlksQYi7FP1EP3NCE15wUatLOKIg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:50.5620412Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A50Z&sr=b&sp=r&sig=pTqDmcwa4fzIZv9GH%2BndfjfddJhXBfQroE4D%2F8K5zk4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:50.5621371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A50Z&sr=b&sp=r&sig=AOeeI6uXjwFBLf4tlpV1bxJWvoMb6AdLrGMTkRT3CUI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:50.562233Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A50Z&se=2024-11-06T11%3A15%3A50Z&sr=c&sp=rl&sig=nrCwfJWyCDbsTHDOEt3wNFT4IQwohS8uG5E7t%2B2TEmQ%3D","expireDateTime":"2024-11-06T11:15:50.5623244Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A49Z&sr=b&sp=r&sig=OqC2OVOFHASO9Sxa5NmLAB9hlKZn7gwRV3X5Xklh58c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:49.509691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A49Z&sr=b&sp=r&sig=TiqIjrEAPZnJC4ZNJ3fUwjWiELPCVD9zbmJA47Dmqjw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:49.5092586Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A49Z&sr=b&sp=r&sig=CEonbgCz1fZbX%2B1EYsZI02CHUIJZOkS6wqmRkDdMNM4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:49.5098705Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A49Z&sr=b&sp=r&sig=fkctV6GcjaNwECIZWBl6bYYPZGzinQhmKA%2B2Q7R0X8M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:49.5100517Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A49Z&sr=b&sp=r&sig=5zl0pqydvrashzf0mWo6suJwTWw%2FRNyrIeANJFylkFI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:49.510232Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A49Z&se=2024-11-20T12%3A26%3A49Z&sr=c&sp=rl&sig=8PkIiakq6XyI0foRWElSATizRBEaKuYhKRBoltIDpMI%3D","expireDateTime":"2024-11-20T12:26:49.5104137Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4897' + - '4987' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:50 GMT + - Wed, 20 Nov 2024 11:26:49 GMT mise-correlation-id: - - 60eec4a7-5f8f-4bb8-b65c-c3ee740c1153 + - 085a2349-2e43-4f86-b4d0-f214626c1256 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101550Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hu2 + - 20241120T112649Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000017nq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2385,31 +2393,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=Q8zZefj3GwgbvomRb6SKIIC%2BozuFIXbmHuWOKpeULzA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.9276866Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=nhYUSET0XBqh%2F60cZK%2FZbA3XhiAFWw4EKF01v9Y0HIg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:55.9272682Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=GHXN%2BWjA3O5AFngpcnTF2ymDz7z6uz0kMoLixLro960%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.9278625Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=JDEOvVGDqO%2FmXR%2BFJX0tr3kzZzj1%2B%2B9RXjgm4kC%2FJlc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.9280296Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=2ujXk6vKqdUCuFuEt%2FuAEzcuDlsIBj5biENAyoqBvyI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.9281994Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A55Z&se=2024-11-06T11%3A15%3A55Z&sr=c&sp=rl&sig=QlH0q3elbEvYRA3WWlS2SHbUK2ax459Ifkprus9JKtA%3D","expireDateTime":"2024-11-06T11:15:55.9283669Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A54Z&sr=b&sp=r&sig=PpmX2udeghbsrqPEcjPIiyHWVM0KvMXTsA4UCfb9LgQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:54.6324742Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A54Z&sr=b&sp=r&sig=AWhbQujvubm9u45JLUfrX%2BVwxotsUQOGzwHysEmwGY8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:54.6321495Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A54Z&sr=b&sp=r&sig=ByYJAUKKwR7QMGnwu6mMSDECoHjh2uraOb8v7iF%2F31s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:54.6325714Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A54Z&sr=b&sp=r&sig=CiKXsSDo%2BR4o6ehANAkLrk0JZur72Tl8dOtCAnZdypA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:54.6326701Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A54Z&sr=b&sp=r&sig=lx%2FZ8EfYuunr2aEFPR%2B4zpcYQsxZO6mb3PMXEQHRM7Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:54.6327683Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A26Z&ske=2024-11-21T01%3A24%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A54Z&se=2024-11-20T12%3A26%3A54Z&sr=c&sp=rl&sig=xUECzcdMQCV56KSjVJV0UOyInv4qE4UpNFPEp%2ByMbNc%3D","expireDateTime":"2024-11-20T12:26:54.6328746Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '4995' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:56 GMT + - Wed, 20 Nov 2024 11:26:54 GMT mise-correlation-id: - - d26ae92c-b1b3-46ab-818b-24fe2cc830db + - 5b93c332-e201-444c-a11d-20c6cb13cbd0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101555Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hvv + - 20241120T112654Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000017tg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2427,31 +2436,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A01Z&sr=b&sp=r&sig=p%2FSjdUvDt6ulNe3de6uIXsYxNxegKg49w0A0tZ1m8Sc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:01.3715261Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A01Z&sr=b&sp=r&sig=o2LDYx9F06e2GGhPc1rDBVdzcd2ZR65kTR6dORN0vKA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:01.3712981Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A01Z&sr=b&sp=r&sig=A9LJNdVPQ6tC0P3h8rDCxjoF0HVhBRIuc1Gm0hgBNcA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:01.3715945Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A01Z&sr=b&sp=r&sig=XCgvMh25bXc5Sq%2BLdNVeWsF%2FPJ3cTU9mnA6QI4JJg0k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:01.371735Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A01Z&sr=b&sp=r&sig=tjzjWbFpNmidRRPBqx%2F2YYYncvvZCA9atRFxgSy5I7I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:01.3718023Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A01Z&se=2024-11-06T11%3A16%3A01Z&sr=c&sp=rl&sig=7m9HAflTqU9IfNuXKQkhAcL40l4sUXKe%2FzKrOBW9qDE%3D","expireDateTime":"2024-11-06T11:16:01.3720367Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A59Z&sr=b&sp=r&sig=0sgLM9j1xCpWFbDaOIOW0RBfR6Y3p0d%2BaiT0STpbqu4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:59.7568619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A59Z&sr=b&sp=r&sig=zk1LUfjoco4cExkEY7HWH43o%2FQHaeJrAKT6yswuH93M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:59.7563692Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A59Z&sr=b&sp=r&sig=b21Qic25YuDkIoNQl9cKVM%2BOezxFvKfjXmrqkbC0gao%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:59.7570708Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A59Z&sr=b&sp=r&sig=whx%2Ba1tkjlB6A%2FFX1ZBd6aSDxmRN%2BGTGK4T%2FCaXlNps%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:59.757325Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A59Z&sr=b&sp=r&sig=izQqs5s3U4C3%2F3eJrVhH70rURwY3bx9Wd%2FotvmBV6BM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:59.7575214Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A59Z&se=2024-11-20T12%3A26%3A59Z&sr=c&sp=rl&sig=0vr%2FWzdFg%2F1GQWMvlA6HOy3Z9%2FVnww8CNXCD519YQzU%3D","expireDateTime":"2024-11-20T12:26:59.7577408Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4890' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:01 GMT + - Wed, 20 Nov 2024 11:26:59 GMT mise-correlation-id: - - c88603b8-6649-4867-a619-4c73c74fdc32 + - 8c6b57e2-333d-4075-ac2f-4d2d6fa6807e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101601Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hxs + - 20241120T112659Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000017xm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2469,31 +2479,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=Tqho2c7NhAbYhzzM%2FZFdjSeXO%2FKt1gEymvNRPNzoseE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.7560939Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=dHQdAtDi2zKdNSRM4H4lpFakqTf74KSgVTwn846krw8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:06.7554878Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=he1CSU4l99jWIP%2BlbqT91d41Njze8oWjNIvjarEZCUU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.756365Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=WGgT2CHWbvssKe%2BWVmEH6%2F73lnuBBs42J4TpqLUIvGE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.7564476Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=xxna%2FvjVkd4kI8kUx7sgeCVRw9YM8BM64IOU6%2F60glI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.7565231Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A06Z&se=2024-11-06T11%3A16%3A06Z&sr=c&sp=rl&sig=LsBwT9U39y2cvbo6xp4bS%2BzTtNw63%2F42%2FQCbNHUYfgY%3D","expireDateTime":"2024-11-06T11:16:06.7565998Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A04Z&sr=b&sp=r&sig=AzJFB3h857U3RUvXHwy1RTo5TLt9Q5UHdSv5NLIXWWI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:04.8777248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A04Z&sr=b&sp=r&sig=srB%2BRmRU6k5zpk07954c90nCso8%2Fl1zKSasrbdf9vIU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:04.8772796Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A04Z&sr=b&sp=r&sig=m0qQWSkTnh5oo6HUVUA%2BJz3NXetoBAqhD%2BS%2Fop6DhGE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:04.877898Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A04Z&sr=b&sp=r&sig=kSxePqqiavjS9YKqFGqnwRVsk7YbC%2ByBOj8V4xrpSko%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:04.8780738Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A04Z&sr=b&sp=r&sig=gIFvmbIWj%2B4pKNkZTOEDigCi6Vyp8jbZPVkRwasT9ic%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:04.878249Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A04Z&se=2024-11-20T12%3A27%3A04Z&sr=c&sp=rl&sig=l2%2B2D5FE5CSpawEIMuar8IFWHnxruRzIlShkmOJ5koY%3D","expireDateTime":"2024-11-20T12:27:04.8784201Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4900' + - '4997' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:06 GMT + - Wed, 20 Nov 2024 11:27:04 GMT mise-correlation-id: - - cb6cb67d-fa5d-4fdc-8b3d-3d60f80d3916 + - 75fd7c50-c5a5-4dac-9f59-2d9c290929a1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101606Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hz9 + - 20241120T112704Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg00000000182c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2511,31 +2522,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A12Z&sr=b&sp=r&sig=DLMkJzdQBkwv4oXMsLv6sks5D9ksW5h1wM3s5H0Ns8I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:12.1366382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A12Z&sr=b&sp=r&sig=RiS1wU1pQxLhF1LwfOUcSb9CM9TqXOl3mYq7QBcK8SQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:12.136278Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A12Z&sr=b&sp=r&sig=CVa3CZjz5pX027kAUqzGo6MSC5ObrwFVt4D558BkvQA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:12.1366941Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A12Z&sr=b&sp=r&sig=9OJXmM%2B5T%2BM0UJSvpZuOeozTKMNki6eobRYPMzLMqbs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:12.136745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A12Z&sr=b&sp=r&sig=s3YZztPZIorXauhlJuaoy63EglKG%2B3CFxYHhYTYvCnA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:12.1367943Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A12Z&se=2024-11-06T11%3A16%3A12Z&sr=c&sp=rl&sig=jZp%2BvBbSewD8MYrCgsmLptMtd8%2Fe1sq%2BA4ZQw4JRgLk%3D","expireDateTime":"2024-11-06T11:16:12.1368407Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A09Z&sr=b&sp=r&sig=ehntUKxqcPDJbp2ThyK6WaDaFxb2WznYI4DsGzQyJFM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:09.9995641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A09Z&sr=b&sp=r&sig=JTZD%2FtTv8mo9hl3Xo7lQDcxoMSdkd1cdw81vWl5os18%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:09.9992246Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A09Z&sr=b&sp=r&sig=NbnFN46t6aINRzP4QHsS8e%2FATsnMCZSM996e%2FvNHIcQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:09.9996961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A09Z&sr=b&sp=r&sig=0Befcg7%2F01Yhr2Mqs2CWScaoyv966vcKf4fh%2B%2Bb0X%2Fs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:09.9998334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A09Z&sr=b&sp=r&sig=pOneDMzLpmATgigCBB9OGflmUGKVb5R5L20f0f%2B8UeU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:09.9999651Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A10Z&se=2024-11-20T12%3A27%3A10Z&sr=c&sp=rl&sig=nG0hViIe5dtuRYiSRxJvN%2BsUkYlD%2BeNOLKFHq72Csl4%3D","expireDateTime":"2024-11-20T12:27:10.0001023Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4891' + - '5003' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:12 GMT + - Wed, 20 Nov 2024 11:27:09 GMT mise-correlation-id: - - be98a141-e0fe-4b22-99ad-c15d8f6ba786 + - 98dcdc0e-a811-485d-bee4-7bda6915c46e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101611Z-er1d798b584cft5mhC1SINz3u800000005g0000000004k2r + - 20241120T112709Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg00000000187t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2553,31 +2565,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A17Z&sr=b&sp=r&sig=ReLOCKyn4EH568n6ZBkZWQ24mufJhLU4%2BxgxxTJ2RYU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:17.5142751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A17Z&sr=b&sp=r&sig=CknADsdAKJq2RBTls1CJlOphzcvJkXqsQOobbnZOSvk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:17.5139237Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A17Z&sr=b&sp=r&sig=sXXWNQUxdi1D4ATID9fy8%2B1kQLehkIKcNrO4usKwgGE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:17.5144061Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A17Z&sr=b&sp=r&sig=OMi%2FPJ7BEGtEVpdwAdGmHyUnhFS%2FhIgQVqHtJJHfqO4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:17.5145374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A17Z&sr=b&sp=r&sig=P97tJ5dVM1ON2ErX1erFJmz5JvZUIa1Va26vnWnEHmE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:17.514669Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A17Z&se=2024-11-06T11%3A16%3A17Z&sr=c&sp=rl&sig=g76g8ZEeU%2Bp%2Fc0KsnYpMppfQ85k01s0Ndkaa6Yirwko%3D","expireDateTime":"2024-11-06T11:16:17.5148034Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A15Z&sr=b&sp=r&sig=2CtlW%2FsHLQsh5zVAL4JkYCYmWgiFHXLCLqCUqg1x%2FgU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:15.1385787Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A15Z&sr=b&sp=r&sig=KQeo7OrqT6QdZUsP%2Bi5mbRcGptzZLOR%2B2tgMr%2BGYeeQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:15.1382664Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A15Z&sr=b&sp=r&sig=LRjXEDUUwYtfSWa6z10lCJQbgLD1SgZwtjjoYQo3ku8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:15.1386753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A15Z&sr=b&sp=r&sig=EK36XVCgtwFkeSoXIJH4H%2B%2FTGy%2BydY2Yt72fUm%2BcOww%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:15.1387635Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A15Z&sr=b&sp=r&sig=F9GROsK9vvnfveLsp1l64JCADMdse8U85BDYii%2BCSiQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:15.1388511Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A15Z&se=2024-11-20T12%3A27%3A15Z&sr=c&sp=rl&sig=JdFwL%2BnNOPmMMGN2f4roEKC55TTZBLAsSM7XroqWiv0%3D","expireDateTime":"2024-11-20T12:27:15.1389406Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:24:30.905Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:24.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4892' + - '5005' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:17 GMT + - Wed, 20 Nov 2024 11:27:15 GMT mise-correlation-id: - - e5ba8a05-e252-4f98-bdd0-f2b36f56ddcf + - d3c3925d-77dc-4c67-a38b-c21225171a48 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101617Z-er1d798b584cft5mhC1SINz3u800000005g0000000004k6w + - 20241120T112715Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000018d0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2595,32 +2608,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=WvlnziSEH1mZa88d2rowtrL9Q5YxA%2FRauhyzubNztWI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.9227036Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=YSLWtGd%2Bz%2F2FG255SWfqGOmKZGVwZMED2e6CJiE4d7A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:22.9223637Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=DVTIemqA%2Bcjv3Zaf%2F5fUE2gDDRphPvZY1RrZfBgaapk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.9228031Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=AKxVBNPow%2FYl7MDJfHvmkZZh4%2Bbrv9piPL2UM7IC%2Bqo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.9228929Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=MdSWeFXH7WX5iUSRA959VBr6i9PT7LqcT3MQlFI5A2Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.922988Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A22Z&se=2024-11-06T11%3A16%3A22Z&sr=c&sp=rl&sig=U0F6UaqQcCtUechQmSu8QyYyeeGJnIjmHT5c%2BD%2F5DrA%3D","expireDateTime":"2024-11-06T11:16:22.9230773Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-11-06T10:13:39.241Z","endDateTime":"2024-11-06T10:16:19.754Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:16:20.324Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A20Z&sr=b&sp=r&sig=yx4BwzBE83Ox4KcEyS0wUcyxO9nibptecDIxaQ%2FIa3I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:20.2684959Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A20Z&sr=b&sp=r&sig=kkZR6KL%2FVuL6xYRsRwRCh%2B2ckHK8t3OSnV9JCt7PvVA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:20.268068Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A20Z&sr=b&sp=r&sig=hvYkXATDi4a49o3paiOopsUMewFbbxA3AcEeZ70L%2FOE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:20.2686729Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A20Z&sr=b&sp=r&sig=mowzDh3LDYp2oIfmz4I4vLCDipPoamOp3YDpmU324wM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:20.2688511Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A20Z&sr=b&sp=r&sig=2gkH5iuUxFPewAEG75Kc%2FlDtsCZi6zecPNKksNwrprc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:20.2690226Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A45Z&ske=2024-11-20T18%3A23%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A20Z&se=2024-11-20T12%3A27%3A20Z&sr=c&sp=rl&sig=XICeg%2BIjueKnGW%2FA3%2F251U%2BE0t6ILNiSik4afJnRUc0%3D","expireDateTime":"2024-11-20T12:27:20.2691944Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-11-20T11:24:30.905Z","endDateTime":"2024-11-20T11:27:18.591Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:27:19.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5028' + - '5128' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:22 GMT + - Wed, 20 Nov 2024 11:27:20 GMT mise-correlation-id: - - 0d90cb91-4498-4506-9b7c-3086644cc5b6 + - 309832ed-51d3-4364-95da-db1bbaba1a80 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101622Z-er1d798b584cft5mhC1SINz3u800000005g0000000004kag + - 20241120T112720Z-1846dc7bb4d76mcbhC1YVR7hvs00000003pg0000000018hw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2638,23 +2652,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:11:28.7280866Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:28.7280866Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:09.6834456Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:09.6834456Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:25 GMT + - Wed, 20 Nov 2024 11:27:20 GMT etag: - - '"fa00843c-0000-0200-0000-672b40e70000"' + - '"97039802-0000-0200-0000-673dc6b50000"' expires: - '-1' pragma: @@ -2670,7 +2684,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 73F3C40C95F14D28B8F0FA8C33C5E300 Ref B: MAA201060515011 Ref C: 2024-11-06T10:16:25Z' + - 'Ref A: CE75714DBF104B4BB7A51CC5ACAF1F61 Ref B: CO6AA3150220025 Ref C: 2024-11-20T11:27:20Z' status: code: 200 message: OK @@ -2684,32 +2698,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=show-test-case + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=show-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=7Zol4eQ4LqnidOrhds0eueEPvq60StgqvHVxVSHVH5g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.0530009Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=pzzS%2B7qbsG9m8e1%2BNpVBxzyAnwal2%2BbTOvM%2FZ24T2%2BM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:29.0527073Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=etjMI52xUFoXblsiRQEPt%2B2QwptEVdbaDCJcUbhHnuM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.0530905Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=0LSNO5wjAJQbFfYN3b4WOYLOrlNjCoSFAeor9jaxr6Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.0531799Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=oqypeUIDBujl6jVih6F%2BSVkbk4krzf%2B4uYKV6fBfH4A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.0532648Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A29Z&se=2024-11-06T11%3A16%3A29Z&sr=c&sp=rl&sig=w%2FJzKx96xKH6BazFEI3y%2Bms2G%2BOdOZu98BOU%2FMifN9E%3D","expireDateTime":"2024-11-06T11:16:29.0533515Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-11-06T10:13:39.241Z","endDateTime":"2024-11-06T10:16:19.754Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:16:20.324Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A21Z&sr=b&sp=r&sig=ZWfLt1K5dQuRMuT4%2BX10aHB2sD%2BJ82bdvr4b746XAZI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:21.0875852Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A21Z&sr=b&sp=r&sig=uK3%2BJi3TUvLadVCXICi8lNvlfQaPPGR29ja%2FbzqP2Bo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:21.0873035Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A21Z&sr=b&sp=r&sig=Bu7OcyDHFy1vr%2BBYXmQK%2BuTMbGhxmUpgBsKnFfm9hhk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:21.0877265Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A21Z&sr=b&sp=r&sig=HxcWm8CHmUwsXMcKDr4Yc9QQbP1JTIxC8NSLKpBmDhA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:21.0878256Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A21Z&sr=b&sp=r&sig=wr91P68TjQXnho50XFKM762RvlZFlhpqpyPo6DhiNSA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:21.0879219Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A07Z&ske=2024-11-20T18%3A24%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A21Z&se=2024-11-20T12%3A27%3A21Z&sr=c&sp=rl&sig=FBg4eRYUe0i%2FKtSQJf7Dm5Gs0XTeMI37wDC8kmag5Us%3D","expireDateTime":"2024-11-20T12:27:21.0880131Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-11-20T11:24:30.905Z","endDateTime":"2024-11-20T11:27:18.591Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:27:19.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5045' + - '5137' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:29 GMT + - Wed, 20 Nov 2024 11:27:21 GMT mise-correlation-id: - - 9ecba815-7f74-4269-866a-9cec0e9ce033 + - 6175ff07-c869-4d90-99f9-a439ab34ac73 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101628Z-er1d798b584jw84bhC1SINb6bs00000005gg000000004ft2 + - 20241120T112720Z-r16f5dbf67677dj7hC1YVR0zk400000000y0000000000xv2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2727,23 +2742,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:11:28.7280866Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:28.7280866Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:09.6834456Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:09.6834456Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:31 GMT + - Wed, 20 Nov 2024 11:27:21 GMT etag: - - '"fa00843c-0000-0200-0000-672b40e70000"' + - '"97039802-0000-0200-0000-673dc6b50000"' expires: - '-1' pragma: @@ -2759,7 +2774,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DA3E012E8F5A47B0B3422F2383E5CBBC Ref B: MAA201060514035 Ref C: 2024-11-06T10:16:31Z' + - 'Ref A: 4FB45923786F42CAA35A7126932FFDAD Ref B: CO6AA3150219051 Ref C: 2024-11-20T11:27:21Z' status: code: 200 message: OK @@ -2773,33 +2788,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://11a1b2fc-a093-4836-b685-8bce2faabd5d.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=WhmI1QQU%2Fbo8EYsAUa1daSvRE%2BUbtNtT1aCR1YN3K%2BU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3853746Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=m%2BO3Weg%2FwHSjDoMezXH0d71ILkoUnBiczpMf1Gf9WZ8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:34.3850621Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=bGNFb96VBrimvDp5UfQLETcIAxUuU4PVZqYqBOejQo0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3854876Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=QWd8Fd%2FQKMbt4sepcRX8T8qiz55QB6VzXhSQOh8yO3I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3856108Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=0cbET%2BOu0o7suQ7yVRFB%2BBiLMbmqzLCRuvbO%2FLou6N0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3857151Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/086b40e7-8b0b-4513-9409-5000eaed3342_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=yilYC%2B94C08wnz57RwOE1bJkXkRTSf6LaomMPgXFfL4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3858751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/086b40e7-8b0b-4513-9409-5000eaed3342_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=5plrQsFjHnO3e8gxL7JXUEPeHojr%2BFM1YHO2BlWLLZE%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3860228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A34Z&se=2024-11-06T11%3A16%3A34Z&sr=c&sp=rl&sig=rDaJ5npe7fC1tzNQDvhM5viCCwxPfOpaL2Uh1wkCKA8%3D","expireDateTime":"2024-11-06T11:16:34.3861481Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-11-06T10:13:39.241Z","endDateTime":"2024-11-06T10:16:19.754Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:16:29.799Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b4dbe4ec-63ba-4c4d-a77d-27ea5b3c3d54":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fab169bf-a8d7-4ed5-8fa8-0edbcba0baf5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a85ea0c-8da4-45e8-8868-ba27831d1274":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/7bb6371b-d1a3-4d58-a212-bb42314bc842?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A21Z&sr=b&sp=r&sig=K2ygJzST2mSH8LG5AL8j9Vwnq3Br2L15XGFfvkEfFR8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:21.9867004Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/b4e1241a-faee-4f60-b81a-bce0a6a2427a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A21Z&sr=b&sp=r&sig=xLVf2kEPex7VvG7e%2BG9oOft%2BGGDqhTE8WQkcx9W7cng%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:21.9864876Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/5e12fa21-afea-4c8f-9821-e14c0f91babc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A21Z&sr=b&sp=r&sig=QnPCAntj1aWy%2FDUmehZB4FUuC5AuNAy6ZbP50mJDKl4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:21.9867939Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/28420f83-f88c-4a8c-a02b-ceefbb45314e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A21Z&sr=b&sp=r&sig=662aoxhXXCJZhXME%2BAOYcV6Iz0EY2Y%2F0p%2B5g6bCS5M4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:21.9868933Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/12eee02c-c7aa-4442-a349-fe79b7f77755/2bfe109f-b8d5-4148-975e-e8bdfd730f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A21Z&sr=b&sp=r&sig=5tXcNgXvlsUbwV8nDNJ19kygZXu06RiplhUTIO%2BdIes%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:21.9869844Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://usw8lhzluvjsf1h8ii1z0y90.z32.blob.storage.azure.net/9c432461-0fc1-46f2-8e60-aae26626edb8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A44Z&ske=2024-11-20T18%3A23%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A21Z&se=2024-11-20T12%3A27%3A21Z&sr=c&sp=rl&sig=55nhLsseVBod2PZeBtP5fcar6GIGpWOg7Bg6xZ0Omzc%3D","expireDateTime":"2024-11-20T12:27:21.9870742Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-11-20T11:24:30.905Z","endDateTime":"2024-11-20T11:27:18.591Z","executedDateTime":"2024-11-20T11:24:29.688Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-20T11:24:30.087Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:27:19.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6243' + - '5125' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:34 GMT + - Wed, 20 Nov 2024 11:27:22 GMT mise-correlation-id: - - 77edc98f-136f-4d7e-b538-cd0ad148bed9 + - 2c237266-1f16-42ce-878d-b08ef2481424 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101633Z-er1d798b584h6s9ghC1SINqgf000000005hg00000000263k + - 20241120T112721Z-1789fbbbd78x8fsghC1PDX08380000000gkg00000000bd5p x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_stop.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_stop.yaml index 6abaee3ccf9..65f51f19c94 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_stop.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_stop.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:11:36.5450318Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:36.5450318Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:05.7790966Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:05.7790966Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:13 GMT + - Wed, 20 Nov 2024 11:23:37 GMT etag: - - '"fa00e23c-0000-0200-0000-672b40f00000"' + - '"97038b02-0000-0200-0000-673dc6ae0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8DB9A4929DAD40E8B9684AB4E784C68D Ref B: MAA201060516027 Ref C: 2024-11-06T10:12:13Z' + - 'Ref A: 79318E9BB33A41A68FDB4E2C80E5A436 Ref B: CO6AA3150217049 Ref C: 2024-11-20T11:23:37Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier stop-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:12:18 GMT + - Wed, 20 Nov 2024 11:23:38 GMT mise-correlation-id: - - 37e16957-2aa2-43b1-abfe-a00f7ac033de + - 013d9ede-8094-4e60-921c-e7fecc51756c strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T101217Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c6v5 + - 20241120T112338Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000072vh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "120"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"93598372-950e-485b-b813-abf2c3fe7560": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"2c826591-9153-4214-b56a-800909eae72a": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "113ec4fd-1fee-412f-a7fe-b34a656c4a1a": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "61cf0df3-fae0-4307-98f2-95b6bc8e3998": + "78"}, "8bc5befa-5b96-4d14-a40f-8ce579d50619": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "9677cad7-3e2e-409a-95c6-f5a9f2ff076b": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '818' + - '866' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"stop-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:18.826Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:12:18.826Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"stop-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:23:38.924Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:23:38.924Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1046' + - '1148' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:18 GMT + - Wed, 20 Nov 2024 11:23:38 GMT location: - - https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-03-01-preview + - https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 224b7454-42a2-4138-87f7-b5be1b383707 + - 699cd7d9-8157-444b-ae00-9c4635d83e6c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101218Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c6wy + - 20241120T112338Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000072vt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:19 GMT + - Wed, 20 Nov 2024 11:23:39 GMT mise-correlation-id: - - 47b307f3-345a-468e-b888-dc3abbc967c8 + - 1fc41d2c-73ad-4e83-ad75-37427f2a2b31 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101219Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c6yr + - 20241120T112338Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000072w1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,17 +207,18 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A20Z&sr=b&sp=r&sig=5U3d4ByJQjGkdYwoAHVDpZ%2Bus05vp34kKJjUq0ZGYk4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:22:20.0132467Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A42Z&sr=b&sp=r&sig=Vt%2FdvdriTFqjTuuDYkdxHXs1VODeMbE7GPsIO3W5ZNU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:33:42.0818886Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -221,15 +226,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:20 GMT + - Wed, 20 Nov 2024 11:23:42 GMT location: - - https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 3ee37a5a-855d-4e37-80e2-953e4534a805 + - 55e03883-852f-4704-83bb-0d558ce67e73 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101219Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c6zg + - 20241120T112339Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000072w4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,17 +252,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A20Z&sr=b&sp=r&sig=5U3d4ByJQjGkdYwoAHVDpZ%2Bus05vp34kKJjUq0ZGYk4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:22:20.4714048Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A42Z&sr=b&sp=r&sig=Vt%2FdvdriTFqjTuuDYkdxHXs1VODeMbE7GPsIO3W5ZNU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:33:42.1996066Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -265,13 +271,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:20 GMT + - Wed, 20 Nov 2024 11:23:42 GMT mise-correlation-id: - - 5d988dae-1f35-44ca-a6e5-19bfb9ab6550 + - 17671721-0695-4b37-8c94-e13c53a65cad strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101220Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c71h + - 20241120T112342Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000072yg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A21Z&ske=2024-11-07T02%3A12%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A21Z&sr=b&sp=r&sig=JQJYQtl6qhZbpibv65F6g3wSM%2By39q2TRgn6rXbo8XY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:21.3638725Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A43Z&sr=b&sp=r&sig=AKmIvmEChU6QcMVv5Em%2F9SN3tiARxNJLTeAQe%2Bp%2FRmU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:43.5145439Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:21 GMT + - Wed, 20 Nov 2024 11:23:43 GMT location: - - https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - dd6d0c3c-cc24-4f73-9e00-7f67ef034d18 + - 285a8834-d6b7-4664-b95e-a9d34918aa04 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101220Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c72n + - 20241120T112342Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000072ym x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,31 +351,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A21Z&ske=2024-11-07T02%3A12%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A21Z&sr=b&sp=r&sig=JQJYQtl6qhZbpibv65F6g3wSM%2By39q2TRgn6rXbo8XY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:21.7673141Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A43Z&sr=b&sp=r&sig=AKmIvmEChU6QcMVv5Em%2F9SN3tiARxNJLTeAQe%2Bp%2FRmU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:43.6318805Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:21 GMT + - Wed, 20 Nov 2024 11:23:43 GMT mise-correlation-id: - - 71950d33-f7d4-4c35-9a3c-eaaba3e366ae + - d86c8d6a-9d96-4347-8960-efeacdea3da0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101221Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c74q + - 20241120T112343Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000072zz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A21Z&ske=2024-11-07T02%3A12%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A27Z&sr=b&sp=r&sig=cLPxobNYbzcpg2DXDTuMCU4Hh6SsRXwJVnUz8uY8VbQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:27.164765Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A48Z&sr=b&sp=r&sig=lo9sntgRGdFLxP0Cf7ZDWQ2TeN2cH7OAse%2BM3tSbzv8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:48.7701265Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '566' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:27 GMT + - Wed, 20 Nov 2024 11:23:48 GMT mise-correlation-id: - - 25aeef8d-91fc-44d7-968b-ef4185d6b393 + - 6a7cd5e9-2bd0-46cd-8b3f-8ca35cceeaaa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101227Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c7ec + - 20241120T112348Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c000000000733t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A32Z&sr=b&sp=r&sig=8%2FLmkiOeJB3vb%2FPQDjYWHQkXr6RiT5qKAmyA2ARXNbA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:32.5428028Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A53Z&ske=2024-11-20T18%3A23%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A53Z&sr=b&sp=r&sig=s%2FUVhdZcOfYLpyoFjymLDo2yaAcXhDmjzLliLMtnh6U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:53.9639709Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '571' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:32 GMT + - Wed, 20 Nov 2024 11:23:53 GMT mise-correlation-id: - - f292e888-6b51-4920-b093-20d7a49f0be8 + - 405cfa07-d71f-4fef-b335-d3facd4e8c35 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101232Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c7t1 + - 20241120T112353Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c000000000738a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A21Z&ske=2024-11-07T02%3A12%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A38Z&sr=b&sp=r&sig=EK%2BKDJPZz5%2FlO4dAwEhhFdtF7k1%2BKTUfMF%2BqLQWCNNA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:38.4598317Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A33%3A59Z&sr=b&sp=r&sig=dAWAQMjtWi%2FLZ%2BWywT0YU3Rqn5D1Z7hr8O%2FLA11qnHU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:33:59.0805037Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '575' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:38 GMT + - Wed, 20 Nov 2024 11:23:59 GMT mise-correlation-id: - - 302c0857-376c-4965-9ebd-90a1ad0798c6 + - eb9a12ea-ec46-40c0-b068-5a0748734ea7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101237Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c83z + - 20241120T112358Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000073cn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,17 +523,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A21Z&ske=2024-11-07T02%3A12%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A43Z&sr=b&sp=r&sig=528xi0dEXUK0431BjwN6QbV6%2BBsoMpVsy6qmJOjTiwY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:43.8718335Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A04Z&ske=2024-11-20T18%3A24%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A04Z&sr=b&sp=r&sig=t9xy9tJq7LrZCX2GTaD5vKPht%2B00zTbmWdrt584AICQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:04.2193796Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -530,13 +542,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:43 GMT + - Wed, 20 Nov 2024 11:24:04 GMT mise-correlation-id: - - 9410dc09-0fdd-408f-81ec-5f5fd9a65e0f + - 92ab3285-ffef-4748-b9a5-99e56d76e833 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101243Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c8eu + - 20241120T112404Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000073fx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -554,31 +566,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A49Z&sr=b&sp=r&sig=AaB%2FpK0MIHgNWgiJ7Q%2ByrNPbMAy86d6i2odbiDmgjv4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:49.3400739Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A09Z&sr=b&sp=r&sig=4cCYpxfoTonSt7eCYk8%2FiJMosuHCwtWHGPJoZXrS8h0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:09.3503475Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:49 GMT + - Wed, 20 Nov 2024 11:24:09 GMT mise-correlation-id: - - dd5306e2-26e5-4a42-ad15-d41fdeabc7e1 + - dbe8c071-692a-4aac-8ab4-e3c760f6900d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101249Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c8u2 + - 20241120T112409Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000073mg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,33 +701,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A50Z&sr=b&sp=r&sig=kpj6MX%2FGfWpJW5WZedDu2gJmtGUzKO0wumWjUEsg%2B1o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:50.6052833Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A09Z&sr=b&sp=r&sig=WmWkYNBdz1Z0tPFBypOBra5Q8OWFasGpHS2ar3jnDmo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:09.6521931Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '559' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:50 GMT + - Wed, 20 Nov 2024 11:24:09 GMT location: - - https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 437ae576-4550-4bc5-b173-21b9e9308a5a + - cff051c2-0463-4481-a2c9-e54fbf6bc6c9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101249Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c8v7 + - 20241120T112409Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000073mp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +746,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A51Z&sr=b&sp=r&sig=730d8d2Yr%2FOi%2BYy0KO6ekwMpX7gH%2FWKykRxDkyp48NM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:51.0245055Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A09Z&sr=b&sp=r&sig=%2FbP3Bn6ttuUqTiiDf4u1K0yyip9h1HlG3VZV0WGbDns%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:09.8012676Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '561' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:51 GMT + - Wed, 20 Nov 2024 11:24:09 GMT mise-correlation-id: - - b7ccaaa5-fb43-403b-9240-0766d8df4edb + - 6b661444-9198-42f5-b209-d0f67b4e9787 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101250Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c8ym + - 20241120T112409Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000073mt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,17 +789,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A56Z&sr=b&sp=r&sig=CaAUe0RCaIXk2MkIrNmiS%2BEomFcHFtmpeIEvMxuChLM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:56.4151361Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A14Z&ske=2024-11-20T18%3A24%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A14Z&sr=b&sp=r&sig=RQAOeu%2BpJlEZKFH2doFAXevKpdf6q0eTLbKjySBVLQ4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:14.9580313Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -792,13 +808,56 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:12:56 GMT + - Wed, 20 Nov 2024 11:24:14 GMT + mise-correlation-id: + - fca84e17-ee9c-4941-ae9d-2ae82ef17d8e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112414Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000073qg + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A20Z&sr=b&sp=r&sig=hYz1NF3YMKxwhQ0zawoanYFm5uD%2Fw%2BbCg1D2CzZQuw4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:20.0894318Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '559' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:24:20 GMT mise-correlation-id: - - a0129ffa-7186-40d3-a1c3-3019083a82e4 + - 9626eb99-ed10-4875-a81e-05fe541d6209 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101256Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c9d0 + - 20241120T112419Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000073u2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,17 +875,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A01Z&sr=b&sp=r&sig=eWCsueTjqZMbDVjrr2pC9jMedfN%2FPG5DePWGpppXOgU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:01.7724876Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A04Z&ske=2024-11-20T18%3A24%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A25Z&sr=b&sp=r&sig=pz7ZmSq2qVdXz2UIE%2BopaBAgr1wiAkWtOu7vWOVry3Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:25.2186427Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -834,13 +894,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:01 GMT + - Wed, 20 Nov 2024 11:24:25 GMT mise-correlation-id: - - 5acdd15b-a2ee-46fa-ab27-069587afc04a + - 74b71e9e-78f3-4a91-b163-e23c289cee4b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101301Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c9xw + - 20241120T112425Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000073xk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A07Z&sr=b&sp=r&sig=4G5y4OTr6JjsDrXWCqz6i2RBzeij%2FBOTHn%2BlREQmGwM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:07.2353352Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A04Z&ske=2024-11-20T18%3A24%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A30Z&sr=b&sp=r&sig=GOuCp0BATKGQXeG5lu5%2BUyOL2K5NcanNIXOxXgZ5LmM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:30.3825621Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '559' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:07 GMT + - Wed, 20 Nov 2024 11:24:30 GMT mise-correlation-id: - - ea5853c2-d04c-41ca-9535-95b837375d5e + - 2b6986be-b90f-456b-9ae1-4e364295c025 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101307Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000cac3 + - 20241120T112430Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c00000000073zz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,17 +961,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A13Z&sr=b&sp=r&sig=UC9tXpUz4vLLOpv9fd6kCOhBOWRhHXuqQW9qs%2FDFwRc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:13.5087457Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A35Z&sr=b&sp=r&sig=GRzBGbb7J90etvtX%2FYIW5DEzo22ovsYYp04kcd2wZoE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:35.5163104Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -918,13 +980,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:13 GMT + - Wed, 20 Nov 2024 11:24:35 GMT mise-correlation-id: - - 32046c0e-3ae0-40ca-a3fe-b5365e443cc1 + - 8d5f7a83-fa0a-4445-b57a-5fbf37eca733 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101312Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000cau1 + - 20241120T112435Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c0000000007435 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,32 +1004,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A13Z&sr=b&sp=r&sig=oRXMCXExJHPFMOi5KzOEdSmQzbDMiyjQu6Msp%2BAMXKA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:13.8769463Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A13Z&sr=b&sp=r&sig=Z9kEn1CLYwh1So%2BbbPyluBW%2BN1KkgAAzIIBQjnTzNSg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:13.87735Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A13Z&sr=b&sp=r&sig=COQ1MeaSDwObPlCKKSe5h9FNPSEuhVv1pSqJ0rdW%2FA0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:13.8775216Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"stop-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:18.826Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:13.363Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A35Z&sr=b&sp=r&sig=clh7lLVGpURgARuYsf6JW09yj3Kw0Zh%2FRw8hK09eOnk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:35.6308501Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A35Z&sr=b&sp=r&sig=HSG7MfvKLwN7gUfgfq%2BYVK4Nrrs1FcCKmO694gu1Jus%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:35.6312221Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A35Z&sr=b&sp=r&sig=v%2BhbXGUUk2laz%2FgzemrdXRMXL4pdGyTvfi0tsMPg5Mo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:35.6314186Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"stop-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:23:38.924Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:35.383Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2763' + - '2867' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:14 GMT + - Wed, 20 Nov 2024 11:24:35 GMT mise-correlation-id: - - 672324b5-968b-4852-bc6c-b2a1ce9295c2 + - b1060bee-cac8-44b3-ac96-f9da3d1a4b74 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101313Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000cax1 + - 20241120T112435Z-1846dc7bb4dsj5nkhC1YVRwf8n00000001c0000000007438 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -985,23 +1048,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:11:36.5450318Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:36.5450318Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:05.7790966Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:05.7790966Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:16 GMT + - Wed, 20 Nov 2024 11:24:35 GMT etag: - - '"fa00e23c-0000-0200-0000-672b40f00000"' + - '"97038b02-0000-0200-0000-673dc6ae0000"' expires: - '-1' pragma: @@ -1017,7 +1080,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 17C6F720A7564F6688FED4D29645BCB5 Ref B: MAA201060514051 Ref C: 2024-11-06T10:13:16Z' + - 'Ref A: 7C6C77045B024629829BE6940BDC587B Ref B: CO6AA3150218011 Ref C: 2024-11-20T11:24:35Z' status: code: 200 message: OK @@ -1031,32 +1094,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A19Z&sr=b&sp=r&sig=GCZOlHCNLKnESc4LiLIeRYKJj8ccGzZmOsu64lRRHw0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:19.4582824Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A19Z&sr=b&sp=r&sig=HrChPx1SNNf3ZsSA1LBpkc9tSc9GnGiuPZY7fbyjInc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:19.4585561Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A19Z&sr=b&sp=r&sig=FCK9hI4i8YhhWt%2FBYuZZkzbBf3b0GIYSv60dzn8sAUk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:19.4586547Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"stop-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:18.826Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:13.363Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A53Z&ske=2024-11-20T18%3A23%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=Hxihk76aknlUBGEtQL%2BLX58NfBNYVT9qMmyHKhAYBOE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:36.6122342Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A53Z&ske=2024-11-20T18%3A23%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=TlDBsGiuRhbcKue935%2Fmls2Txvh0qsCl7vnPmeycPt8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:36.6125602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A53Z&ske=2024-11-20T18%3A23%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A36Z&sr=b&sp=r&sig=7JFxNF9r7btxo6c6taoqbsfPk6FKQRzB4qAw3TMHXsw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:36.6126508Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"stop-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:23:38.924Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:35.383Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2771' + - '2875' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:19 GMT + - Wed, 20 Nov 2024 11:24:36 GMT mise-correlation-id: - - 1e7d334c-3a2a-4247-bdab-1e779534ec4f + - 5cbc5216-7f88-478a-8649-b8f5fc19aa7a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101318Z-er1b6dc89fd2px56hC1SG1e6d40000000520000000006gqy + - 20241120T112436Z-1789fbbbd78flwl6hC1PDXd5ac0000000gpg00000000cpn0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1074,23 +1138,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:11:36.5450318Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:36.5450318Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:05.7790966Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:05.7790966Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:21 GMT + - Wed, 20 Nov 2024 11:24:37 GMT etag: - - '"fa00e23c-0000-0200-0000-672b40f00000"' + - '"97038b02-0000-0200-0000-673dc6ae0000"' expires: - '-1' pragma: @@ -1106,7 +1170,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 06D00502037047D8A62FE1B80F628BF4 Ref B: MAA201060514039 Ref C: 2024-11-06T10:13:21Z' + - 'Ref A: F94DDB6903F14259A41EE78232B57FA7 Ref B: CO6AA3150220025 Ref C: 2024-11-20T11:24:36Z' status: code: 200 message: OK @@ -1120,30 +1184,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with given name \"stop-test-run-case\".","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:13:26 GMT + - Wed, 20 Nov 2024 11:24:37 GMT mise-correlation-id: - - e7ad94a2-4a0b-4172-ae51-afaa61383e3c + - 5fea2ad1-9dd6-489a-93a4-be12c0f98e6a strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T101325Z-er1d798b584wktgkhC1SINnqns000000012g000000003595 + - 20241120T112437Z-r16f5dbf67644l6hhC1YVRnems00000003u00000000011m7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1167,31 +1232,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A28Z&sr=b&sp=r&sig=x69Pp7oFjHBqT%2BHLRd5gph55JJXGYXLtbQZInOWJ1Ac%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:28.3305024Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A28Z&sr=b&sp=r&sig=LH0pGwTMLVFCndARwUg9uyc1zQGwqTetDAoZzrZtw%2F0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:28.3300387Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A28Z&sr=b&sp=r&sig=%2FmcRWK0his%2F3sp0s%2Fyo3gcCxhLSw%2Fpi2JB5jvveU2qU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:28.3305967Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A28Z&sr=b&sp=r&sig=DvQgHAmPNUu0WucsuHE9G3bbOpHjxx8Ve1B1M0NEdVc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:28.330691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A28Z&sr=b&sp=r&sig=45QCfjyyrENRtm9aptcxut09vQOzs3YzEDR2dTtijvc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:28.3307768Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A28Z&se=2024-11-06T11%3A13%3A28Z&sr=c&sp=rl&sig=Ffjo2BaRpJSTyOCDOkHwrMzeUuy9u87JMD4DOORZ1dw%3D","expireDateTime":"2024-11-06T11:13:28.3308601Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:28.061Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/1908670c-2e3a-4c07-b3cb-c30ee6976432?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A38Z&sr=b&sp=r&sig=rKa%2FFN5W%2FFhex3vFpSDYPKum8dCxMjaAGssoDCAFHPM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:38.650665Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A38Z&sr=b&sp=r&sig=CI0Pje00RG7UQZmdSio9vY2H1qqy4usVOp5e%2FaqbiCM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:38.6501773Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/870e4ac4-2b6b-45dd-82eb-5670f17daaba?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A38Z&sr=b&sp=r&sig=DxDsnIVpxxeSQK08F4Gg2dAfV4K0z5X7Sd4OlaFMT7A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:38.650842Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A38Z&sr=b&sp=r&sig=nIMZ%2FRl0DJku%2FYDxHXGMg6pBLsEGntiL0bAjJ%2Bl8oLc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:38.6510139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A38Z&sr=b&sp=r&sig=iAfEorWoVmLZa9xUfwPr6ImMIKCPhyaAScfj55mG9uM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:38.6511879Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/425f3133-3a2e-4cab-bfe4-bb041f74f98c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A38Z&se=2024-11-20T12%3A24%3A38Z&sr=c&sp=rl&sig=BUo5Eka2U0I44aWW%2Brk5f2mIYrM6qrj9R0YQnqTA13w%3D","expireDateTime":"2024-11-20T12:24:38.6513643Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:24:37.787Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-20T11:24:38.126Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:38.64Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4844' + - '4946' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:30 GMT + - Wed, 20 Nov 2024 11:24:38 GMT location: - - https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2022-11-01 + - https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 87ecd870-5047-40da-9143-e93d1035c9f5 + - cb429492-f834-433c-8dcd-fb3306edbc39 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101326Z-er1d798b584wktgkhC1SINnqns000000012g000000003598 + - 20241120T112437Z-r16f5dbf67644l6hhC1YVRnems00000003u00000000011md x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1209,31 +1275,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=UrCRvjeSpzSa8WcsA82kf%2FhgkkJjYo3HXBSMgv0xrMQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.637293Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=8qrCnvt5nSbZB1U8znoqYb44spQGR7PI2rMdJGzREZ0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:30.6369901Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=aQPpHo0AJ8vZsCEtSPr43HKxGNNIPY9xmjO91taIH%2F0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.6373802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=IgHsHQszRhxnnARbu9wD2X9RrokML2e1qp3MRi1e8zg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.6374761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=3shmTJuZuIuE0lekKNnIk%2BmWbOZs63WJOTFtuDaQNbE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.6377682Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A30Z&se=2024-11-06T11%3A13%3A30Z&sr=c&sp=rl&sig=GzzxMCeICFR9FsyUsw%2FINtEoift5Islbrf2Djczbxg0%3D","expireDateTime":"2024-11-06T11:13:30.6378742Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:28.061Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/1908670c-2e3a-4c07-b3cb-c30ee6976432?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A35Z&ske=2024-11-21T01%3A24%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A38Z&sr=b&sp=r&sig=L9W%2FdYuBEjCCmrUoQqguNcdErjR7bCwKTiP2jXml3F8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:38.7948025Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A35Z&ske=2024-11-21T01%3A24%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A38Z&sr=b&sp=r&sig=WXSceI7MgRnjYy%2BqxnspwAUbDU5AvicFFomhEPhlzUY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:38.7942815Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/870e4ac4-2b6b-45dd-82eb-5670f17daaba?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A35Z&ske=2024-11-21T01%3A24%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A38Z&sr=b&sp=r&sig=7jaD%2FXaizuhv1DUTJ5oN%2BwYHrc%2FfWEZvhbcUyD2qxQY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:38.7949705Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A35Z&ske=2024-11-21T01%3A24%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A38Z&sr=b&sp=r&sig=yvLhXzTk8nlRjYMBsTZKQUSEmMRAineS6IrhonUlQ%2B4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:38.7951004Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A35Z&ske=2024-11-21T01%3A24%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A38Z&sr=b&sp=r&sig=QBvUOxfD9PKplK1JW%2FtOtGW1SfG1TecqhhRTALloZvA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:38.795377Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/425f3133-3a2e-4cab-bfe4-bb041f74f98c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A35Z&ske=2024-11-21T01%3A24%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A38Z&se=2024-11-20T12%3A24%3A38Z&sr=c&sp=rl&sig=xiurA4KidTUTgwlBOQ2MbJ8ZotEFzCCcdnFnxAGZwiI%3D","expireDateTime":"2024-11-20T12:24:38.7955139Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"NOTSTARTED","startDateTime":"2024-11-20T11:24:38.781Z","executedDateTime":"2024-11-20T11:24:37.787Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-20T11:24:38.126Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:38.781Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4840' + - '4993' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:30 GMT + - Wed, 20 Nov 2024 11:24:38 GMT mise-correlation-id: - - 38d4d785-9f8d-436d-a0d9-696f66941b17 + - 65e01548-47ff-474c-b78c-bb70688c8ee8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101330Z-er1d798b584wktgkhC1SINnqns000000012g0000000035at + - 20241120T112438Z-r16f5dbf67644l6hhC1YVRnems00000003u00000000011nc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1251,31 +1318,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A36Z&sr=b&sp=r&sig=RBwwJ6S6hjKpaQF%2BFcLqRfJaKG0iM4LWdajqTMdGcZw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:36.3892041Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A36Z&sr=b&sp=r&sig=JJaocd%2Fwjlz9C%2BMPADg3QPk6nqahMPWanXN%2By%2B0cUsU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:36.3155717Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A36Z&sr=b&sp=r&sig=tipM6swrC%2F%2Bm0nEejDoreWRs2kL45NjA%2FUGyeAKfmz0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:36.3893236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A36Z&sr=b&sp=r&sig=bY4JeKKwfRPEP0lSipQ6XKRXx09Vs1cywq42PgtSvMM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:36.3894232Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A36Z&sr=b&sp=r&sig=%2FjobRGTmfmt%2Bn%2BoHNMtONdt88SXKJCPhhTZD1xjiddU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:36.3895321Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A36Z&se=2024-11-06T11%3A13%3A36Z&sr=c&sp=rl&sig=%2BWDfQN3BTQJj%2By4vEws6yQXBfhB380YbO4ZmHX%2BXvNA%3D","expireDateTime":"2024-11-06T11:13:36.3896422Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:30.933Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:31.063Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/1908670c-2e3a-4c07-b3cb-c30ee6976432?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A43Z&sr=b&sp=r&sig=%2BrulJn4bj3oRceR5g666gHfu9k54qJ9J58RtBH4UG9I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:43.9482514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A43Z&sr=b&sp=r&sig=f7hSIGWIba0C1wNGpQI1qw1cdDp0P%2FD%2FZUrxqPeW2Y4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:43.9478396Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/870e4ac4-2b6b-45dd-82eb-5670f17daaba?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A43Z&sr=b&sp=r&sig=q0EqYrDiOQXPKALibWGy4Dv1eMo%2B%2FA5AAJgNot0JLFE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:43.9484275Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A43Z&sr=b&sp=r&sig=GJbljTUoVFNLe7o757Eagk09AJ1O4sfEXjT27l%2BiLoM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:43.9485944Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A43Z&sr=b&sp=r&sig=01t1Dk2WLWts7gCzcNE30DnxF4pnxa4KaS2jZDLp1hY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:43.9487694Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/425f3133-3a2e-4cab-bfe4-bb041f74f98c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A43Z&se=2024-11-20T12%3A24%3A43Z&sr=c&sp=rl&sig=fwCfK%2BQYe5jghUo7cA0yCouhnDTiNk9W9hOdUGYn4Vg%3D","expireDateTime":"2024-11-20T12:24:43.9489326Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:38.781Z","executedDateTime":"2024-11-20T11:24:37.787Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-20T11:24:38.126Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:39.033Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4908' + - '4996' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:36 GMT + - Wed, 20 Nov 2024 11:24:43 GMT mise-correlation-id: - - e8803d90-3ddd-4690-bda1-2c204fadc97e + - 1b2e8b41-d5d4-4558-9d8c-c320f967a2db strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101336Z-er1d798b584wktgkhC1SINnqns000000012g0000000035cv + - 20241120T112443Z-r16f5dbf67644l6hhC1YVRnems00000003u00000000011r4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1293,31 +1361,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A41Z&sr=b&sp=r&sig=yAQWut52EJRU1t%2Bv04PRW8%2BlRl2zSTBA%2BZKQJfGWqZs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:41.8141226Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A41Z&sr=b&sp=r&sig=J6xHtnVKGTKy5qlEhnDkDyZQLY%2FGnfHQhy7opFoibmo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:41.8137022Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A41Z&sr=b&sp=r&sig=ZLVettfhUU4smfbsFjTy44DraWt86pj7L%2BifyKgo6%2BI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:41.8142743Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A41Z&sr=b&sp=r&sig=azx2b5ObRBnzDM2wcvyGcJ%2BKLMu%2BVvh8qDnJXx9O5dw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:41.8144Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A41Z&sr=b&sp=r&sig=qNpGMeN%2BIbq%2FM%2FBBDZ3gO17N0BbtXKJgFYXbW3cWYzI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:41.8146051Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A41Z&se=2024-11-06T11%3A13%3A41Z&sr=c&sp=rl&sig=VaxrlAZtSfB9j%2FAewxFxtkvZcDOtbml7DapyZhvovtA%3D","expireDateTime":"2024-11-06T11:13:41.8147318Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:30.933Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:31.063Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/1908670c-2e3a-4c07-b3cb-c30ee6976432?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A49Z&sr=b&sp=r&sig=YvstKLXr%2F5uXO9w4ESv7lHJJNcsFPD9DaCEgemiTHfQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:49.1021199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A49Z&sr=b&sp=r&sig=C21YecyLH3qJtBUqU%2BZCKwho1jQoeia4Vdk1H6KV4aE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:49.1018028Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/870e4ac4-2b6b-45dd-82eb-5670f17daaba?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A49Z&sr=b&sp=r&sig=agXP4ZPYIwaulLu9%2BguNI5fINk5%2FCDcYO3qk%2F3KE68M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:49.1022193Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A49Z&sr=b&sp=r&sig=gSOQ7k3udFM7VknAHMTR%2Fq1IK2Fc0r9XxolLtyFohTs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:49.1023149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A49Z&sr=b&sp=r&sig=PonCeKn4bqHcRxifqy7FS93SWucnGoNtRNnP3gTUU3s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:49.1024054Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/425f3133-3a2e-4cab-bfe4-bb041f74f98c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A42Z&ske=2024-11-20T18%3A23%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A49Z&se=2024-11-20T12%3A24%3A49Z&sr=c&sp=rl&sig=y5MuTIlz8cSFX8NpWNhKGZM2N4b1Z%2Bxr2vuqQs%2BOeM0%3D","expireDateTime":"2024-11-20T12:24:49.1025024Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:38.781Z","executedDateTime":"2024-11-20T11:24:37.787Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-20T11:24:38.126Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:39.033Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '4998' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:41 GMT + - Wed, 20 Nov 2024 11:24:49 GMT mise-correlation-id: - - b7bd51c1-c7a8-4aa7-9e55-e09f1098968f + - 3e31d353-590f-4046-bdca-679fce176beb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101341Z-er1d798b584wktgkhC1SINnqns000000012g0000000035f7 + - 20241120T112449Z-r16f5dbf67644l6hhC1YVRnems00000003u00000000011u6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1335,31 +1404,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A47Z&sr=b&sp=r&sig=2MY8%2Ff%2B547evGvqbL%2B0oIzNLmaqQx2eNQMrzIgawneM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:47.2082674Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A47Z&sr=b&sp=r&sig=HBrakHHnHKrv6P1pC8mR%2FXJBELExFz%2BbTvv9%2Bmv%2F8HA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:47.2079362Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A47Z&sr=b&sp=r&sig=BSuIS77D1J6h0QOXJoZGKnQoHI1bdZsbFhEbpBDFjgo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:47.2083909Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A47Z&sr=b&sp=r&sig=9ZkpMPbRam75J9b%2B%2FpDEX%2BjMI7Gso9U17iU%2F78FR1KU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:47.2085142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A47Z&sr=b&sp=r&sig=0luWo0CybOpzFNn9Kul8umEcp8YLLFPorYDMc9CB998%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:47.2086622Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A47Z&se=2024-11-06T11%3A13%3A47Z&sr=c&sp=rl&sig=m11FbNxYyzcRVhlb3JT7nXk%2F2XZ712RkRlT%2BkMjqXa0%3D","expireDateTime":"2024-11-06T11:13:47.2087861Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:30.933Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:31.063Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/1908670c-2e3a-4c07-b3cb-c30ee6976432?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A54Z&sr=b&sp=r&sig=AITGqfvw7hWbOhV8ha4BB9GibDVP23gWa8cMLe5%2BMzs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:54.2368475Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A54Z&sr=b&sp=r&sig=r7N3eU9FoJz%2BUsayf6gbmZbznRaPpCv0uYeR5czLxHA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:54.2365171Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/870e4ac4-2b6b-45dd-82eb-5670f17daaba?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A54Z&sr=b&sp=r&sig=2P1qN2vArlGwqpye%2FDxHebeMc4RgIilmm0c7u1uPCeM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:54.2369419Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A54Z&sr=b&sp=r&sig=JiXn23mHAvDNOYDFXq8slE2alpfwQMH3a5qo4NmpfLw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:54.2370345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A54Z&sr=b&sp=r&sig=xBBQkUMNqdpdip86svywfETDWTXCK%2F0xH%2FamrDoKmwk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:54.237134Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/425f3133-3a2e-4cab-bfe4-bb041f74f98c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A09Z&ske=2024-11-20T18%3A24%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A54Z&se=2024-11-20T12%3A24%3A54Z&sr=c&sp=rl&sig=0QnaA0cv0epPjKtya5zezw0Ahju2TAWRsBbKq6EXmT8%3D","expireDateTime":"2024-11-20T12:24:54.2372187Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:38.781Z","executedDateTime":"2024-11-20T11:24:37.787Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-20T11:24:38.126Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:39.033Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '4991' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:47 GMT + - Wed, 20 Nov 2024 11:24:54 GMT mise-correlation-id: - - 92886d05-c9e9-4890-b6e8-c7896d54374b + - 23d4fe00-a816-4b1f-8cc1-b817cf9279b7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101347Z-er1d798b584wktgkhC1SINnqns000000012g0000000035km + - 20241120T112454Z-r16f5dbf67644l6hhC1YVRnems00000003u00000000011xr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1377,35 +1447,39 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A52Z&sr=b&sp=r&sig=xfDuVOhP%2Fm7oVimBY5wLXHSjeuNNmboiiSPPn6lmNUs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:52.6431928Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A52Z&sr=b&sp=r&sig=CYPHYIfI6D34hcN9ENII4HVDkBQSH69XlSpw9moi1UE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:52.6427161Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A52Z&sr=b&sp=r&sig=hOIE8q%2BA3%2FexUgojT%2BGcZMsMV%2F67q%2B3KaFpygqyGKvw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:52.6433294Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A52Z&sr=b&sp=r&sig=zh0bMtF6VP8YgaCRBxb9MOeoB301Mz3C2uSdIqb2Nts%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:52.643475Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A52Z&sr=b&sp=r&sig=oc2oEa6pwj%2B7SnnimtSrZVvD%2FJ8gInrW9SoqvZn8X5Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:52.6436161Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A52Z&se=2024-11-06T11%3A13%3A52Z&sr=c&sp=rl&sig=QgLGJCWgeT1Ac2vUSujkMAMOnvw2umeZFZ9%2BncLarkw%3D","expireDateTime":"2024-11-06T11:13:52.6437586Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:30.933Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:31.063Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:05.7790966Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:05.7790966Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive + cache-control: + - no-cache content-length: - - '4897' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:52 GMT - mise-correlation-id: - - c92d2d07-13a6-4694-9b09-39107d13a4a6 + - Wed, 20 Nov 2024 11:24:58 GMT + etag: + - '"97038b02-0000-0200-0000-673dc6ae0000"' + expires: + - '-1' + pragma: + - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T101352Z-er1d798b584wktgkhC1SINnqns000000012g0000000035p8 x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: FA05D88BCF674D5BAABC1FEF8A404EAE Ref B: CO6AA3150219045 Ref C: 2024-11-20T11:24:59Z' status: code: 200 message: OK @@ -1419,39 +1493,36 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:11:36.5450318Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:36.5450318Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/1908670c-2e3a-4c07-b3cb-c30ee6976432?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A59Z&sr=b&sp=r&sig=P4Qkpsq4nT%2BYNUHZnFRK98%2BfXNWdj3U9K6p7e8vapik%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:59.3558347Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A59Z&sr=b&sp=r&sig=BE9p6op2RaLyCaWwXigtv8ZZeATCc%2F%2B9k%2BpFqOs28m4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:59.355338Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/870e4ac4-2b6b-45dd-82eb-5670f17daaba?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A59Z&sr=b&sp=r&sig=CHDgTjUIAYScF7of2ozMmkXlfJBNWYi2NEZ6OSDGKNg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:59.3561047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A59Z&sr=b&sp=r&sig=88ThBNIA2dqL3DNxT0rZ6NUpCBnTKiqxe7OPI4i63c4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:59.3563922Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A59Z&sr=b&sp=r&sig=CiXsabkeMBUZCw6v5lE71viCRCOEAZ4PkKNMr8H4zpo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:59.3566205Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/425f3133-3a2e-4cab-bfe4-bb041f74f98c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A59Z&se=2024-11-20T12%3A24%3A59Z&sr=c&sp=rl&sig=gPtN1k4VNkRGTEzu1OB4iJCuaM40HatRDPS1DvsntYo%3D","expireDateTime":"2024-11-20T12:24:59.356827Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:38.781Z","executedDateTime":"2024-11-20T11:24:37.787Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-20T11:24:38.126Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:39.033Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: - cache-control: - - no-cache + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive content-length: - - '653' + - '4990' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:52 GMT - etag: - - '"fa00e23c-0000-0200-0000-672b40f00000"' - expires: - - '-1' - pragma: - - no-cache + - Wed, 20 Nov 2024 11:24:59 GMT + mise-correlation-id: + - 02f1e74e-b24c-4fbc-abbd-3febd3bac1b1 strict-transport-security: - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112459Z-r16f5dbf67644l6hhC1YVRnems00000003u0000000001217 x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: F7129C7093174ED4B56F417251E316BE Ref B: MAA201060514039 Ref C: 2024-11-06T10:13:53Z' status: code: 200 message: OK @@ -1467,31 +1538,32 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: POST - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case:stop?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case:stop?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=L6mZN%2FxuOhp%2F97EABnRcBbQ9DhtlXrUbwCkxufRlGBo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.4052659Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=0%2BVnWF7ffl4aWbVFV0GZIvWcLFCmxD6UgenmMXSOVq0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:56.4050653Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=crXwAkXcqolyTfooS%2FHsBAYk4WxdnEw67lzhYEFVOEA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.4053172Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=cslChsJLKEFP2OiOelXGq2X%2FZ6MQYxI3MOtKvvJLHbo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.4053663Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=iCudkw6eBNqv4lmA2HOLxuKfRgJska%2FSnse9THjXecg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.4054142Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A56Z&se=2024-11-06T11%3A13%3A56Z&sr=c&sp=rl&sig=N9JpBlo1%2B%2BGReml%2BnOp66mbHnsuY9AhsM2o%2FQKX4wkk%3D","expireDateTime":"2024-11-06T11:13:56.4054606Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:30.933Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:31.063Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/1908670c-2e3a-4c07-b3cb-c30ee6976432?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A53Z&ske=2024-11-20T18%3A23%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A59Z&sr=b&sp=r&sig=OhAWfhDumadHTK45ZXXZXGtyRbAAkjKI7yYJM1Q0rb8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:59.7365611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A53Z&ske=2024-11-20T18%3A23%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A59Z&sr=b&sp=r&sig=MhWHnx0UohNXmDLEYlycKe9kF1xBtZ4vpzSyogUTxew%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:24:59.7363186Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/870e4ac4-2b6b-45dd-82eb-5670f17daaba?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A53Z&ske=2024-11-20T18%3A23%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A59Z&sr=b&sp=r&sig=xKO%2BCrXFt3DZXaaZSvuEBmTOtA6gY0rs2RzZ6sZJ4tQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:59.7366505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A53Z&ske=2024-11-20T18%3A23%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A59Z&sr=b&sp=r&sig=F2lKCF9sjLNWHv5C6Qj77VKbkfjVe8laB6HJWNrplg8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:24:59.7367405Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A53Z&ske=2024-11-20T18%3A23%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A24%3A59Z&sr=b&sp=r&sig=yoLqcSZOhXmWIIqBfUyDnIUHgWu%2BN7puDUIBtoKveN8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:24:59.7368237Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/425f3133-3a2e-4cab-bfe4-bb041f74f98c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A53Z&ske=2024-11-20T18%3A23%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A24%3A59Z&se=2024-11-20T12%3A24%3A59Z&sr=c&sp=rl&sig=IygP49KS6AjJ%2BvFEyVNaAplnMOgUiNKfNIl1LS7OBM4%3D","expireDateTime":"2024-11-20T12:24:59.7369044Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:24:38.781Z","executedDateTime":"2024-11-20T11:24:37.787Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-20T11:24:38.126Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:39.033Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4841' + - '4929' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:56 GMT + - Wed, 20 Nov 2024 11:24:59 GMT mise-correlation-id: - - 9b7352c1-2887-4ff6-8eaa-8cfd0d3452a2 + - a06f7a92-6519-4c37-b2a7-18949860b4c5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101355Z-er1d798b584dstwlhC1SINq2xc00000005e0000000004u3r + - 20241120T112459Z-1789fbbbd78ftxz9hC1PDX19k00000000heg0000000051qh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1509,31 +1581,34 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A58Z&sr=b&sp=r&sig=M%2FwFLSGi9Gjr4XE5afopK3hAUxVhvwfexw3PKx%2Bw2GM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:58.0556495Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A58Z&sr=b&sp=r&sig=i6%2B40zEBG12eifafg7GAIivMxOcQ%2FUyLTZrWHcHp5Sw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:58.0552346Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A58Z&sr=b&sp=r&sig=22GFBiTooTNHNiPtNfxZCXptbijCFfd98PJy%2FtAtYz8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:58.0558212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A58Z&sr=b&sp=r&sig=mWqwNF%2FqXypazeQ%2F8PZFT07bDADzZ68Lq6RySHW3T5A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:58.0559922Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A58Z&sr=b&sp=r&sig=MRUHpNqh4KRlXU%2BDwFGdqm6OYkMeo9BHp4g4IN4yrpA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:58.05616Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A58Z&se=2024-11-06T11%3A13%3A58Z&sr=c&sp=rl&sig=3McYZx83AscmRiX0ndAKK0siErUioaiBKIUoMLRvS1Y%3D","expireDateTime":"2024-11-06T11:13:58.0563217Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2024-11-06T10:13:30.933Z","endDateTime":"2024-11-06T10:13:56.525Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:57.948Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"errorDetails":[{"message":"Failed + to provision test engines for test run. Please try again. If the issue persists, + please raise a support ticket along with the test run id."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/1908670c-2e3a-4c07-b3cb-c30ee6976432?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A04Z&sr=b&sp=r&sig=kAr0uOaztxDq8pOGb2QzirDOCzTUkLQxbXfwh5MPeEY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:04.4794037Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A04Z&sr=b&sp=r&sig=d6dQQ86NjLWd%2FnEJbf60ROD%2Fw1%2FzFANZIRSmvBLcZI4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:04.4791227Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/870e4ac4-2b6b-45dd-82eb-5670f17daaba?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A04Z&sr=b&sp=r&sig=3gd0zMAkuaIzqa0NMHCxW1RYzTfe56lNc%2BMd%2BsjS1%2Fo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:04.4794989Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A04Z&sr=b&sp=r&sig=jJ2qrBIlY6O%2B6WXq9emBjsu4JZQbNfISiOtsxupXDbM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:04.47959Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A04Z&sr=b&sp=r&sig=EovKiJ0GAUJ8Uq7t52OEZnZTohkhucysbWai%2FsTmXWg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:04.4796779Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/425f3133-3a2e-4cab-bfe4-bb041f74f98c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A23%3A41Z&ske=2024-11-20T18%3A23%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A04Z&se=2024-11-20T12%3A25%3A04Z&sr=c&sp=rl&sig=APl%2BZG38q5KEEhWmonYrWc2ycUG5yauN1oIemd%2FPKuE%3D","expireDateTime":"2024-11-20T12:25:04.4797657Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2024-11-20T11:24:38.781Z","endDateTime":"2024-11-20T11:24:59.866Z","executedDateTime":"2024-11-20T11:24:37.787Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-20T11:24:38.126Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:00.829Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4932' + - '5215' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:58 GMT + - Wed, 20 Nov 2024 11:25:04 GMT mise-correlation-id: - - 80635145-326d-429a-9e30-e2184176a631 + - d2b1c102-c7e9-49ea-b954-85afeda0c155 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101357Z-er1d798b584wktgkhC1SINnqns000000012g0000000035rw + - 20241120T112504Z-r16f5dbf67644l6hhC1YVRnems00000003u000000000126s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1551,23 +1626,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:11:36.5450318Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:36.5450318Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:05.7790966Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:05.7790966Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:19 GMT + - Wed, 20 Nov 2024 11:25:19 GMT etag: - - '"fa00e23c-0000-0200-0000-672b40f00000"' + - '"97038b02-0000-0200-0000-673dc6ae0000"' expires: - '-1' pragma: @@ -1583,7 +1658,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 417851C3EBC0415A875B037AADFD8103 Ref B: MAA201060513023 Ref C: 2024-11-06T10:14:19Z' + - 'Ref A: 1A3A53748B6D474A945D6EA1340382F7 Ref B: CO6AA3150218023 Ref C: 2024-11-20T11:25:20Z' status: code: 200 message: OK @@ -1597,33 +1672,34 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://7be5b988-b872-4ea2-a585-100e28a2de57.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"errorDetails":[{"message":"Failed + string: '{"passFailCriteria":{"passFailMetrics":{"2c826591-9153-4214-b56a-800909eae72a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8bc5befa-5b96-4d14-a40f-8ce579d50619":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9677cad7-3e2e-409a-95c6-f5a9f2ff076b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"errorDetails":[{"message":"Failed to provision test engines for test run. Please try again. If the issue persists, - please raise a support ticket along with the test run id."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A22Z&sr=b&sp=r&sig=94iTfhJBC6k0zZZwOJ9yqsn9nT9FQ6StxC6YOVV%2F48k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:22.4773419Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A22Z&sr=b&sp=r&sig=GaR%2BmAschpgaHRb51jEaE61AuhdVliNJ9MpI3Jf9duQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:22.4769707Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A22Z&sr=b&sp=r&sig=QOw9i7ZrsD7Uz%2FQIgeK6KBIeMy5JDQsselztqdfAaQY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:22.4774839Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A22Z&sr=b&sp=r&sig=heB8AvHW2XJek4zmyCAt6Sl2QRff0Hhnh9JzurAy%2FZ8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:22.4776199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A22Z&sr=b&sp=r&sig=QIuA8SaIKKTjlstD2ZFLU%2BvJjnWD3eS7teY9Ryx%2FSsI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:22.4777619Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A22Z&se=2024-11-06T11%3A14%3A22Z&sr=c&sp=rl&sig=nUTsYTo3sKG18OuDmDqFkCn7BY5AVNiHZtMEDl3a%2BRk%3D","expireDateTime":"2024-11-06T11:14:22.4779262Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2024-11-06T10:13:30.933Z","endDateTime":"2024-11-06T10:13:56.525Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:58.478Z","lastModifiedBy":"hbisht@microsoft.com"}' + please raise a support ticket along with the test run id."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/1908670c-2e3a-4c07-b3cb-c30ee6976432?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A20Z&sr=b&sp=r&sig=48n5IYGEhBmaO1kSun5nRH1nZudSMVR%2BnlLoT9XbdfQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:20.556876Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/3432fb72-3936-453b-bf2f-ae74e2229cf6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A20Z&sr=b&sp=r&sig=rx3FsIAbscDEroM%2FFXk6fsWDC2Uly3vWQnN3aYpBOvI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:20.5566042Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/870e4ac4-2b6b-45dd-82eb-5670f17daaba?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A20Z&sr=b&sp=r&sig=zlTo5ndgFdTYndVKqPRwieXQDaA9hPcbt8h3J6i4Wv8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:20.5569755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/5e3e8ddd-da3d-45dc-aa4c-7ab73ce60bab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A20Z&sr=b&sp=r&sig=M0ffQENXBAJezhleSR0a9XZckahpS9FN2OtD3HXh7ZE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:20.5570999Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/addf2c3e-15f6-45ef-b831-a955f9885253/898155a8-5294-46e1-bc13-0d0fdec8e840?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A20Z&sr=b&sp=r&sig=m%2BRSKvoqv419w6iInpzv740XvgGWoDB%2ByLSH7hz0PHE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:20.5572608Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sdxfc9qlsoey46fwmuodvjn8.z3.blob.storage.azure.net/425f3133-3a2e-4cab-bfe4-bb041f74f98c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A38Z&ske=2024-11-21T20%3A24%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A20Z&se=2024-11-20T12%3A25%3A20Z&sr=c&sp=rl&sig=c4IkhVftGaasqt4Qjwx8A4drkncFSpm7LUoUV6%2BD9nk%3D","expireDateTime":"2024-11-20T12:25:20.5574333Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2024-11-20T11:24:38.781Z","endDateTime":"2024-11-20T11:24:59.866Z","executedDateTime":"2024-11-20T11:24:37.787Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2024-11-20T11:24:38.126Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:00.829Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5109' + - '5206' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:22 GMT + - Wed, 20 Nov 2024 11:25:20 GMT mise-correlation-id: - - 8daa6d38-2754-4262-89e6-baba9f4929be + - 3dc93705-5b84-4c5e-ac7d-df28128dab09 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101421Z-er1d798b584xcbglhC1SINumng00000005qg000000001fdg + - 20241120T112520Z-17b7777dc45dj5bhhC1CO1wt8s0000000w2000000000fs4w x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_update.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_update.yaml index d1317bef6eb..bce551356e0 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_update.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_update.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:49.6554876Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:49.6554876Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:32 GMT + - Wed, 20 Nov 2024 11:24:21 GMT etag: - - '"fa00633f-0000-0200-0000-672b413e0000"' + - '"9703f002-0000-0200-0000-673dc6dd0000"' expires: - '-1' pragma: @@ -39,9 +39,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 283AD1BF4CCC45188CFE4388D18B56EF Ref B: MAA201060514019 Ref C: 2024-11-06T10:13:32Z' + - 'Ref A: 12E505D943A14C959C6A671D6E6C8C4B Ref B: CO6AA3150218029 Ref C: 2024-11-20T11:24:21Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier update-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:13:37 GMT + - Wed, 20 Nov 2024 11:24:22 GMT mise-correlation-id: - - 9cba834e-b3de-4e23-bdd0-c8190d6d0c9f + - 37d11f1d-03e5-446b-9f64-109ddeab791a strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T101336Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gn5 + - 20241120T112422Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b6vk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"1142aa9e-40a4-4a07-8aad-00ed843974df": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"54e9a82f-07f1-41f5-ad19-bddf087681e3": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "0a298d9b-f8cb-4962-81ea-0e2e984b1459": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "7ee7fa03-1cfb-427d-902c-dd7856638ee4": + "78"}, "9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "01d59dc3-0133-483b-a2bb-ab49da169271": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:13:37.856Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:37.856Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:24:22.778Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:24:22.778Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1046' + - '1148' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:38 GMT + - Wed, 20 Nov 2024 11:24:22 GMT location: - - https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-03-01-preview + - https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-03-01-preview mise-correlation-id: - - ab55c433-69a4-4d66-b3e3-de948e542994 + - a3a8eed8-f494-47fd-9ffe-0db958ba8465 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101337Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gp6 + - 20241120T112422Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b6w8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:38 GMT + - Wed, 20 Nov 2024 11:24:22 GMT mise-correlation-id: - - c81017e1-051f-41ca-ba35-007e8acc4db9 + - a58b7b19-f4d7-4605-8d37-06ea7011fdb5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101338Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gqk + - 20241120T112422Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b6wv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-06T17%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A39Z&sr=b&sp=r&sig=jTMX68vU3rp%2BuHK7KEwNnsBs1al99235vNCyDVetYoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:23:39.1590627Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A23Z&sr=b&sp=r&sig=A7u%2BBUvkVHS3fHhUS7dP2ak8yAybDJ%2BvnIUww9T3YIc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:34:23.257244Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:39 GMT + - Wed, 20 Nov 2024 11:24:23 GMT location: - - https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - f306c611-3a78-40b4-ae54-b37ece5dafb4 + - 864e2945-9389-40ec-bf35-52fb1e453903 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101338Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gr9 + - 20241120T112422Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b6x5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-06T17%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A39Z&sr=b&sp=r&sig=jTMX68vU3rp%2BuHK7KEwNnsBs1al99235vNCyDVetYoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:23:39.5836557Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A23Z&sr=b&sp=r&sig=A7u%2BBUvkVHS3fHhUS7dP2ak8yAybDJ%2BvnIUww9T3YIc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:34:23.383585Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:39 GMT + - Wed, 20 Nov 2024 11:24:23 GMT mise-correlation-id: - - adda9c02-1873-406c-8c48-8a778b8ebe86 + - ae51f5a3-327b-4508-935b-2a82c9c6e160 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101339Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gs6 + - 20241120T112423Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b6yf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A40Z&sr=b&sp=r&sig=84ig46ozJN0EyyVxNu4gzXdnRZg5IdtdBGbfeRi1ja4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:23:40.1323619Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A23Z&sr=b&sp=r&sig=5xp7n86HaPFgikts1ujY6Mrhz5tgx%2FA6Q%2FzmAgGusDE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:23.6878398Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '567' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:40 GMT + - Wed, 20 Nov 2024 11:24:23 GMT location: - - https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 08fc4cae-e990-40d6-b25a-7522e6b84ec2 + - f7e0ce3c-c3f6-41c8-ba4b-a3332c1c406c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101339Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gsq + - 20241120T112423Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b6yy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,31 +351,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A40Z&sr=b&sp=r&sig=LD41gp7tKLWfQgjJ085la3jYGnXX6b37KjPyHeAibBU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:23:40.6886376Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A24Z&sr=b&sp=r&sig=AjR%2F2n0nQW5esY5o25ju4mYKfKPnqJS6cOGMGLo8mtU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:24.7509018Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '567' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:40 GMT + - Wed, 20 Nov 2024 11:24:24 GMT mise-correlation-id: - - 3a81f954-3724-4311-84b0-957e661381d6 + - fa3a948d-e777-4659-8752-f09df8a3acac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101340Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gtn + - 20241120T112423Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b700 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A46Z&sr=b&sp=r&sig=Uv5W3zFjB25bsdiwdvNeJgC1XzqHXiWxo9D0IZAZVUk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:23:46.0848755Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A29Z&sr=b&sp=r&sig=XCHnfGQKZ5U%2F%2Bm1TwMoFl3lr4lduq3jP5E2J85x%2Fh1k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:29.8704822Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '567' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:46 GMT + - Wed, 20 Nov 2024 11:24:29 GMT mise-correlation-id: - - 5a61096b-6c01-4189-b6b3-8ea53ab567fd + - 7bc87393-c2b9-4d68-8c51-f1a4276160d9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101345Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003h46 + - 20241120T112429Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b7kn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A51Z&sr=b&sp=r&sig=XBF7qB7Nej7ZWZTxTPa6fB5OQn2YADSuaOLlFJYQmps%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:23:51.4589551Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A34Z&sr=b&sp=r&sig=ffsm0yrWT728Cz7ulnkhrdXCIILXy7sxMtJU5CzURhQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:34.9819018Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '567' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:51 GMT + - Wed, 20 Nov 2024 11:24:34 GMT mise-correlation-id: - - 3b18b04e-397a-4111-8ee2-297d9164df66 + - 93bc3d9d-00ac-427c-9751-8ae706858884 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101351Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003hcm + - 20241120T112434Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b80c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A56Z&sr=b&sp=r&sig=jyCulwGRgOsFj3zqJRbkQLBO5d3D5Lw1NCH0hhmTIrc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:23:56.8988651Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A40Z&sr=b&sp=r&sig=szAaeG4jN8%2FnLIBlTX6w%2FbaqIcZ%2FYVgJKUlA5aCITDw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:40.0931427Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '567' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:13:57 GMT + - Wed, 20 Nov 2024 11:24:40 GMT mise-correlation-id: - - 636305d4-e39e-49fc-82d5-4ee2e9fe1547 + - 809fa355-e22f-44f5-bcee-7610fdc8056c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101356Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003hqk + - 20241120T112439Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b8cc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,73 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A02Z&sr=b&sp=r&sig=n5cx0VCLr%2FCIDG5GXkav%2BlCvASp%2ByZQEjUEtaQsSe4w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:24:02.2822608Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A45Z&sr=b&sp=r&sig=dxLELMZYAqN9CDWCFtzHPU38NVFlyCR4RFc14iKjx7w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:34:45.2353102Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:02 GMT + - Wed, 20 Nov 2024 11:24:45 GMT mise-correlation-id: - - 592b9492-aa6c-4845-81ba-e4ecb5277365 + - 5e98547a-c3e2-4db1-b8c0-3b4693e98934 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101402Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003k09 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-06T17%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A07Z&sr=b&sp=r&sig=4oZrlyHGrZZYqRKLaAkpPFHrgbizLJW%2FC30%2FDAPEplU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:24:07.6451643Z","validationStatus":"VALIDATION_SUCCESS"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '569' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 06 Nov 2024 10:14:07 GMT - mise-correlation-id: - - b420dcce-655c-4548-bd2f-980a92bf8576 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T101407Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003kgv + - 20241120T112445Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b8u5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,33 +658,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A08Z&sr=b&sp=r&sig=7cJ%2B%2BBCT%2F58RF4%2FHLkkMq7NTTFFwdqcPMdjEQAurixE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:08.3502789Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A45Z&sr=b&sp=r&sig=RobhxpHw9%2Bw0err1Lnr14rAtkxGwtdkrdoZ7sh2DPAM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:45.4940147Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '563' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:08 GMT + - Wed, 20 Nov 2024 11:24:45 GMT location: - - https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 170d7f2f-3338-471c-8c97-dd03f253cd61 + - 3e52121c-463d-45bb-88f1-7cd91400d240 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101407Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003khf + - 20241120T112445Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b8uc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +703,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A08Z&sr=b&sp=r&sig=zHPhzQkPeRNQaLOiL030tRxfUcXPHBQtfY4FjFWpNpo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:08.9056429Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A45Z&sr=b&sp=r&sig=RobhxpHw9%2Bw0err1Lnr14rAtkxGwtdkrdoZ7sh2DPAM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:45.5972826Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:09 GMT + - Wed, 20 Nov 2024 11:24:45 GMT mise-correlation-id: - - e85b97ec-bf90-45ae-8944-8254d92fe0e0 + - 677c3dae-0da2-4726-80c4-fbbd9ce1c307 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101408Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003kmd + - 20241120T112445Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b8vd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,31 +746,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A14Z&sr=b&sp=r&sig=O2HJ2cNYzrXnwcNjHWhuRRqAVXzCVsJTSa2K44Wdirs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:14.2604864Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A50Z&sr=b&sp=r&sig=6rLk9jM3M%2Bdq8COHO%2Bv2VyFAm6yF5Ckty%2FP%2FoCvo%2Bf0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:50.7096387Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:14 GMT + - Wed, 20 Nov 2024 11:24:50 GMT mise-correlation-id: - - f7d17d1b-00da-4d80-8c4d-78967f2cf410 + - f47faee9-426c-4022-aca8-a067b24c270a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101414Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003kw9 + - 20241120T112450Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b97w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +789,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A19Z&sr=b&sp=r&sig=Ox1kro61%2F6uLkmAPEUq4HFkmb0iYU0BvgvztQUKtQH8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:19.6232105Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A34%3A56Z&sr=b&sp=r&sig=Qb2shXUlmkDkppNHlN12EgMCnABTtslXrHcaH%2BlE2Aw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:34:56.3087006Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:19 GMT + - Wed, 20 Nov 2024 11:24:56 GMT mise-correlation-id: - - 0c695383-0e27-49a3-a7a3-0bfad6d3bd95 + - 30a9e296-f07f-48be-9d5d-566103cb19bd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101419Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003m5w + - 20241120T112456Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b9fd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A24Z&sr=b&sp=r&sig=xDtnEnGaGFyObQOrGFc8JZpMouwiLnKwPI3g5EZ7dn0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:24.9835851Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A01Z&sr=b&sp=r&sig=n6Q%2BYeHOcIaLtuq9gWXs8LiCsDukx9x%2Bt99EfjUXESM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:35:01.4977661Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:25 GMT + - Wed, 20 Nov 2024 11:25:01 GMT mise-correlation-id: - - 56334abd-03fe-469c-99d6-623b85356d03 + - 94e5c8b2-2fae-41be-a083-3c1a77371b16 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101424Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003mf5 + - 20241120T112501Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000b9xs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A30Z&sr=b&sp=r&sig=%2FfGIG6aYanSUCQMaTpOv6B8fu8Y5BFo3bm8BLFRDJws%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:30.3445311Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A06Z&sr=b&sp=r&sig=E%2B6vDW%2Bv36T%2BuWxCrOGEEgAuHZJH5lwmOYIeIXci%2F1U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:35:06.6057865Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:30 GMT + - Wed, 20 Nov 2024 11:25:06 GMT mise-correlation-id: - - 6b42e4bf-b1a3-4aac-b749-7fc8215bf358 + - 7a1fa897-0c69-46bf-94b6-0759007be184 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101430Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003mtq + - 20241120T112506Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000ba92 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A35Z&sr=b&sp=r&sig=kWeu9UyEJgLZ3qIhAQ6zMYPFzZR3uU%2BuYEAz9KV0AMY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:35.7466426Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A35%3A11Z&sr=b&sp=r&sig=n3UXWhGiFxGTbbPqCg6mQDEbUAfh%2BXaKRrYq%2BZq9y%2FI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:35:11.7106118Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:35 GMT + - Wed, 20 Nov 2024 11:25:11 GMT mise-correlation-id: - - 38ed487b-f603-44ad-b810-0d635045739b + - 60f53367-321c-41ee-a3cb-7e64b6c2ab5f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101435Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003n4d + - 20241120T112511Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000bant x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,31 +961,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A41Z&sr=b&sp=r&sig=lx0lCfVfpCBOirQTzrdZHHAYUFvdajpwQ1UYEkyGLOQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:41.1164533Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A11Z&sr=b&sp=r&sig=fmOHGTdkJbYbZpm2FaR0e1pER4lzxxL5zF92E6W91OI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:11.8056354Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A11Z&sr=b&sp=r&sig=SF5dsZX74Mj9HeTOPOTROzDAfjGfn3OXdhQ6iYKewRw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:11.8061588Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A11Z&sr=b&sp=r&sig=MOFAq4XQrnxdL%2F8L4cz6W5Jhxm3BZjPAdat00hoJzOE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:11.8063683Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:24:22.778Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:10.176Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '553' + - '2864' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:41 GMT + - Wed, 20 Nov 2024 11:25:11 GMT mise-correlation-id: - - c0944ba2-a3e7-4dba-ab50-b1194b66156e + - fb4951cb-de0f-40e7-841b-3c46041115e3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101440Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003nd8 + - 20241120T112511Z-17b7777dc45kqgqphC1CO17ves0000000w3000000000banx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1026,66 +1005,23 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A41Z&sr=b&sp=r&sig=oAwrs65TWaWUhyLP%2BWgbJv9XENcebZievupvOCzk5mU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:41.4872684Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A41Z&sr=b&sp=r&sig=liKQB6vDV6vZx5lvECVo0PLOeyGLctHvEHGnWl5EUTU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:41.48755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A41Z&sr=b&sp=r&sig=gcPYoWdU1IgVJFrAUGDupZDjSbZhDEF%2Bg8TTclYbO00%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:41.4876507Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:13:37.856Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:37.506Z","lastModifiedBy":"hbisht@microsoft.com"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '2759' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 06 Nov 2024 10:14:41 GMT - mise-correlation-id: - - c90a3982-ec19-44a5-bbaa-03d51beb9842 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241106T101441Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003ndt - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:49.6554876Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:49.6554876Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:44 GMT + - Wed, 20 Nov 2024 11:25:12 GMT etag: - - '"fa00633f-0000-0200-0000-672b413e0000"' + - '"9703f002-0000-0200-0000-673dc6dd0000"' expires: - '-1' pragma: @@ -1101,7 +1037,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0655DFC494304A27860C1D1B8DB11AF6 Ref B: MAA201060514045 Ref C: 2024-11-06T10:14:43Z' + - 'Ref A: 1562810502DC4FFE95E5C2DA0DB68556 Ref B: CO6AA3150219053 Ref C: 2024-11-20T11:25:12Z' status: code: 200 message: OK @@ -1115,32 +1051,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A47Z&sr=b&sp=r&sig=qpwXmL2KjZy42eLQz65PKq1Cdaashh0%2FoMTPT12i%2B9g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:47.3363058Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A47Z&sr=b&sp=r&sig=lkeoZkjBkekG49uw2NJjYQtC9zvabihjhAbgNDnMVnk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:47.3369972Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A47Z&sr=b&sp=r&sig=E0N1uyboDEtvRNo6Eib4bNYxbNkA4yhvKMXB6aQrOb8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:47.3372898Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:13:37.856Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:37.506Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A12Z&sr=b&sp=r&sig=LiWnspxDtYKEnXOzRZC%2FabDv5BVwG%2BmVR9DZCpOF02A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:12.6225266Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A12Z&sr=b&sp=r&sig=hTSsyacBy9XAOLjtAqH5rPr9kHWiwIX5qdFCASAHaks%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:12.6228135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A12Z&sr=b&sp=r&sig=Fa%2FrWggN%2BGoO%2FjkuHlBQgBPDpi7osmljjBMIGgjwbGM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:12.6229168Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:24:22.778Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:10.176Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2773' + - '2884' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:47 GMT + - Wed, 20 Nov 2024 11:25:12 GMT mise-correlation-id: - - 1fd20c09-fb80-43f6-ae6c-0b12ee88fbc7 + - 9fa271c3-caf7-46d5-9bde-b265b4300f68 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101446Z-18557d4f7b89vr94hC1SGE33w400000005kg000000002vpx + - 20241120T112512Z-17b7777dc45mwcxxhC1CO188kg0000000w5g00000000s7w7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1158,23 +1095,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:49.6554876Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:49.6554876Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:49 GMT + - Wed, 20 Nov 2024 11:25:12 GMT etag: - - '"fa00633f-0000-0200-0000-672b413e0000"' + - '"9703f002-0000-0200-0000-673dc6dd0000"' expires: - '-1' pragma: @@ -1190,7 +1127,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 285A85205EFC4A578142A6BB17BD3473 Ref B: MAA201060515021 Ref C: 2024-11-06T10:14:49Z' + - 'Ref A: CFB141C8591D4D47822F6784CD50B58F Ref B: CO6AA3150220053 Ref C: 2024-11-20T11:25:12Z' status: code: 200 message: OK @@ -1204,30 +1141,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with given name \"update-test-run-case\".","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:14:52 GMT + - Wed, 20 Nov 2024 11:25:15 GMT mise-correlation-id: - - 2a921e3c-efe3-44f0-b883-b0a625acab2a + - d5d03241-0b99-4a45-affc-d63301f4120f strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T101451Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b1qa + - 20241120T112515Z-17b7777dc45b4878hC1CO13uc00000000w80000000001ck1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1251,31 +1189,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A53Z&sr=b&sp=r&sig=IS9sfQmKfUA4xFz0XRCtm4%2FxUu0iCuJdi5Qo2iHsEhc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:53.3999097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A53Z&sr=b&sp=r&sig=i3bN8MjAgsiiF8Lq2eSFmLJUGH3KGOYTD8pJMe%2FSPfg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:53.3996242Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A53Z&sr=b&sp=r&sig=nOil%2BQA2Xt%2F%2FUF0etPA%2F%2BrDzLp3WohWdMphE1D9Z%2Fqs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:53.3999999Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A53Z&sr=b&sp=r&sig=thGJcvd9jBwzR8GukzHGr6NuUFNjGP%2BtvMIL9AhteA4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:53.4000857Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A53Z&sr=b&sp=r&sig=mn%2FDsQmA5cqYPDHRC%2FTe8n1DXRpHxkwu6MMzmB9dt3I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:53.4001742Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A53Z&se=2024-11-06T11%3A14%3A53Z&sr=c&sp=rl&sig=kkVSIL8poZxPLpyRq9BGfi3m67%2BeoNCzVSXCDvtYvBc%3D","expireDateTime":"2024-11-06T11:14:53.4002615Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:53.168Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A16Z&sr=b&sp=r&sig=cycDjr7R2HAZhotfuU2qXw6fuXF2y8R82yFoXK8B3GQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:16.8718785Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A16Z&sr=b&sp=r&sig=DET2jktEzl2O6eSw8A5ZE6Zgs2iowD3%2F1dPeL64ULqw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:16.8714396Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A16Z&sr=b&sp=r&sig=dCH2S8XSaz4cpmFTrp1NaDB9jJqtt1JJjCfXbtRnj9g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:16.8720348Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A16Z&sr=b&sp=r&sig=XUkOVE%2Bj812JOMefJyaqA9NhQVNmkexUjTvn1ncvIyg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:16.8721648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A16Z&sr=b&sp=r&sig=uwR%2B0rvp9WPZmcF1HxR%2BAU8GtF1wMs25fz3sC%2BgTBMU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:16.8722972Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A16Z&se=2024-11-20T12%3A25%3A16Z&sr=c&sp=rl&sig=jWrakbDKYTLQ7hfyseumvk%2BCUpts2mCgCzZGzwrQdU0%3D","expireDateTime":"2024-11-20T12:25:16.8724226Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:16.859Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4865' + - '4957' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:55 GMT + - Wed, 20 Nov 2024 11:25:16 GMT location: - - https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2022-11-01 + - https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 18720280-a299-4d04-b99f-2576d25b232a + - c1505346-7b98-4d68-a619-c220b6698a2b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101452Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b1sg + - 20241120T112515Z-17b7777dc45b4878hC1CO13uc00000000w80000000001ckn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1293,31 +1232,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A16Z&sr=b&sp=r&sig=3THBAuLqZusKGsnWJKeguNz3TeoeMq6w7AnehNKnyyI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:16.9980605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A16Z&sr=b&sp=r&sig=4Gv4aECG2pq4h1Z1ir6bsVtS3yTa8J2jGAaV7ClJ8JU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:16.9976045Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A16Z&sr=b&sp=r&sig=M27wplQjDKfYXoxZcYmDywKpsUCs3ZFJZC8DXALl9Lg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:16.9982303Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A16Z&sr=b&sp=r&sig=crA1lT2cj7XpmWOV5uhT0k59CSj7bH9cpe8zpiXFHJw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:16.9984036Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A16Z&sr=b&sp=r&sig=rfdOGjSOca5Gcs6Xr9KjBexRJjhtfhQK98VEc0pY9d4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:16.9985712Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A16Z&se=2024-11-20T12%3A25%3A16Z&sr=c&sp=rl&sig=NkeERwokOWdNrAnY%2FhVwpm6RrZyzxwrrkQLPJPMI1jA%3D","expireDateTime":"2024-11-20T12:25:16.998712Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"ACCEPTED","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:16.859Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '4946' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:25:17 GMT + mise-correlation-id: + - 22b1a995-c4e5-4ea7-8e1e-6c4d61767dab + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112516Z-17b7777dc45b4878hC1CO13uc00000000w80000000001cna + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A55Z&sr=b&sp=r&sig=gm%2FLryXJuk%2BOtiWT%2FQOtkO2Hb9LOtkSVgiLAhatamUQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:55.7331425Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A55Z&sr=b&sp=r&sig=pA6Kvr%2FeFduj3MjL0BqmGQorBc0SPhvRT9MlNXWzfLI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:55.7328742Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A55Z&sr=b&sp=r&sig=NbdM9O04f5kPwK%2Fxx9%2BMuXcJ3Bai0PdxivxX584jQPw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:55.7332081Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A55Z&sr=b&sp=r&sig=0wTCzscL5104Y%2BundW3XIlVPwvsHECzczBKEJ6qpSt4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:55.7332765Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A55Z&sr=b&sp=r&sig=LKp010E35vI4I%2FR3bOXF%2FLUM6KRPteQ%2BoiX9UQ4Jg3s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:55.7333468Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A55Z&se=2024-11-06T11%3A14%3A55Z&sr=c&sp=rl&sig=oX1Q1zGtCB0ibpjQ6EkhsY9Po7lye6PMy9mVjuhKD7A%3D","expireDateTime":"2024-11-06T11:14:55.7334117Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A22Z&sr=b&sp=r&sig=z2oRE8Qp8r47dZuiGpojyr7s01W8rDJvLw7LX07YAQc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:22.1089256Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A22Z&sr=b&sp=r&sig=eP%2Fz4L1kIicXZJLJw4hFuSTek71kzlYIgqcQtOy6vNE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:22.1085537Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A22Z&sr=b&sp=r&sig=0Yuk4vbiZ0vXpwHlenOTEFrX6EH79BsMR9ic%2BcTzl4w%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:22.1090616Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A22Z&sr=b&sp=r&sig=AZkmmInbgPLmsPSfNYPNIGHYh5M0kHP9ifCPDlOCFgk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:22.1092052Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A22Z&sr=b&sp=r&sig=hdvV8rNYVk5O%2BRt2tGe2aaXAupOnFb1GYud7JblmaFA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:22.1093475Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A22Z&se=2024-11-20T12%3A25%3A22Z&sr=c&sp=rl&sig=GG6ReyPesIrR0fcpIhzVQobXqwF3BSywqkfOkwvRWyI%3D","expireDateTime":"2024-11-20T12:25:22.1094938Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:17.313Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4908' + - '4998' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:14:55 GMT + - Wed, 20 Nov 2024 11:25:22 GMT mise-correlation-id: - - 52e3a6ad-91e1-4d6e-b9f0-a499b647f5ab + - 221721d0-8e2c-4264-8d63-5683c9128da2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101455Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b22k + - 20241120T112522Z-17b7777dc45b4878hC1CO13uc00000000w80000000001cuu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1335,31 +1318,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A01Z&sr=b&sp=r&sig=7ybj%2FF28fwaqs9ueprSznB4R1PXSyxi8VytVSAniYgI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:01.1329695Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A01Z&sr=b&sp=r&sig=72kVcf%2BbHo8j1NmlCMmAeLpkflyPK72X9uqjZrkIxkc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:01.1327226Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A01Z&sr=b&sp=r&sig=fDes0%2Fu2ZMjrxIQPu7EuLrcWwAM0C%2Fkpg7Zmv%2Bwl8Qw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:01.1330277Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A01Z&sr=b&sp=r&sig=tScKzRljW7%2BwCnlB8jOyfA6%2FSDA77LZGh0UNMGxwlzs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:01.1330847Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A01Z&sr=b&sp=r&sig=zWCECCRQ2eokkXkq8l4FVJYBM90URhvurzGP4Oc8ySY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:01.1331401Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A01Z&se=2024-11-06T11%3A15%3A01Z&sr=c&sp=rl&sig=4%2Ffq2xWNquK7zM%2FfDaRWS3goDAZa%2Fwz783HuoYwjIvQ%3D","expireDateTime":"2024-11-06T11:15:01.1331955Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A27Z&sr=b&sp=r&sig=AjZnmN38l45uRgK1KvbefjPd8hnSGogL68nTHO9CihU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:27.2204268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A27Z&sr=b&sp=r&sig=GnFqEu1ap05LVgn2EuIEE8%2FNHL71x291iaMGNN8fLCI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:27.2200857Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A27Z&sr=b&sp=r&sig=Bhsb1rdFIFJgyA0ikXEH2GVThn9%2FTS7cXv32mNHn6do%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:27.2205627Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A27Z&sr=b&sp=r&sig=mH2WZKBrk%2BZd0YjiN85rCT%2BAK5byrufIPPEkTSeJRqM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:27.2207047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A27Z&sr=b&sp=r&sig=6EMQoc4x4btFMamBA92giF7ceqQV4bNmHM2YMBdMFLs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:27.2208396Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A27Z&se=2024-11-20T12%3A25%3A27Z&sr=c&sp=rl&sig=YzRNy3qGPhRCOFU%2BnOuatpliHkcj%2FrEJoCV83JFDgzM%3D","expireDateTime":"2024-11-20T12:25:27.2209735Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:17.313Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4908' + - '5004' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:01 GMT + - Wed, 20 Nov 2024 11:25:27 GMT mise-correlation-id: - - 147d0a20-b862-4ab8-a653-2e959661a61c + - 17d0e3cf-5e53-4899-8751-5d328b3fe070 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101501Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b2g2 + - 20241120T112527Z-17b7777dc45b4878hC1CO13uc00000000w80000000001d0n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1377,31 +1361,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A06Z&sr=b&sp=r&sig=T%2BY5yNx9BQaojhuUFTbVCs%2BGrkkV0uvBCx0xZhHFoiQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:06.6130118Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A06Z&sr=b&sp=r&sig=P%2Bp6I9wVBsv9V1k2Ole24tNDYXcjkhENeyyH09GPMaM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:06.6126697Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A06Z&sr=b&sp=r&sig=aOaVYY02DbXATYMhTJzU76ckLdVZT297vWwF%2BE%2BgOjU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:06.6131371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A06Z&sr=b&sp=r&sig=ggk3IeNsqJzxPNDWQxugqvJrL1%2BR29UlxnG22fnRxFE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:06.6132845Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A06Z&sr=b&sp=r&sig=LpRbqQNyVH963iTNRzcwJkzveBg%2BGYM2HlWI%2BPLBU%2Fk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:06.6134143Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A06Z&se=2024-11-06T11%3A15%3A06Z&sr=c&sp=rl&sig=4jwqKoOHs061rbU40Y2%2BDcIXz5iSxuoprRC1gy1rFPI%3D","expireDateTime":"2024-11-06T11:15:06.6135242Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A32Z&sr=b&sp=r&sig=xLP2d6XOEYt%2Bt%2Fcrfx3K2y%2BEBbsaO2WF%2FFZGXQVKoUI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:32.3573704Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A32Z&sr=b&sp=r&sig=dUyh3UBIzeLwW6T%2BCe8cAw0YSnoX5XeR18w1OvWXXkA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:32.3569358Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A32Z&sr=b&sp=r&sig=%2Bu%2Bo086WqQuV6KccbRH%2BOeKWh5hrRrH9%2FvBq0x5fEkM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:32.3575707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A32Z&sr=b&sp=r&sig=uQz676jpQp95tnypltkvJB%2FkBSVdw1ufMK6EuPPHKgI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:32.3577563Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A32Z&sr=b&sp=r&sig=YQ1EXxgqaTM8ph4z%2FRzQNa15FBrRNJSpaZk9vOW3iXY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:32.3579381Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A32Z&se=2024-11-20T12%3A25%3A32Z&sr=c&sp=rl&sig=h%2BcdmqfwlVDzidJrMP1dmA0kT0ggVOCLymmuh%2FP8dEs%3D","expireDateTime":"2024-11-20T12:25:32.3581156Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:17.313Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4908' + - '5018' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:06 GMT + - Wed, 20 Nov 2024 11:25:32 GMT mise-correlation-id: - - 0975e312-efad-4ff0-9e2b-4e06c21d9870 + - dfaca7cd-de60-4280-9dd0-6426e9be9daf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101506Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b34t + - 20241120T112532Z-17b7777dc45b4878hC1CO13uc00000000w80000000001d6u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1419,31 +1404,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=kDcf550kTQLnRnr86W97RUD6B6woeGa310JtbH3SLCI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.116872Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=SwvH7UQmXp2g3gWoGgIc9sPg33tkql2YpdXAyVfCGjs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:12.1161558Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=P3ZWAXYMTO4C4L%2BMMzM%2FQUCQWfptcmNHodAta4QhdS8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.1171974Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=2sIQxqkuPq%2Fs%2B2NVxxh%2FGFyQ%2FTJu5h7%2BLq4ZmEQ0K98%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.1175721Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=scb%2Bn89wyafcVEZ8nAElDx1NfCJixEJjm46GLIYUCVU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.1180707Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A12Z&se=2024-11-06T11%3A15%3A12Z&sr=c&sp=rl&sig=F5kAadDfJIdaMYJBBXlFUiBcP7hdhVymFBNx4huptJo%3D","expireDateTime":"2024-11-06T11:15:12.1183351Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A37Z&sr=b&sp=r&sig=%2BwQdNJA86%2FKA%2FiOO2hJ8UnGyMOxWjBJ22VPaiq5eMKM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:37.4637688Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A37Z&sr=b&sp=r&sig=08L1GIt7z1Q4mk8pkIA9ttEUcCO0zdC3HJ8nhH9yWEE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:37.4634936Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A37Z&sr=b&sp=r&sig=Gtl6W9w4MjLd4e6PDQ%2B%2Fd1YEBBD4yjhmBB%2BccgQA0IU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:37.4638494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A37Z&sr=b&sp=r&sig=A%2BcvtWtT2EY0E4k9mNRqhkfEXZ2ViH87QfszdNxcU8w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:37.4639224Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A37Z&sr=b&sp=r&sig=qN%2BziX0Qba%2B9fzYcnsE5FkVf8tA%2BgOZ4xK5J6i0lzYk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:37.463994Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A37Z&se=2024-11-20T12%3A25%3A37Z&sr=c&sp=rl&sig=8eJqWDB16%2F5e3MpIOupH44uWYFYKkDLrhW9Zi6%2BtYUw%3D","expireDateTime":"2024-11-20T12:25:37.4640633Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:17.313Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4903' + - '5015' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:12 GMT + - Wed, 20 Nov 2024 11:25:37 GMT mise-correlation-id: - - 4be69d09-0ee9-48ae-9f5f-e86fd2d4b0d4 + - ac675e9a-64c1-48c4-8d87-d73ef034c2b5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101511Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b3mr + - 20241120T112537Z-17b7777dc45b4878hC1CO13uc00000000w80000000001dbk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1461,31 +1447,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A17Z&sr=b&sp=r&sig=mi5h7XX10DZAonVsQo%2FIvUGA5lLW%2Bgr7ROhh3bDW%2BOs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:17.4929349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A17Z&sr=b&sp=r&sig=MEUpqj3l8suKGb32eaBv73x%2F2JmA%2FI2%2FcFb7g6vArOg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:17.4924723Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A17Z&sr=b&sp=r&sig=vPJOSrqsB%2BQzqyJBxaKYkIVUTCP3zufbQO9bax81eLs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:17.4931055Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A17Z&sr=b&sp=r&sig=R8%2BJ7GxbxP27Jtm05o0aFCUPQEjzZul%2BDuHChBQJ8fA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:17.4932847Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A17Z&sr=b&sp=r&sig=8PSU%2B%2Fq4T%2FnTcrpr5hF4QuO8bauEbBbn%2FtjyS2%2BK4tw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:17.4934522Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A17Z&se=2024-11-06T11%3A15%3A17Z&sr=c&sp=rl&sig=uh94s%2BPHM7jdKhmZgQuhvO4vjip0oXoWg6xFntpiQ7s%3D","expireDateTime":"2024-11-06T11:15:17.4936291Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A42Z&sr=b&sp=r&sig=OrG5eqChsOLnH4%2BGQo9BJJ6FlVbtu1mzvt1d0Gbxx58%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:42.565353Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A42Z&sr=b&sp=r&sig=UNPtja%2BXiL8mqy3NWdUC9kPh3x80rj59P9JF2EBrXRM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:42.5649195Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A42Z&sr=b&sp=r&sig=jl5zqQQ5Fb4MbdG51qKKWFlmClza4kZi9NUhCWjZ2kU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:42.5655509Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A42Z&sr=b&sp=r&sig=7fCoaQAxuvPG2Q%2BeUkAdetjnsikmV4zzdjuy2BUzdks%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:42.5657404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A42Z&sr=b&sp=r&sig=svzX9uVPfHxUGyWbUv0yZecpH2U9he44PfBj6L0I6Dg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:42.5659347Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A42Z&se=2024-11-20T12%3A25%3A42Z&sr=c&sp=rl&sig=XSeplEsc7Nx9LN3P8TucCuK%2BBZZ6PWpCsstRqYzCpsQ%3D","expireDateTime":"2024-11-20T12:25:42.5661261Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:17.313Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4918' + - '4999' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:17 GMT + - Wed, 20 Nov 2024 11:25:42 GMT mise-correlation-id: - - 04e97898-85c4-40e0-883e-a52280fdc4a2 + - df1b7604-6ac5-45e0-a439-5e2a44ebffc8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101517Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b3xr + - 20241120T112542Z-17b7777dc45b4878hC1CO13uc00000000w80000000001dpv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1503,31 +1490,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A22Z&sr=b&sp=r&sig=uGh5gaXnjLLtVRRxGqXb4%2F46a3l%2FOhn86MeOwEAfJto%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:22.8967697Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A22Z&sr=b&sp=r&sig=ar31FDHG982Wt8To9LIL2AtU5NmA42ke7IOXph5iAjM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:22.8963506Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A22Z&sr=b&sp=r&sig=sWvvJS9GTJAEtNyXzODmz0Fg33u%2FR8qDP0S6K8R7gjo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:22.8969359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A22Z&sr=b&sp=r&sig=gH3kiFMA%2BHRd4LldS82OOAvbWO15zUA6tn3w89TL7Hk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:22.8971063Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A22Z&sr=b&sp=r&sig=0Q%2FYz%2By8oq7NESGs0ib42DNLjxgpHSq8M%2FQN00%2F4oY4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:22.8972706Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A22Z&se=2024-11-06T11%3A15%3A22Z&sr=c&sp=rl&sig=S3bsOObROMq6QU5A34SwlBkgCKTwR8lo7ZE8%2Br9PraY%3D","expireDateTime":"2024-11-06T11:15:22.8974366Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A47Z&sr=b&sp=r&sig=8decBeSR4KgsozxdH7u2ESO287BjRvlAinIiAElvA4w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:47.7037454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A47Z&sr=b&sp=r&sig=g2q8JH3HDl75p3EUogTs42OIhwkKWebAHuFd%2Bk8kyQ4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:47.7032556Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A47Z&sr=b&sp=r&sig=n0lXrP%2BRd%2BWgbQXHNRefgjXYhf7frekc2wPqS7Re%2F4c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:47.7038648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A47Z&sr=b&sp=r&sig=l9eslXQXyC8ilQPNdlJggrUUmF7IQoV%2BZ%2B%2FxY2R9v2g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:47.7040998Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A47Z&sr=b&sp=r&sig=6Ag16BaxaqW6At4z6cgjIlrHPRr8Rzd8ehwOucUzEQE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:47.7043356Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A47Z&se=2024-11-20T12%3A25%3A47Z&sr=c&sp=rl&sig=F%2FyWgP%2FvMJ9T0XWVbrQQ3QUZuCtKyNWKSnf9vg2slUE%3D","expireDateTime":"2024-11-20T12:25:47.704443Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:17.313Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4906' + - '5009' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:23 GMT + - Wed, 20 Nov 2024 11:25:47 GMT mise-correlation-id: - - 58133182-5c40-4687-8600-643c19b86c0b + - 031acf25-1a89-4806-9623-25950370c9ce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101522Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b48u + - 20241120T112547Z-17b7777dc45b4878hC1CO13uc00000000w80000000001dzv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1545,31 +1533,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A28Z&sr=b&sp=r&sig=D%2FTjppzua%2F6SdmV0xH3TcOv9E%2FRBr0STmR%2BFdBiM5so%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:28.2760125Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A28Z&sr=b&sp=r&sig=lJQ6CJLcqOss28wV1PbMs%2FjcoeBsk6CN81U7DYHwHGM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:28.2756214Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A28Z&sr=b&sp=r&sig=5trzsIMdKPDGFkL9G2N683OW0dEWXdBFXnM%2Ffz05NzM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:28.2761494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A28Z&sr=b&sp=r&sig=SaLKYS6Eig22uLIkI%2BLs%2B6A4ajQ7eUQ2edI5Og4QX8U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:28.276287Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A28Z&sr=b&sp=r&sig=mHm9KzsZ%2FG%2FTv3j3ZZ%2B%2Fo9omAATv4u2Tp1cAW%2FdlSu0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:28.2764214Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A28Z&se=2024-11-06T11%3A15%3A28Z&sr=c&sp=rl&sig=XBP2N%2FeBtOZtFqXVXvhFucQT8ri8Yj3HPedTGjL%2Ff%2BE%3D","expireDateTime":"2024-11-06T11:15:28.2765517Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A52Z&sr=b&sp=r&sig=iXPjSqK0lB%2BWXbTVIXcIUwFmyIhLd3H6QChIbSmo9ns%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:52.8408338Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A52Z&sr=b&sp=r&sig=S9LGwXOzo6MHDT1pMM0EIBzEbsPVYcDK6WCZ45UqhQo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:52.8404294Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A52Z&sr=b&sp=r&sig=BOG8md4IrgjlJKaSEDj%2BI1%2BSQFptsL%2BlMOdWw23rw48%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:52.8410078Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A52Z&sr=b&sp=r&sig=SYHjLslEI5P8YdBfFELssEEER26sF78DWCybkdgkmp8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:52.8411628Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A52Z&sr=b&sp=r&sig=eKVWRsr4EhxFlh9epWbLZdKolGXDUKz5iS%2BTZXE15xo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:52.8413331Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A52Z&se=2024-11-20T12%3A25%3A52Z&sr=c&sp=rl&sig=x4%2Fd5pgADe%2B6brRYwCEFnATrGLON3NavLSLFPC9L%2B98%3D","expireDateTime":"2024-11-20T12:25:52.8414773Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:17.313Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4919' + - '5008' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:28 GMT + - Wed, 20 Nov 2024 11:25:52 GMT mise-correlation-id: - - ddfe5755-2c8e-4ad0-96e2-1956bf58fb56 + - 9cccdec0-83e1-46d1-a7f7-787f51c893e5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101528Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b4nh + - 20241120T112552Z-17b7777dc45b4878hC1CO13uc00000000w80000000001ecu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1587,31 +1576,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A33Z&sr=b&sp=r&sig=IxMBGWNS30o8AMr0WxnBlC10FOHRmHvILaRxYHIBgcM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:33.680854Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A33Z&sr=b&sp=r&sig=EthiqGRGNnqwDOkdHkWFwd%2Ffsp2zYwFogrhYjc3GMVY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:33.6803948Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A33Z&sr=b&sp=r&sig=cO3%2FTPJ3wLZfVnGKeWJ2pcbdWHGjZqbhGAysB6Zdml8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:33.6810258Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A33Z&sr=b&sp=r&sig=TUaVQ3cIIk2n6DK%2FzS%2BDjwDtFhRngPoBdnu87YVpqQA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:33.6812033Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A33Z&sr=b&sp=r&sig=yBTe2h%2FLCtXsJii2aKLh%2F54Tx5mB9inz%2BRlruBAJolQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:33.6813898Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A33Z&se=2024-11-06T11%3A15%3A33Z&sr=c&sp=rl&sig=Ett2TydzQrknb79fcMTPVmupjlgpRIEUpoAGVKJ%2Fl3c%3D","expireDateTime":"2024-11-06T11:15:33.681563Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A57Z&sr=b&sp=r&sig=ardqlViAu820WQRu0BLRNR75IbesNXoENdCnxGPEZaU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:57.9494354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A57Z&sr=b&sp=r&sig=%2FNniw%2BX4bSp7k0ARsam1LrpnQCOmyL9LjZTvfO9yb%2Fc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:25:57.9489035Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A57Z&sr=b&sp=r&sig=aXVedL0fUdg0zUJ5MN5vx24EhFWlXcv6CPGIf92n27o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:57.9496428Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A57Z&sr=b&sp=r&sig=f1hqrWPQLVaPwthCpZlOO0HfJC%2BlUL2lllU%2F%2Fo2%2FBF8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:25:57.949865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A25%3A57Z&sr=b&sp=r&sig=tkGk7vfVH8QaNp5C7YQgwpA3faLvrVBblvC9BuYmEsc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:25:57.9502113Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A25%3A57Z&se=2024-11-20T12%3A25%3A57Z&sr=c&sp=rl&sig=62pEH5qhHhtuKVLG%2BYRSFmEKcTjjDOjCqCTf6bVEXZw%3D","expireDateTime":"2024-11-20T12:25:57.9503193Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"CONFIGURING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:57.753Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4902' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:33 GMT + - Wed, 20 Nov 2024 11:25:57 GMT mise-correlation-id: - - 5cde64d1-eeaf-4735-ac11-fa29bd2d7a76 + - 2583a279-0139-47c8-ae27-6c7549a14606 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101533Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b4z7 + - 20241120T112557Z-17b7777dc45b4878hC1CO13uc00000000w80000000001en9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1629,31 +1619,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=4VKKmE%2BCwdYpPMAsOYtzFTdGMJns88qjBSsj5pca1LU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.0544034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=mId6Jnxi%2FyOjg%2Fe6qGLBOlg8Pr2CbwKPvrhEtf7U9bw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:39.0540782Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=vwrTniUPymVj6xyz0X%2BrYZZyEpqcVRDCG24ckqIt7Iw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.0544936Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=il0lhL0z1nFIAYC%2F9tQ3MraZXBAb7hdU20PNL1307tE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.0545841Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=dtL5qoHPeq3bkaQ%2BG1MsxuGt%2FE%2FKNXy%2BSiNpg0yoV%2Fo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.0546703Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A39Z&se=2024-11-06T11%3A15%3A39Z&sr=c&sp=rl&sig=y2pLe8o5Bmun4%2F3Qlc5huveCyiPACZWk8GBY23lKPK0%3D","expireDateTime":"2024-11-06T11:15:39.0547623Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A03Z&sr=b&sp=r&sig=oH7H2kzdaY1a4HOGrQmdoFza52bXQpLCfskgessU7Ms%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:03.0593169Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A03Z&sr=b&sp=r&sig=zmBUUUEE67zOtTJw0IwPI%2F23e8pHxsjxeA8jVTbEiUc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:03.0588533Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A03Z&sr=b&sp=r&sig=iWlg0Iw8A6t8Dt%2Bx2z7htXeMntkNN3aA8GO99GQOELA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:03.059467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A03Z&sr=b&sp=r&sig=KWCX%2BKE6rnyjmR0HCuhYjQrLnmT%2FOVGLOb2Hx4VsOqU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:03.0596211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A03Z&sr=b&sp=r&sig=SUTT4KMZ2OaCA06NEZAbqxDvPUqlAwguBpQ%2BqsDjoBU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:03.0597686Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A03Z&se=2024-11-20T12%3A26%3A03Z&sr=c&sp=rl&sig=H5bqVubXDvABeRJrUFgvyzkQWdxWOaumtDPbR0yNKrg%3D","expireDateTime":"2024-11-20T12:26:03.0599182Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"CONFIGURING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:25:57.753Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4910' + - '5000' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:39 GMT + - Wed, 20 Nov 2024 11:26:03 GMT mise-correlation-id: - - 4ef8b6db-8c2f-446a-a429-8ae729b7f1d5 + - 3a1b20a5-309a-411b-bce0-55f207bd76b6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101538Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b57s + - 20241120T112602Z-17b7777dc45b4878hC1CO13uc00000000w80000000001ew3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1671,31 +1662,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A44Z&sr=b&sp=r&sig=iB2kuXCgP9iVxo4WvkZkSkLcKQCZg2Dy9zBvQxR8qlQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:44.4182833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A44Z&sr=b&sp=r&sig=Kzev0TKDJYDExpM20hXMS8BodnsYST2LwuqMBF0q8GQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:44.4137696Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A44Z&sr=b&sp=r&sig=u%2F2K0kAG4w814xxqFyMvSk9ac0XqhqRQnhg2O0%2BL1uI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:44.4185684Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A44Z&sr=b&sp=r&sig=vBhBWxY8sBWpB8wm8rahcoUPBb2WcHkZSoPt%2BdEA%2Bjw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:44.4188446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A44Z&sr=b&sp=r&sig=iQwnmBrAzpvc7%2FwHO9XaXu05HAp2jT4oTnxTLIYMOn0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:44.4191011Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A44Z&se=2024-11-06T11%3A15%3A44Z&sr=c&sp=rl&sig=UrD2qqvWBezfgQ1uCXzfglz5UbHUEwd6Arbox4nch3w%3D","expireDateTime":"2024-11-06T11:15:44.4193668Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:40.077Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A08Z&sr=b&sp=r&sig=owOlpLffNv4sHiqzH7oA6YN70ZH9TnkXTj8IgOUN7Y8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:08.2773556Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A08Z&sr=b&sp=r&sig=c%2F79vqL%2ByvgR36hXCJhh4e8kVdtlBDBbTctgYM2Fz74%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:08.2770679Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A08Z&sr=b&sp=r&sig=8NXJCIttYW3k7UJldXYkLnWKH2ULG98k3ootDwsdH9k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:08.2775003Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A08Z&sr=b&sp=r&sig=n1XxxTcbCMkJ19GXaWDuE41%2FSUT5k6y%2BJ2vgsiAyrhc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:08.2776394Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A08Z&sr=b&sp=r&sig=Mvq%2B9shDnvmgwt93SGDN5I2sfvbCB%2FJ3iqgTgbOppyE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:08.2777798Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A08Z&se=2024-11-20T12%3A26%3A08Z&sr=c&sp=rl&sig=NUw%2Bmc4Kul3OjkV5AlSujxZ9WEcFbaaPnQb5P5g5Jrg%3D","expireDateTime":"2024-11-20T12:26:08.2779192Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4897' + - '5003' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:44 GMT + - Wed, 20 Nov 2024 11:26:08 GMT mise-correlation-id: - - 82f13af5-7fc1-4330-aab3-6efd3b2d5679 + - 3ca5b3c9-f78f-4003-9e6c-b870c8061458 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101544Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b5mn + - 20241120T112608Z-17b7777dc45b4878hC1CO13uc00000000w80000000001f31 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1713,31 +1705,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A49Z&sr=b&sp=r&sig=MVBGhn9h7WPLHs2eBoETvBEtou7S%2FDczLDdy8iGOD6E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:49.8262809Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A49Z&sr=b&sp=r&sig=LFYQss81OEw%2FWBxait1ZDF61FEKv5xcl89TIHF1yiyM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:49.8258786Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A49Z&sr=b&sp=r&sig=Khdxwktsnp43sTj4eitAItV5kP6lvvl9%2BHKXLn0Ntf8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:49.826447Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A49Z&sr=b&sp=r&sig=4iNcaFcA1OS5iFPFyFK7BFQYpkuLC23%2BSPdq2BcSty8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:49.8266191Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A49Z&sr=b&sp=r&sig=DV8r4jz%2FhlzNEGNsiIIQ3Ge%2FIFxBNJ5o%2FH%2BS18fV%2B3I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:49.8267849Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A49Z&se=2024-11-06T11%3A15%3A49Z&sr=c&sp=rl&sig=LonlDtoB%2FWMcKhQ2dbJHC5ZclFrYP7bgz676sPCNp8c%3D","expireDateTime":"2024-11-06T11:15:49.8269533Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A13Z&sr=b&sp=r&sig=hlTFSVf68zQEev9Q8ndloIyHngVdWg1ZxSIfEOlR1S0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:13.3738343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A13Z&sr=b&sp=r&sig=KtBJo76qlnu7Z6XAVS4kNdylrLeggnyzx8OIDeQQQfI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:13.3733835Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A13Z&sr=b&sp=r&sig=AxruRz00oXh2QkyDXvqNQVJpZhgnUhvKYJc6bsJgBTU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:13.3740118Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A13Z&sr=b&sp=r&sig=EaSoVJsOO8WoizZbyj5duwsOLCf2jLwg4UU2atbHreQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:13.3741912Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A13Z&sr=b&sp=r&sig=Ab3%2F9Ifv3PtEKQDNJgtVhGmiryItmlyJZ72Ah5%2FnaPc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:13.3743649Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A13Z&se=2024-11-20T12%3A26%3A13Z&sr=c&sp=rl&sig=d4jVjqBWPaVgrchZ070dteGr2iD%2BN0vfpbKcJB%2BkBds%3D","expireDateTime":"2024-11-20T12:26:13.374541Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4904' + - '4996' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:49 GMT + - Wed, 20 Nov 2024 11:26:13 GMT mise-correlation-id: - - 5a706e9e-ac4a-46d7-8b39-f32b8f7fb2a4 + - 7cf8ee36-a20c-497d-9fa4-fbd6c9a2656a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101549Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b5zv + - 20241120T112613Z-17b7777dc45b4878hC1CO13uc00000000w80000000001fau x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1755,31 +1748,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=WVlQGX0o4NhANXfHcXEFLd7zhoZf3J63ElAyi4G%2FvSs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.2287015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=3tA2Y69dyT0Ze5pjtGwX5l5XMV0Zfa7R1s4fr0bexZw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:55.2284141Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=F26NoalXk1aChg82SbFCaHpJghoZH1aKASF6BlTg8r4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.2288094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=Ec9kkgp8UUbd8oeryRmOsFXfnQIRM30%2BfqdfispPUDY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.2289051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=f8BRoUmyFRSZ11%2F6KX%2FiuEpDY0L9hhjlF35bZK7GO%2Bs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.2289926Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A55Z&se=2024-11-06T11%3A15%3A55Z&sr=c&sp=rl&sig=KWdsW9fIJ4rM%2B%2BNvwzXo45YP7lxT%2BmBBJhT%2Fg%2FNf%2FsI%3D","expireDateTime":"2024-11-06T11:15:55.2290868Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A18Z&sr=b&sp=r&sig=z8jxBg9KEa1XPqp7po%2BHrXJT%2FTRuyk6rF3kWtks8Q90%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:18.481529Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A18Z&sr=b&sp=r&sig=tDa9bv1sYWei67jEYS2C4VWd4UXqkQ3v9cmcuyi2AaA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:18.4811065Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A18Z&sr=b&sp=r&sig=sQMwxHKdn4kWImlJBdjoWh%2F3oDnVhVWRGspgDEqBmFY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:18.4816836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A18Z&sr=b&sp=r&sig=GUoQQgqdTkp4pmTkc9mYeOJ7J0Vll5NESENSty5weCU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:18.4818703Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A18Z&sr=b&sp=r&sig=iB7uGa0DI%2FuwJQd4Oew%2F3T80MemLuSCMqaNLfZRG8Rc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:18.4820415Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A18Z&se=2024-11-20T12%3A26%3A18Z&sr=c&sp=rl&sig=XKnb6RvsDtSPCAzTB9IhOUIN0Qf8lvU1sqB98eshg6c%3D","expireDateTime":"2024-11-20T12:26:18.4822035Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4907' + - '4998' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:15:55 GMT + - Wed, 20 Nov 2024 11:26:18 GMT mise-correlation-id: - - 2bee69c5-dc50-4c93-9755-47ab1f87d582 + - 83b86fec-171e-44d3-a3f7-67b82dcdbb53 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101555Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b691 + - 20241120T112618Z-17b7777dc45b4878hC1CO13uc00000000w80000000001fpz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1797,31 +1791,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A00Z&sr=b&sp=r&sig=tGE%2FtG2B3NyoEFn57wGHB1dlmht80a1Advs1YuTKHjc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:00.6628202Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A00Z&sr=b&sp=r&sig=yUDOzwdbrSYT3wahUbyw6dUEmxU6cQBQr%2FQRVcoVqqo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:00.6624402Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A00Z&sr=b&sp=r&sig=H5nfhwql%2FkkkuD%2B6JXVmTR%2Bew7QuH913aMSpQDBMtaA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:00.6629908Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A00Z&sr=b&sp=r&sig=nD%2BQeuWB7ysUijIDsV1u3YGs6CpG5e3B%2B19X38k8Zfg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:00.6632039Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A00Z&sr=b&sp=r&sig=5XW9rbxEnu1kt7W9rrqxCsBhEvjIaXlVu1z4UqlxhU4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:00.6635498Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A00Z&se=2024-11-06T11%3A16%3A00Z&sr=c&sp=rl&sig=Z0g51ugvA1uhSYvby3waiCyTwJrcmduhhvYpFbQzDro%3D","expireDateTime":"2024-11-06T11:16:00.6637418Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A23Z&sr=b&sp=r&sig=Gb7AElSj50qcZUbQFHwP4zlE5qd9h1%2BesGl2hm0oo%2BI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:23.5854761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A23Z&sr=b&sp=r&sig=mtsDpOxD2iYM7T52oBs3QclFCLJEVHtmIl3UR6hypck%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:23.5852478Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A23Z&sr=b&sp=r&sig=lLr0bZftLVFfcMD9bKLtq2HCzE8BBg2BpujvFf%2FSbBY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:23.5855651Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A23Z&sr=b&sp=r&sig=oBVYRAxBL61elPDKz2SJwJxyvv2HnhctJvYaMQgn5FE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:23.5856493Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A23Z&sr=b&sp=r&sig=Kxtfbd3pOqvaVdQOF2k27MiPJgXeeFrjpIsD1W6ZRmM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:23.5857357Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A23Z&se=2024-11-20T12%3A26%3A23Z&sr=c&sp=rl&sig=tL1YKi5CCDBV%2BV4WRFp2%2BVq24gNBPvb78H6gWDDEWOQ%3D","expireDateTime":"2024-11-20T12:26:23.5858205Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4899' + - '4999' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:00 GMT + - Wed, 20 Nov 2024 11:26:23 GMT mise-correlation-id: - - 3e0ac9e3-9b8f-4baa-bb52-e7951d908c36 + - bcf6dd51-379c-4ee7-b2b8-7f4d13ff1f96 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101600Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b6q9 + - 20241120T112623Z-17b7777dc45b4878hC1CO13uc00000000w80000000001g0n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1839,31 +1834,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=OBaHhLMrd0hxZtsLB%2BSN%2B7omcvpP9aGhkLOOE6eMV3k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.1118822Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=H8wiCSkP7fzc5pTor5b%2BStuZmBPdLJ1lN6efFFbyHOk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:06.1116314Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=fuXo20tZZH4JedILy79xQgxEtmU0HoYiiQiiuJmaTP0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.1119594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=tWHzzcVRfl0H0J6HNCSFfVy3DbaPMHeqB%2FLp2U8lYbM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.1120295Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=nW4bgOFLgjaTNTnaBlarIW4wVoCcadYYEpJVcLLegCE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.112102Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A06Z&se=2024-11-06T11%3A16%3A06Z&sr=c&sp=rl&sig=lUj23FDV5L3f10uFSUtCG1cqmQ3bOZEcIzENgQ5efIE%3D","expireDateTime":"2024-11-06T11:16:06.1121725Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A28Z&sr=b&sp=r&sig=k%2F4YBjPAdsEQpgbj2SzN8HfjPcBGO4ljkbZLj7qsOvc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:28.6955156Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A28Z&sr=b&sp=r&sig=kC7Z3LAA3b4d%2BfIBLKnWdxzXtf%2Bcjdj3cLAr8Lc0knQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:28.6952213Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A28Z&sr=b&sp=r&sig=hIcCltC%2Byeskq56Qv%2B%2BbK2%2BUMl5rRlIouhyVIsHohAo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:28.6956166Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A28Z&sr=b&sp=r&sig=7USYkP34HJfZSiJd6nEGDoBTx6BeHJrrMnnpPOv7GU4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:28.695726Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A28Z&sr=b&sp=r&sig=GUXrTt2J0IP0PP8yITULMjjxZgyxt%2FBHD%2FQjb8WD44c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:28.6958274Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A28Z&se=2024-11-20T12%3A26%3A28Z&sr=c&sp=rl&sig=TgcuAIroM76Xfq0QLulmC5jprdJrcxZzv5nMhdeHF10%3D","expireDateTime":"2024-11-20T12:26:28.6959259Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4892' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:06 GMT + - Wed, 20 Nov 2024 11:26:28 GMT mise-correlation-id: - - 420fe28a-937f-43ba-a04e-89dd1bdd9eb6 + - e8e8e01d-b6dc-4943-98e9-8576a4af646f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101605Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b722 + - 20241120T112628Z-17b7777dc45b4878hC1CO13uc00000000w80000000001gb0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,31 +1877,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A11Z&sr=b&sp=r&sig=NzjUonC3tZl0WPWmLoXhLRnbG4Xsgh6R4x43zr52FXI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:11.4830158Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A11Z&sr=b&sp=r&sig=VBKDhpoqeuSIKNf16omJMHGPVAg9NeeugagKKMonbK4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:11.4828095Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A11Z&sr=b&sp=r&sig=%2B4LDDdnx5RedGa7csPDdc4pTi3sPR26z7McR%2FWGiHWQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:11.4830968Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A11Z&sr=b&sp=r&sig=W3a6E0nqoarzWXG6jyO7eHWFy%2F6ub59xWx5IFfzf%2BFs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:11.4831805Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A11Z&sr=b&sp=r&sig=W2ETQitPigDdEsfg1eoy9AWgQcegTeSz3ya99uBAwMQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:11.4832656Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A11Z&se=2024-11-06T11%3A16%3A11Z&sr=c&sp=rl&sig=6nlbJiR9ddHg814ZiRVCW7GW2Ns2ICojPEXSP5e%2BNX8%3D","expireDateTime":"2024-11-06T11:16:11.4833431Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A33Z&sr=b&sp=r&sig=Dnqg25WNeE7j%2Bt11GwqRFmS3%2FTMX2U6UC8mejYWawa0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:33.8034025Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A33Z&sr=b&sp=r&sig=EGQE2McSZ1sHDynsyGvJ8JjfcPcVjqB2%2BYfKxHVG9m8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:33.8029317Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A33Z&sr=b&sp=r&sig=etm75ovc%2Fxon7KQg%2BzOCN4paiJ2aOyRy7E%2FzhezQvTI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:33.8035524Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A33Z&sr=b&sp=r&sig=7a07fhQtZGo5lnScbHoFd6jM8Qt4KLchfdykXIOSssk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:33.8037005Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A33Z&sr=b&sp=r&sig=4pRy4TXJz6AqW%2FCjAVxH3lyr0yzBW1rX59xusPGsiEk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:33.803846Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A33Z&se=2024-11-20T12%3A26%3A33Z&sr=c&sp=rl&sig=RYoAgzwFljB2cW%2B7OdiWzGBP1zzrmmOUDAR3%2BM8Ahvc%3D","expireDateTime":"2024-11-20T12:26:33.803991Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4895' + - '5005' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:11 GMT + - Wed, 20 Nov 2024 11:26:33 GMT mise-correlation-id: - - febbfcd8-df5b-4047-bb8b-8400b2037e14 + - 2b6a7f06-8d96-457e-8ed0-acd96d58890a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101611Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b7gd + - 20241120T112633Z-17b7777dc45b4878hC1CO13uc00000000w80000000001ggr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1923,31 +1920,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A16Z&sr=b&sp=r&sig=aEGMcag09wbKAVbyzIB%2FtjhAUYt7OO0SHjpeA3us0TQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:16.8572731Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A16Z&sr=b&sp=r&sig=5zBDDX2NgLO6z%2FxyDUSwLkhFizWmqClOAMw8QlcrOC4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:16.8568722Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A16Z&sr=b&sp=r&sig=J6zsEPVhRNGAiNyFIcVxsaJN7AZCJ3XTcFGa2EqBZwE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:16.8574325Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A16Z&sr=b&sp=r&sig=ek8l%2F3NHD8tWqg%2FLgCqnk9YxSSGUe0OYx9mfE0s%2FIfc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:16.8575959Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A16Z&sr=b&sp=r&sig=JRyDzeA78dYJPZsTyt4IZcsvIm7qEuY4iJfbcf3b86M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:16.8577621Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A16Z&se=2024-11-06T11%3A16%3A16Z&sr=c&sp=rl&sig=9e5gCxwgbTf%2FLj%2FchKnLEpOqmmWIRoGAHkdwdtE29x8%3D","expireDateTime":"2024-11-06T11:16:16.8579282Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A38Z&sr=b&sp=r&sig=%2BjeO1ax%2BGfFX1jb72MOkXFyfKZ%2F5GX%2BiB60xV3eYcig%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:38.9100693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A38Z&sr=b&sp=r&sig=%2FT0%2FcI5Yf3WLzOQA6lRBygG%2FDaRNt4rr3IlZbKTIUbs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:38.9098022Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A38Z&sr=b&sp=r&sig=6OUglu6WEstWtyqcV32rDsKG4FlxDjCPK3FCbWtB3oA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:38.9101662Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A38Z&sr=b&sp=r&sig=WVBxP9zRgXLEn0hUpH5Zmw9TsRVaVsUtrKToEafaJ7Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:38.9102646Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A38Z&sr=b&sp=r&sig=a8G%2BXhQEOZNMDf31brzkt8D8p4wshBqT4XfJDDUQEMc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:38.910359Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A38Z&se=2024-11-20T12%3A26%3A38Z&sr=c&sp=rl&sig=1SyJLIz26KmIlqeuG%2F3LRcKeBCqGWolZWMzo3vvvvmI%3D","expireDateTime":"2024-11-20T12:26:38.9104509Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4899' + - '5006' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:16 GMT + - Wed, 20 Nov 2024 11:26:38 GMT mise-correlation-id: - - 761823b4-7a2a-4090-81e5-073a7c729465 + - 89d718f8-5679-40dd-a0ec-9f59dc7bf7b9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101616Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b7x6 + - 20241120T112638Z-17b7777dc45b4878hC1CO13uc00000000w80000000001gt6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1965,31 +1963,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=lvSyhOwMV3XYseOUn2mUy86XrK2mEswWnq5AftlSUBM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.2396348Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=rO25oT%2BozLK6MLYIOhq0erLkfNf1QjpiVROtXcElxgc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:22.2393793Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=4TyJptIeJT16jXvx80Ewhz89oPq1Ur9Jl%2B2rW6seTak%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.2397023Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=3NNVXIivs7R8GUfo8IXsP2bdQ7GzTJUT6p9GA0lqdfM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.2397665Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=y8I9nL1%2Fzu7iDLPHXduHefZ8fCBsmGvypiZgTJ04GF0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.2398297Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A22Z&se=2024-11-06T11%3A16%3A22Z&sr=c&sp=rl&sig=KKiX%2Bc4lSmic6e8nWxod946fkHRnxJBfb2QNzrM1oJI%3D","expireDateTime":"2024-11-06T11:16:22.2398912Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A44Z&sr=b&sp=r&sig=1oMbGXOK8drrTjGDrWAg0%2FGPr%2B2KPqLEUQUehPoLsl8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:44.5901473Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A44Z&sr=b&sp=r&sig=PUYbOUztf0%2F3fhDurCvhj9Qo8VEzgWszpGHBhE0UhfA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:44.589769Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A44Z&sr=b&sp=r&sig=Hc2Og3xmGHUuqmRBh1VkYBvcOrjZtb8q3tvcaNogOZg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:44.5903189Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A44Z&sr=b&sp=r&sig=OPEfY4GjuGJFbi9ARPurgrePh07qqXGznkvxbHvn3LE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:44.5904896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A44Z&sr=b&sp=r&sig=FNCVV2icc4wGVd2GbY3F%2F%2FznvEJRsFN%2B40RDnFs9SFg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:44.5906688Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A44Z&se=2024-11-20T12%3A26%3A44Z&sr=c&sp=rl&sig=4rergwvxVikJxHq9ydgY8cvbg7i9YYsS%2FQ8FhebB9oQ%3D","expireDateTime":"2024-11-20T12:26:44.5908337Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4893' + - '5002' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:22 GMT + - Wed, 20 Nov 2024 11:26:44 GMT mise-correlation-id: - - 326ad2fc-3991-4357-95f5-dfb05dea2c84 + - 44d9f17b-6658-4b61-bdca-398ec224ab87 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101622Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b8ag + - 20241120T112643Z-17b7777dc45b4878hC1CO13uc00000000w80000000001h0s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2007,31 +2006,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=%2FNHLr5fOSyrOn6WZGfCc14H%2B5E3MEp4hOuolMnBmrNg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.1575355Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=kWjr3xqN93wbH8rypuVd%2BEf3B%2FxuZwuEyfQ%2BrD5xIGk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:29.1572032Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=lf0fEcIZIIGFb4oaaUT8zlgidUd1vjBKNh7WtqOIcLs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.1576627Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=uEAHro5y5tGYH%2FN%2BEriL8ZYu%2FCYOlbOIwigOI5vjkMQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.1578128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=6kHVQd7sTfakrOarnimJMLGxBR2ii6lrtnvZFBsszhg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.1579638Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A29Z&se=2024-11-06T11%3A16%3A29Z&sr=c&sp=rl&sig=RJVndUqH2iQEaDNoIylISJsJd6mutLbsg32Y3QAZluM%3D","expireDateTime":"2024-11-06T11:16:29.1581775Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A49Z&sr=b&sp=r&sig=UdUQ2oe%2FSxqA1ir9O5lp%2BeXW57enMkMAtf9vWaVgv%2BU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:49.7003832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A49Z&sr=b&sp=r&sig=R6U5OyJ%2F%2BynBpcFMsX5FU95l4MS9HYvOCn8Zg9ze9K0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:49.7000379Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A49Z&sr=b&sp=r&sig=38NH3UnGdunTbzH6ug7mLJ7d1CLvQeXEOcKf0jVN29k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:49.7004852Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A49Z&sr=b&sp=r&sig=RIYi7dEis4MGyPX9Mg2xLc1%2BmSrfwYQ7qkQzw6%2FgLl0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:49.7005823Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A49Z&sr=b&sp=r&sig=sv8%2B6TfynF%2Fz4rSum4CWJrmbSUZZVP%2FJHrZlBBFpiKU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:49.700674Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A49Z&se=2024-11-20T12%3A26%3A49Z&sr=c&sp=rl&sig=Kz33UHaBEkWzM2IqkJbTa9zZ0jGOEo7DCV6o%2Fm%2FMB8g%3D","expireDateTime":"2024-11-20T12:26:49.7007668Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '5012' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:30 GMT + - Wed, 20 Nov 2024 11:26:49 GMT mise-correlation-id: - - 1e5e9b8e-3c79-42a0-ac53-74c4977b1b60 + - c436c77f-800a-4022-82f0-162f6b4942f6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101627Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b8qa + - 20241120T112649Z-17b7777dc45b4878hC1CO13uc00000000w80000000001h7u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2049,31 +2049,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A35Z&sr=b&sp=r&sig=M0iT%2BYSEAf6E%2BI0UDo6TZLjHRofnYqlpBirauoowGDU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:35.5646619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A35Z&sr=b&sp=r&sig=Q1r80YsRXDbp2zGMA%2BGy0SviSDZj%2Fd%2FyELJ%2FN1uqLOg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:35.5643189Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A35Z&sr=b&sp=r&sig=5QHksnmfIX%2B6UvL%2BPYhmOXDFCtrylQtfEsuyP%2F6UMEA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:35.5647544Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A35Z&sr=b&sp=r&sig=OSdcXb3cdBx9KBSejyayMHiwm4XK0%2Bt4OMRFcuVoFPA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:35.5648421Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A35Z&sr=b&sp=r&sig=ZzJMsovTTC%2FJ41KGmL0UQct6o%2B9h1wvL39cBUg79duQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:35.5649313Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A35Z&se=2024-11-06T11%3A16%3A35Z&sr=c&sp=rl&sig=0b0Px%2BUCBLMScwsF8tvIe5L%2FcKuCISfaZISlO4oBIRM%3D","expireDateTime":"2024-11-06T11:16:35.5650131Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A54Z&sr=b&sp=r&sig=Yx%2BR2FHIfN2NOqno4YpR6L3EEG3lxqRT1%2FOTI0H4bLI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:54.8719829Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A54Z&sr=b&sp=r&sig=hylCRzHp%2FCm%2FbgTIan%2B75FnyGdHYg3ErHnn20sZFIeU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:54.870701Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A54Z&sr=b&sp=r&sig=0Upy7jMhlxAFl%2Bhml38rhoA8MYWi0ClEMP8l5Rl%2BCo0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:54.8721446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A54Z&sr=b&sp=r&sig=DAFGHVr7dqyrANbJ5oWDcJDWWpjQZSpU0VmYCoStG34%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:54.8723122Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A54Z&sr=b&sp=r&sig=SP%2FHOSDl7%2F6orqiq3OovPQdUlRKnbv%2FOwNnJuGhOrek%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:54.8724637Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A54Z&se=2024-11-20T12%3A26%3A54Z&sr=c&sp=rl&sig=8P6nUq%2BTb1eZ4cb6akb4t8zJMItZKATDrrqBWoQUl7c%3D","expireDateTime":"2024-11-20T12:26:54.8726243Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4913' + - '5010' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:35 GMT + - Wed, 20 Nov 2024 11:26:54 GMT mise-correlation-id: - - c6cb7667-75b7-4e54-ba09-63200fa6afc3 + - 9cd2f36a-fc18-41bb-94c7-1ad6c9c37792 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101635Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b947 + - 20241120T112654Z-17b7777dc45b4878hC1CO13uc00000000w80000000001hgv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2091,31 +2092,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A40Z&sr=b&sp=r&sig=QpliTOwyWqqaX1BUcN1N9irwlg6G47zAEjlwh3PUy%2FY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:40.944577Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A40Z&sr=b&sp=r&sig=i%2BiUV1IYj73LBRwmGg4ePdRZk6YK4%2B7y9banjZ0ArVs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:40.9443608Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A40Z&sr=b&sp=r&sig=27zxmoAiqTSFaVLLMuPRoGDqcCZSpwgMpBwu1xokXdw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:40.9446594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A40Z&sr=b&sp=r&sig=DilP7ttiI7D46FByX4%2FHPuMkDAg4GRKd28scO8QTzmU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:40.9447509Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A40Z&sr=b&sp=r&sig=bb1CPPnAQP%2Fj9EnD%2BB9XAcTtZyymnM9UB5821zWPwWs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:40.9448319Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A40Z&se=2024-11-06T11%3A16%3A40Z&sr=c&sp=rl&sig=fNvZ2dWZfmrLfaZsaNdO5PO7BXa0j5fRGMn9Hxu8x9M%3D","expireDateTime":"2024-11-06T11:16:40.944911Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A59Z&sr=b&sp=r&sig=CHFHPcPoRWWO8qRslAp5F2DteGRAha8W4WlrBlIjh9E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:59.9733954Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A59Z&sr=b&sp=r&sig=%2BeQqs9MO1ZVde6jlrdo4cl6aZubUPVHecaxn0OgRkU8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:26:59.9731414Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A59Z&sr=b&sp=r&sig=GnLlKC%2B%2FkgFbruDyN%2BdKUKMSaOBpG5Gwlz8KA2sZt9Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:59.9734762Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A59Z&sr=b&sp=r&sig=DlKCAqSJRUBcO3D5nJeOod7nxw5XtS1wca5wgolTPIQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:26:59.9735563Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A26%3A59Z&sr=b&sp=r&sig=b0d9UN4CzQwkEzk9gDavrPypJ%2Fi2VfijP8JlfQVuU%2FA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:26:59.973636Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A26%3A59Z&se=2024-11-20T12%3A26%3A59Z&sr=c&sp=rl&sig=trvLhhhYj6FO4hvcWg4XF7Z1ucQYwfbXM3ZQsgoASZc%3D","expireDateTime":"2024-11-20T12:26:59.9737143Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4895' + - '5000' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:41 GMT + - Wed, 20 Nov 2024 11:26:59 GMT mise-correlation-id: - - 8b429f17-591e-46d7-abe2-ca6fa2934046 + - 16346d0c-ca88-418c-aeec-61701f03fb79 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101640Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b9c6 + - 20241120T112659Z-17b7777dc45b4878hC1CO13uc00000000w80000000001hux x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2133,31 +2135,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A46Z&sr=b&sp=r&sig=NAdCq3Hnp4HBPBhB2%2FSzZkZMebq9uLRec6GPnzrQufY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:46.3206242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A46Z&sr=b&sp=r&sig=HXT%2BifCXSGtBLZV233Y0CXZhkgXBDJuxKMD7olpAYAk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:46.3203501Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A46Z&sr=b&sp=r&sig=lmugK1Lne%2BOzeTJaGg5PUzlYgXz%2BOqAOIfWmx2LlrGE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:46.3206896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A46Z&sr=b&sp=r&sig=%2BzMx4IZNeYJwYVSA6Qsgqc1tZgLwSn7tLu%2F5u7PjaVE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:46.3207526Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A46Z&sr=b&sp=r&sig=68W0oP1QDwgqFAVVJnoerrVcpLE8%2FQIgMqeCbSe3SwM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:46.3208141Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A46Z&se=2024-11-06T11%3A16%3A46Z&sr=c&sp=rl&sig=qztdmXGxcpF0pw3qtdgpn%2Fi03K3m53D%2BJty4b8WaSS8%3D","expireDateTime":"2024-11-06T11:16:46.3208739Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A05Z&sr=b&sp=r&sig=lzKFct6BeA4zoE3IP5CeVd6Au%2BY6XsU0gnOi2lDRTsg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:05.0896999Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A05Z&sr=b&sp=r&sig=2d7hgiRLSxY2r%2BjRGVzPR2H0M0CmbiohfkqbtDStkZg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:05.0892443Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A05Z&sr=b&sp=r&sig=vT%2F1rLl0RlRt7z5SaczlOXBSghSTzDTEtDjzMwfsCkk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:05.0899209Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A05Z&sr=b&sp=r&sig=FhDATQ4J2ogDhfF9pa59QcKa%2BIuY4Dfx5zhwZ3hpMZ8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:05.0900521Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A05Z&sr=b&sp=r&sig=Jj66a78Exr9DfQ4nDvpKmsGOsseuhrkMi%2BivOh5zikI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:05.0906616Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A05Z&se=2024-11-20T12%3A27%3A05Z&sr=c&sp=rl&sig=wo7VlmTByFCmWFC66FgmUI3m9XHEES1%2BZiDctdu54P0%3D","expireDateTime":"2024-11-20T12:27:05.0907798Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4903' + - '5001' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:46 GMT + - Wed, 20 Nov 2024 11:27:05 GMT mise-correlation-id: - - 2cd54ba0-371b-4847-ab5e-5bf7ab47cebc + - 22dba789-a656-4752-b1b1-aebf1f734cec strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101646Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b9ns + - 20241120T112705Z-17b7777dc45b4878hC1CO13uc00000000w80000000001k3n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2175,31 +2178,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A51Z&sr=b&sp=r&sig=B5ljxmwbC8ckt9feLV%2FT8h4eV5uXP8tNvh9lNkeDIlg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:51.7145701Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A51Z&sr=b&sp=r&sig=0DppoDdjT0eR%2Fxn846hrSotbY6th1iBgUQVAqckgPak%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:51.7142293Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A51Z&sr=b&sp=r&sig=bjbO4t4gNRhQh0jMNTtSm3tFdyCatOxkjAnrvS26eSQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:51.7147057Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A51Z&sr=b&sp=r&sig=NkwGMeS0%2Ba4i0wx807zWtxreqQMwWVznnSn1gHMzrko%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:51.7148483Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A51Z&sr=b&sp=r&sig=%2BXQeaWIviZXq9rL6NCWQLcdLIiG45BwmkWi0ealnj4c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:51.7149884Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A51Z&se=2024-11-06T11%3A16%3A51Z&sr=c&sp=rl&sig=f20YvjnBOReIvy09TO9L9DzeVcZVJP4KJUIEIqSeWQg%3D","expireDateTime":"2024-11-06T11:16:51.7151294Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A10Z&sr=b&sp=r&sig=Yyl4IFA7McXvSTBLUF44Xl43sgSgFnud%2Fq1gbzsmNL4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:10.2086654Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A10Z&sr=b&sp=r&sig=BVGPmQ0KellcrmGaD888TEw80r8zIYW9qHsOlJMP%2FrI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:10.2082533Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A10Z&sr=b&sp=r&sig=Qh8I7duneRi1kATnRD8qYWEfcUFX0UNuwy88MpLIaGQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:10.208836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A10Z&sr=b&sp=r&sig=aIArQqFvyHcKxu6VAz3jdaPFUNX5AOjRrr0W7jkBzXo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:10.2090063Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A10Z&sr=b&sp=r&sig=UhZRc7hLTcxpL8qrHkB3r8%2FFXhY08lBOAw8nS2s7CcE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:10.2091732Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A10Z&se=2024-11-20T12%3A27%3A10Z&sr=c&sp=rl&sig=Hy86N102z3cRF8P%2Bi3YEB7L5ej%2F%2BsI49LJZn85Ava0k%3D","expireDateTime":"2024-11-20T12:27:10.2093389Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4893' + - '5000' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:51 GMT + - Wed, 20 Nov 2024 11:27:10 GMT mise-correlation-id: - - 6840af46-d759-42dd-925b-46bc75cd7404 + - ebb68a1d-8c1d-4c22-a4f9-6f35c4d898ca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101651Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b9x7 + - 20241120T112710Z-17b7777dc45b4878hC1CO13uc00000000w80000000001ka5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2217,31 +2221,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A57Z&sr=b&sp=r&sig=KlAjAXgOB0eLmsNkUezASfB1eZ6hq3J00hn9m0hTo6Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:57.0966559Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A57Z&sr=b&sp=r&sig=7sBPw0yZR%2FUF1DlxtgeOmDtZlHu9ZZHQLiTZbOiW1vc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:57.0962006Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A57Z&sr=b&sp=r&sig=CD62abpZOcI4Jg2p25uU%2BWWx1Y7OP7bpItJCZhWtzEw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:57.0968371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A57Z&sr=b&sp=r&sig=BRP2dB4eD8CcUMnHu%2FpbwpUOKd%2FpH4ldl1f6BEb5LjU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:57.0969919Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A57Z&sr=b&sp=r&sig=ey5q37bIZPPM7rST9uh%2BFUhbFSfozgZHNnDxC4Ujjko%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:57.0973041Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A57Z&se=2024-11-06T11%3A16%3A57Z&sr=c&sp=rl&sig=c96JfweujKbzGbpuyavnxGHr8NJzIpU7MEFk%2FVDfcdk%3D","expireDateTime":"2024-11-06T11:16:57.0974319Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A15Z&sr=b&sp=r&sig=9BkFzKfDmEpdA4jibc0wMjhUQfqvxZJ6ZVLraOm0EWA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:15.3061661Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A15Z&sr=b&sp=r&sig=C8ePCS7Gvr3glrozuJsnjz%2F9q5u2GDSdCN9sfs2G9kg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:15.305862Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A15Z&sr=b&sp=r&sig=TYACjtlf6Z34h%2BGZvPKDwG5wkGyzYQNlFi3kkaRnkEk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:15.3062565Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A15Z&sr=b&sp=r&sig=uqwwlbE0Pw%2Ff8r8aoWHrJ%2FIlNHG%2B%2FKK9SV7iinNQfXU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:15.306346Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A15Z&sr=b&sp=r&sig=7MaJpet77gk3Wofo4O1CM1wVo2jblm0qKw4a6U1Mml0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:15.3064345Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A15Z&se=2024-11-20T12%3A27%3A15Z&sr=c&sp=rl&sig=KxbrvwL8ju1JPOEzuG4K31EtWlmrnexV1T1nrklg1HY%3D","expireDateTime":"2024-11-20T12:27:15.3065183Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4897' + - '4999' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:16:57 GMT + - Wed, 20 Nov 2024 11:27:15 GMT mise-correlation-id: - - 8471e754-abfa-4e4f-bfbf-8c73a9a42846 + - dccdcc64-ad4e-4042-9028-a748a48bdfb0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101656Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000ba5h + - 20241120T112715Z-17b7777dc45b4878hC1CO13uc00000000w80000000001kk6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2259,31 +2264,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A02Z&sr=b&sp=r&sig=nYGph2HdK%2BPjHuSqAX76sMnSPIxtMVBCdPQ8DjtHrPY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:02.4795808Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A02Z&sr=b&sp=r&sig=YIyOSh1eJSxBac1oc%2BwlRrxEX%2FSPf6qV7F8gAUAJVgs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:02.4792778Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A02Z&sr=b&sp=r&sig=sv1hAiW247AeXnrzxB%2F32R0GXRme3AxUZIkcxi8nXzE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:02.4797033Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A02Z&sr=b&sp=r&sig=ouq2cvQoHuj4x6kk1n%2FjlRyXAHKHihw4MkYil54Ss3E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:02.479848Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A02Z&sr=b&sp=r&sig=gvNMkAldSWvi3r%2F6RQUL4%2F0wqPlABUph1NSLV%2BO913g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:02.479992Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A02Z&se=2024-11-06T11%3A17%3A02Z&sr=c&sp=rl&sig=brZBRbezE%2FOTpTVztTq4KiacGABPsh%2Bgb8KeocM05xA%3D","expireDateTime":"2024-11-06T11:17:02.4801375Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A20Z&sr=b&sp=r&sig=1m%2FCNNC%2BWS3GU91WIjQLdSih8TH1Psui5ycimb1FME4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:20.4114227Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A20Z&sr=b&sp=r&sig=maJDeK43SA7pNsOQXfC0k3uZuTMEKy0fKJrkN6ejwW0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:20.4108375Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A20Z&sr=b&sp=r&sig=9%2FamXos91i%2BFGinMviLVOH5Q68uDw%2F5orJNIyX0IjZc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:20.4115473Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A20Z&sr=b&sp=r&sig=hCQnAI8WIoNvIJTXvaIjjpHN93kioUmf0Bm5S7fYB1c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:20.4118678Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A20Z&sr=b&sp=r&sig=K%2Fvxm85%2BTa%2FZcOyBkMnPnXjKjgoC7hI2OLjD8RWVpR8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:20.4119591Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A20Z&se=2024-11-20T12%3A27%3A20Z&sr=c&sp=rl&sig=v7J8Ebsw3sM4X9zTmeF0juOWmjCpGZej1u7LoBUv0fM%3D","expireDateTime":"2024-11-20T12:27:20.4120469Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4903' + - '5005' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:17:02 GMT + - Wed, 20 Nov 2024 11:27:20 GMT mise-correlation-id: - - c712a3a2-15e4-4513-b1b1-9078bece3f3e + - 636c9c90-582e-4f53-8137-2b786037ba7c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101702Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bacu + - 20241120T112720Z-17b7777dc45b4878hC1CO13uc00000000w80000000001kur x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2301,31 +2307,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A07Z&sr=b&sp=r&sig=8Y7%2FKctn%2FCOt73YbCPkxTlhd8zH1BB1mzHPcD6lLJRc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:07.8596244Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A07Z&sr=b&sp=r&sig=hcgpZaviKtIVDIjSiseaBpMjAwlmtcHHvMsyLiN3AYg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:07.8592832Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A07Z&sr=b&sp=r&sig=2n1AC49Mpv%2Fgi4C%2FQWhtSrrtBjQDibjBrXYVD1jGHjg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:07.8597603Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A07Z&sr=b&sp=r&sig=tK25KnXo2qeDVdnS0Xm8%2FPngDLhAGcuOVAqjvv4roAc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:07.8599049Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A07Z&sr=b&sp=r&sig=Xq3tTw%2BUtti679bPxUluAurdfFVPQRkQSVI4JJ1eioM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:07.8600502Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A07Z&se=2024-11-06T11%3A17%3A07Z&sr=c&sp=rl&sig=j1r9MvfYlde3n6YAl3mDiEmWB1IzDcoUZ2tCpmz089s%3D","expireDateTime":"2024-11-06T11:17:07.8601872Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A25Z&sr=b&sp=r&sig=MUEGKYX3Ojrzf%2B0aIAqkRkAK5bbz7o%2BTnmbPISWCQSg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:25.9123561Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A25Z&sr=b&sp=r&sig=YWGKNQZ50rPf%2BaaOVYLUtoXkeOuAe4w0n4v8KpeT6KE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:25.9120976Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A25Z&sr=b&sp=r&sig=d3BLkHAphHKKn1Vc8py%2F1%2BcB%2FmOZoN6d%2BBdWZNwuGmE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:25.912439Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A25Z&sr=b&sp=r&sig=0pgIJItYcpkUsic7NjePQIMUe3UGd3Mt3E9%2FqYzIxh8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:25.9125278Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A25Z&sr=b&sp=r&sig=tjbs5gQGVEt7rH%2FaLf9QeAJ8Q54Jo90TNrwaem%2FRvjU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:25.912609Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A25Z&se=2024-11-20T12%3A27%3A25Z&sr=c&sp=rl&sig=CkEyhU05sWmtoJOv8DbSR%2FCpFLLOGtUWBS%2B%2Bnw1o8Xc%3D","expireDateTime":"2024-11-20T12:27:25.9126845Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4897' + - '5013' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:17:07 GMT + - Wed, 20 Nov 2024 11:27:25 GMT mise-correlation-id: - - a7956794-9cdc-42bb-b452-adce9edfedb8 + - 4a5b7e6a-649a-4945-b783-290c75d37b9b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101707Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bant + - 20241120T112725Z-17b7777dc45b4878hC1CO13uc00000000w80000000001m3a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2343,31 +2350,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A13Z&sr=b&sp=r&sig=pOJF%2BgP0w9IcAgu9JweYVKYDDMm%2Bbb7H1qR5gO49lDU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:13.2476102Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A13Z&sr=b&sp=r&sig=wdOKP5HF91lkh0tlUOdL21otVmVKUuQjM%2FoMGY77S4A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:13.2474009Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A13Z&sr=b&sp=r&sig=1vuY2O6hHJ9HMQEJCdBgpfBvlsZv1QWn0%2BGN7MfJZn0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:13.2476759Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A13Z&sr=b&sp=r&sig=qFdYPYZoubkXVX3C7bixdTwt6cyE%2FXLmWA3g5v6psW0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:13.2477477Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A13Z&sr=b&sp=r&sig=gFw57Ae1c3wdXxsRsLqXpzdyqtcF0nxtlmPiqgPJNz0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:13.2478197Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A13Z&se=2024-11-06T11%3A17%3A13Z&sr=c&sp=rl&sig=2V7%2BCtqyOsmrXRGsdSdBAOaKw3kkQNYmTbmwe5FwJjw%3D","expireDateTime":"2024-11-06T11:17:13.24788Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A31Z&sr=b&sp=r&sig=ERObD%2FZVeMM3W7ejbHs%2Fms000%2F%2FF600Wk9bgNWC2u%2Fo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:31.0181359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A31Z&sr=b&sp=r&sig=lKRzPire3UzOYnZwouYYbeNygPpQUkZtkfWMK9AfiCk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:31.0177531Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A31Z&sr=b&sp=r&sig=m%2FNxB2NLLYMVcoCq1W6Wced7I3ehN2%2Bg6ZlphVfkTbE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:31.018232Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A31Z&sr=b&sp=r&sig=cU%2Bp5A%2B0dqDeqdGcSH0AF2ZaiYrgLw4wva0PT%2FV3URU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:31.0183304Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A31Z&sr=b&sp=r&sig=468pLaYce0NJRPWb8adGLKlAjUIG4Twv0VwJX0E%2FUDg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:31.0184273Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A31Z&se=2024-11-20T12%3A27%3A31Z&sr=c&sp=rl&sig=7E6QyBPuyGc8C8OJCRomLp4QbM8LrrRB1MUUaRC%2Bc9w%3D","expireDateTime":"2024-11-20T12:27:31.0185208Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4895' + - '5012' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:17:13 GMT + - Wed, 20 Nov 2024 11:27:31 GMT mise-correlation-id: - - fd392153-722c-4645-8863-e2433a5023b8 + - 1f024bc7-dafc-4413-9666-15cda782c4d8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101713Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000baz1 + - 20241120T112730Z-17b7777dc45b4878hC1CO13uc00000000w80000000001mch x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2385,31 +2393,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A18Z&sr=b&sp=r&sig=8c5iD%2FPhehsjUa%2F7agSfJFKJhwKAwglRpOTQdKsWHVU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:18.6175153Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A18Z&sr=b&sp=r&sig=gUucY4oAuL6ei3nnMgw7vxaLi8qUjWdtphfqqmUFL4w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:18.6171292Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A18Z&sr=b&sp=r&sig=vYbQGajB0pgaKIZOKDyHs%2BKmdW8FrUH7W2tQSrX3qzw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:18.6176167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A18Z&sr=b&sp=r&sig=xFKVjIm%2Fw8ce1%2B7ySNcWBuywGKOgNyCYAwea5mfZmUY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:18.6177101Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A18Z&sr=b&sp=r&sig=Mty9lhaxw%2FVHspXFbjQ0YI7jXHTrIhqAV1%2FaldbSce0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:18.6178021Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A18Z&se=2024-11-06T11%3A17%3A18Z&sr=c&sp=rl&sig=hL2e%2FAUyTeUa8S4iAMWoDL4tw4ItM5jfI8nzVIZheLw%3D","expireDateTime":"2024-11-06T11:17:18.6178908Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A36Z&sr=b&sp=r&sig=wXlP4EsPoi41GfWKolonAfL6y%2FVM4%2FF98eBOXS7buOg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:36.127831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A36Z&sr=b&sp=r&sig=iGHCaIsCe4MK1Hb8mbA%2FRwQ3AeY0u%2F3rls623caHVUM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:36.1269141Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A36Z&sr=b&sp=r&sig=lebqQIyKbea9nDkunjtcur8sb8NVWf06OCEbTPV0aB0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:36.1282113Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A36Z&sr=b&sp=r&sig=g2iPry2RD6M3MuPgZ8WiyUtw1xVR3AU0w7TxNIgCu6A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:36.1284578Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A36Z&sr=b&sp=r&sig=TGNY5gWiryrW187oZpY9AH%2BG0vFuQvbs6rXH%2FE629aE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:36.128561Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A36Z&se=2024-11-20T12%3A27%3A36Z&sr=c&sp=rl&sig=8MMcA8XXZGsGRZmF1Or4alRtcufxnawQDdvqBORBCvI%3D","expireDateTime":"2024-11-20T12:27:36.1286555Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '4999' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:17:18 GMT + - Wed, 20 Nov 2024 11:27:36 GMT mise-correlation-id: - - e4b76b23-30a7-4d0b-a10a-1ca03b1c70dc + - 277e976d-bf54-4bb8-88de-6b735adfaaba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101718Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bb5w + - 20241120T112736Z-17b7777dc45b4878hC1CO13uc00000000w80000000001mqv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2427,31 +2436,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A24Z&sr=b&sp=r&sig=K9qyofL3OSthDuYKCEvxYDD22KFoMVJ5%2FX8g376xbIM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:24.0227967Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A24Z&sr=b&sp=r&sig=%2FCa6EmKQXsMlkW2h8%2FXXerJU0kLcHyOV37jXnwflTTI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:24.0223517Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A24Z&sr=b&sp=r&sig=jXk4j0ouFwJWuSlUyTgeACVXYnb8NZnKb13962y6sjo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:24.0229817Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A24Z&sr=b&sp=r&sig=xATbkJw879cuLfFTs1%2FsTjz1kn%2F9HxBO%2BJTtUamwuWo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:24.0231801Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A24Z&sr=b&sp=r&sig=xOKJBURF0PCzZ5Wh0%2Bjk6mHpzbB1n68TY6cnV43qgIA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:24.0233596Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A24Z&se=2024-11-06T11%3A17%3A24Z&sr=c&sp=rl&sig=tfgw7xKwg4X5OPp6IyMIWlo6AjMtANNhQ7pKK0MiT%2BQ%3D","expireDateTime":"2024-11-06T11:17:24.0235246Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A41Z&sr=b&sp=r&sig=JWiImUt8XrcSTIm78zrIp8iOWWkM9Z9gPND2hfZbzxc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:41.2318637Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A41Z&sr=b&sp=r&sig=SAiKZ%2BVvdfzw872lz%2Bm038PPHqb55NwxhaAIee3bF1c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:41.2313945Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A41Z&sr=b&sp=r&sig=%2FmVTCwG2GvFC0LGVo1HJwbl7NhGi8LoGwf2PFTlwMQA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:41.2319524Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A41Z&sr=b&sp=r&sig=OvRV9%2B1zPZsPT%2F4LXp77nO293hfOnRBh0sp29mILqE8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:41.2320403Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A41Z&sr=b&sp=r&sig=cGJHtOtO6fKedeSDUWCWPABnxBHSwV4e7f5ST3vTwtI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:41.2323185Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A41Z&se=2024-11-20T12%3A27%3A41Z&sr=c&sp=rl&sig=MFpzyF%2BwEzPSn6nFJsnENk4xpjm%2Ftqt6Vf3HExn0fFE%3D","expireDateTime":"2024-11-20T12:27:41.2324088Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4901' + - '5003' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:17:24 GMT + - Wed, 20 Nov 2024 11:27:41 GMT mise-correlation-id: - - 0f418f4b-a608-41da-bdd3-118dce6f09ac + - 6fa36c6c-1b2e-40a5-aa75-6d80c42599e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101723Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bbev + - 20241120T112741Z-17b7777dc45b4878hC1CO13uc00000000w80000000001mwt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2469,31 +2479,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A29Z&sr=b&sp=r&sig=O0q%2FCR0nGx3ap0dRlAG65g0gl88AmW83Y%2B%2FISyed3dU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:29.5040488Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A29Z&sr=b&sp=r&sig=Zz2ifFDaN0GQwBcs5Pixs3s%2Bdku8LTrSeJ3paX04wt4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:29.5035586Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A29Z&sr=b&sp=r&sig=7PfjEo8qONolJrPXsmqb4bHLtHPqewXK9HZzXK2irUc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:29.5041635Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A29Z&sr=b&sp=r&sig=1Gojyhjnwvctd9OrzE3ClxrTDufnzFW7MjIqy8fiRrs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:29.5042875Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A29Z&sr=b&sp=r&sig=TAhnbSNuBYhq3D4ELAszFiDHSiafQW4qVRx4d8hVGxs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:29.5044053Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A29Z&se=2024-11-06T11%3A17%3A29Z&sr=c&sp=rl&sig=d2HJbDBZMbRkq9F%2FwBpJV%2Bl2Fyjn6aSJdHhbcOhOz0E%3D","expireDateTime":"2024-11-06T11:17:29.5045218Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A46Z&sr=b&sp=r&sig=KLVsDUX%2BLiBPnKePRd4fMKWaT%2BpY%2F8dSseckXVq0WmY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:46.338167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A46Z&sr=b&sp=r&sig=%2F9P893u3zFBSiXA7Afsim%2BcNnE3EB5bs7%2FR2Bvl7tTI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:46.3375668Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A46Z&sr=b&sp=r&sig=a1JfS4og8uHMoDV5DkJrY4d%2Ble2wC1t2CW%2F5nIGOBOQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:46.3383551Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A46Z&sr=b&sp=r&sig=5qnE6EiCnCeP1WAe1Rqok3ectGDwxys%2BhO2grqgRxQU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:46.3385354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A46Z&sr=b&sp=r&sig=olOg7kckHmrDBElWEKLdoXeQZk64%2FAjlYkqCa6NKbIo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:46.3387093Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A46Z&se=2024-11-20T12%3A27%3A46Z&sr=c&sp=rl&sig=7chHED1Ic7glRJtyuaFYo1t5rvGBWChfTqYnAxc%2F9Ts%3D","expireDateTime":"2024-11-20T12:27:46.3388832Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '4897' + - '5010' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:17:29 GMT + - Wed, 20 Nov 2024 11:27:46 GMT mise-correlation-id: - - 2b169080-34f8-4269-b369-b01ce6207fab + - 716ae701-a9d4-49ac-84f1-19f69e93b3c3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101729Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bbrp + - 20241120T112746Z-17b7777dc45b4878hC1CO13uc00000000w80000000001n2z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2511,32 +2522,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A34Z&sr=b&sp=r&sig=9LK9kmcnsMX83mTbJmN77xk60GrRQ%2Btq2xSg9TVQ39M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:34.8796986Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A34Z&sr=b&sp=r&sig=lCSWRW6wzminM6I6FMC3UAaHeG7MnHJPxR7B%2BXxGVeg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:34.8793508Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A34Z&sr=b&sp=r&sig=k5EjpU9R62X8x2pvstzN%2BLIh3a4IZt0pB4sIyWaEMb0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:34.8798405Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A34Z&sr=b&sp=r&sig=QBeY4DjqxzV26rEczV75MXGAJcjMxLMgoCjHGpWHJyk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:34.8800364Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A34Z&sr=b&sp=r&sig=21lwLMfeJKG4XQ5q38iPn3uNqVhtTW4%2BH4jmA4IFIXU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:34.8802105Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A34Z&se=2024-11-06T11%3A17%3A34Z&sr=c&sp=rl&sig=wuLOBKhpzm5AmQMR5T98VUWI0J6s8Yp7Z8erFYgH1Rg%3D","expireDateTime":"2024-11-06T11:17:34.8803821Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:17:34.441Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A51Z&sr=b&sp=r&sig=tAFt0mbS2OJlAYK68WiMmmlcw0%2BWIExbW8ghB4cOVgs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:51.4404506Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A51Z&sr=b&sp=r&sig=sz%2FMy2JSd2kFkdsdBk%2BghZF55aW6QWmPErmQwZsOeoo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:51.4401697Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A51Z&sr=b&sp=r&sig=5mimouwagr%2BIbsgwMIUy8SqBJ0FYoQEYs6vMv1Vlqmc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:51.4405399Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A51Z&sr=b&sp=r&sig=ZHuuPgGSew22IcNs7mDDloF0i%2BIED0ZjT7ibVuDpsYA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:51.4406305Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A51Z&sr=b&sp=r&sig=LsuT9oNszADIPyJiiS%2FXNJPBdZdXI8pCuM9i4MKa4TE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:51.4407204Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A01Z&ske=2024-11-20T18%3A25%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A51Z&se=2024-11-20T12%3A27%3A51Z&sr=c&sp=rl&sig=gsCVrbF8i7kvwkqdQA80yB7lOzxst6PAwbms2ceY%2BBU%3D","expireDateTime":"2024-11-20T12:27:51.4408052Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-20T11:25:17.024Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:26:04.345Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '5020' + - '5003' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:17:34 GMT + - Wed, 20 Nov 2024 11:27:51 GMT mise-correlation-id: - - 275245b3-3d1e-4a4f-ba3f-5b34849429ca + - ca8adb81-3497-4fdd-9612-f91cacdce078 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101734Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bbz6 + - 20241120T112751Z-17b7777dc45b4878hC1CO13uc00000000w80000000001naf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2554,23 +2565,67 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A56Z&sr=b&sp=r&sig=4GoEXNQiLFEeDrPM4KK17Dc5NckVPTw324ONYoWF6g0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:56.5492066Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A56Z&sr=b&sp=r&sig=1uetP5XGgpsPaDDgKw3QpXy3AvVktVPyr%2F2KeHvnSf0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:56.5486169Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A56Z&sr=b&sp=r&sig=G%2F8WlDhKU1cLv3Pl7o%2FOmEB0yrkZqB2cdQe4HaRIKrI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:56.5493774Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A56Z&sr=b&sp=r&sig=TH%2B9fP3Y856riYRj56KN5NMX7XKFJjfpiecYiFzrvyg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:56.5495494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A56Z&sr=b&sp=r&sig=d4IsENH3T7GjM1uVo%2Bb8RzfU2ZencK%2FqRdOihKfVBgw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:56.5497166Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A56Z&se=2024-11-20T12%3A27%3A56Z&sr=c&sp=rl&sig=sW%2FRNQUUiSX3I6YYVehwsik0KgZ8T6VuHArQG0Tdua8%3D","expireDateTime":"2024-11-20T12:27:56.5498837Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:27:56.527Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '5131' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:27:56 GMT + mise-correlation-id: + - 46cb928d-15be-4a60-a986-25c98c0dc4ef + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T112756Z-17b7777dc45b4878hC1CO13uc00000000w80000000001ngr + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:49.6554876Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:49.6554876Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:17:37 GMT + - Wed, 20 Nov 2024 11:27:56 GMT etag: - - '"fa00633f-0000-0200-0000-672b413e0000"' + - '"9703f002-0000-0200-0000-673dc6dd0000"' expires: - '-1' pragma: @@ -2586,7 +2641,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4D75E79EB6E640D3AF3BD8390B17CD9A Ref B: MAA201060515037 Ref C: 2024-11-06T10:17:37Z' + - 'Ref A: 80D2E1188DE34C9BAFC50B7F5752160A Ref B: CO6AA3150220031 Ref C: 2024-11-20T11:27:56Z' status: code: 200 message: OK @@ -2600,33 +2655,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=update-test-case + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=update-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=wPMkA2fwvEOsc6CWkcX4%2BX7zkU9QLtUYRtivpFjYryE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.3810991Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=KFzIW%2FJwwCQxTNzpeUMq75O6kBmb3thgCDXRYgj37Uk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:42.3807847Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=EL3jTkrskdglifbxtnSQTmCmwZL7kyLnyi57CN1TFwo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.381204Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=Cs%2BJpK6NFp1B0vjgARxKthi8TArY9JhDdoQJ7rYUtNI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.3812966Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=GlalScC1OlI8OjdZjrjnI0A%2FqOa5%2B7S5dD%2Ffgn5pHh4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.3813941Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=0DR2Zrct%2BJsqtRjbnEEuPbl%2BndUxuJ4MYRthEWHvcls%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.3814893Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=VH%2FslIfH%2B2Bx%2B4ENhhFfKrGluKtRcMf9ksbPd8%2Fb6rg%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.3815874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A42Z&se=2024-11-06T11%3A17%3A42Z&sr=c&sp=rl&sig=q8IxnpQXVqrU9gmwB0WxeYnOle92xMhUi3zWGLIzJdk%3D","expireDateTime":"2024-11-06T11:17:42.3816752Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:17:40.072Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A57Z&sr=b&sp=r&sig=SvXeD3br3M5pcshEZuUKsvidO6xzYaavsZX72vJl2UY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:57.3148074Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A57Z&sr=b&sp=r&sig=HRiH3RYvJhsqBF8GQZfTbHT7ahxWtKypBbaWBs%2FMkh8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:27:57.3145569Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A57Z&sr=b&sp=r&sig=PowrMxmaqDB7XETUflvRoRigjDDt081%2FkTxifb5V1EA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:57.3148831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A57Z&sr=b&sp=r&sig=ips%2FFmoNoCrmJI0eTPv%2B0npjR96SW%2FZFOUOC6J7KNq4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:27:57.3149543Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A27%3A57Z&sr=b&sp=r&sig=NveeFN0ri6KVhHewmhXbO4dX2IIB%2BflzFIXR%2FWr%2Fa7g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:27:57.3150235Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A27%3A57Z&se=2024-11-20T12%3A27%3A57Z&sr=c&sp=rl&sig=AOSYyltbrgcXeqB3Vua%2FCQgpiNj4Gc3zKCjXL4x2KrM%3D","expireDateTime":"2024-11-20T12:27:57.3150896Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:27:56.749Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6257' + - '5147' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:17:42 GMT + - Wed, 20 Nov 2024 11:27:57 GMT mise-correlation-id: - - 236776e4-43bb-461b-b741-6edcc23266f7 + - 85c3312f-d3d4-4f06-a67e-fa713260c7ba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101741Z-18557d4f7b8grzcmhC1SGEncy0000000053000000000g9qh + - 20241120T112757Z-17b7777dc45hcd5hhC1CO1mrt40000000w6g00000000cpgy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2644,23 +2699,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:49.6554876Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:49.6554876Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:05 GMT + - Wed, 20 Nov 2024 11:28:16 GMT etag: - - '"fa00633f-0000-0200-0000-672b413e0000"' + - '"9703f002-0000-0200-0000-673dc6dd0000"' expires: - '-1' pragma: @@ -2676,7 +2731,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 289D3E99BB814DA09F0A11330E37BD8D Ref B: MAA201060514031 Ref C: 2024-11-06T10:18:04Z' + - 'Ref A: ABCC69783427429E96C56D47D1DF8B11 Ref B: CO6AA3150219019 Ref C: 2024-11-20T11:28:17Z' status: code: 200 message: OK @@ -2690,33 +2745,34 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=TDtHNRaxxCz9OzlrQN6unBSvkNUyIkaBdcF0ryrYJQA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.450986Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=6OqjFpkK9s7OfIXZSY0WCdKkzmsdlj3m4jJpUmAjz28%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:08.4505087Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=acY2eaf8hq%2FxdA80V%2B6HfNi%2BM61M45mQP6dMWLFFm%2B8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.4511879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=%2BYZNFFV5buH6mP34R4JtBlNrdXXZAaPNKoCjJSDIt%2B8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.4513958Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=Nu7nydaHxodt9i3u6DwLDdj7MApwcKTZe0XaMPbVEqc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.4515887Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=N54%2FQgIMKRh1hwpuQg4G055LA8dPHznc9yXC6lfAsJ4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.4518094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=vHH3f15X%2FxtDWqhBRO%2FGb7L8oSQ1LtTBd%2F%2FIlOwtyjI%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.4520052Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A08Z&se=2024-11-06T11%3A18%3A08Z&sr=c&sp=rl&sig=GTtJpINVe1iO8O3Zbl54ApxxhV57dLNEg%2BDD5YTz3Jg%3D","expireDateTime":"2024-11-06T11:18:08.4522129Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:17:40.072Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=AlISBBzMiQITOwGTZR98iVkPL2UrdYhG%2BU3ChpOxZeU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.0754676Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=BSnwCLPcTDpFjKb0mvGoLMiHFmxQ%2BNZ%2BEJi3jZEkXQQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:18.0750245Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=bPdZBRTUcC%2FmpLZzijpvctFfpOuuiV5CttARtDOgIzs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.0756643Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=WygX6KoflTzPBaDCgL1Xf0HDRChtn3Yph9J%2Ffx86fho%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.0758323Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=N08zwY4HeptwZUgojCemfa7pjK2P1wwjfSQcBfCEJDc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.0759987Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=CKDHQJOGDzOlvFD1J%2FbMrA38wcPcGrNBTMkW0WrYrRk%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.0761661Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=NRzwN5o8EiE9%2FInmCiZ7uYjys9wZs9polu%2FZMMcyFVc%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.0763343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A18Z&se=2024-11-20T12%3A28%3A18Z&sr=c&sp=rl&sig=Y3OJIZJAWGzUPMAiDxWvU3aysoxs%2BBM5ICunSgUztr0%3D","expireDateTime":"2024-11-20T12:28:18.0765012Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:04.528Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6245' + - '6347' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:08 GMT + - Wed, 20 Nov 2024 11:28:18 GMT mise-correlation-id: - - 6b8f7701-7f70-4e2a-9f24-a8c5e18e7e60 + - 92876cac-3cc9-4fdb-88a8-34476156ce78 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101807Z-er1b6dc89fddt9w4hC1SG16v30000000051g00000000f969 + - 20241120T112817Z-17b7777dc45r6wskhC1CO1w1ks0000000fmg000000004v1d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2739,34 +2795,35 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=I6c0pyGQm6%2Fp2ZK3SV5KdL%2FNVbson%2BjeYGrjhzNl%2FJw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.0919384Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=FdMb%2B79B2mhdQ2H5%2BugWgnDvIOQYTOYjj%2Bic%2ByeI%2Bo0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:09.0914632Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=8f8aOqMybo1yazWU%2Bavp7skNF11vxdVHBnDmsuOj%2FgE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.0921776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=EmsgldyxkWXrskRUwyHYtt82MdI2QPEwksKmnet43uA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.09229Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=jYIIpOvlWHL0INp4xJ9Y9%2FBzMF%2BxZetuE2hIEgnRReo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.0926034Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=pljCswYcKjxJOkQLbp6fT%2FrEAPR5bfWXZiNQH1xsEaQ%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.0926934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=VEUOQmDxkPBmtKmgnTld35hS1ihhcKeEym5EDS%2BjFaw%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.092818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A09Z&se=2024-11-06T11%3A18%3A09Z&sr=c&sp=rl&sig=%2Fk8Rx3IRdxi8Ceqvp%2BfqYdTNqD3RtlbUPpMn%2Fp1ApgM%3D","expireDateTime":"2024-11-06T11:18:09.0929131Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:09.081Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=QIfFSbvLFP40FLON7g%2FfGm3YEYpx3zV23gYktFc6FQk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.276308Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=K%2FumPCR7L6EfvrS80lk%2BWGZJ2sRG61gDuTCzNZsOC90%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:18.2758909Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=aGw4f0csiXrAj7SOTuOP2oZ7ZrB0uqJh73VB80dNeg8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.2766816Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=b1p2Xx9MxFCP9uW%2Btly3o9CV04tRJFvEe2hzX%2F9i9ts%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.2769605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=QdUNklJZ5b9IvKsw58gNmGCrE6aH0PEb%2FW4cZQE0Gn8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.277261Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=ChcUF7i5I%2BzwquLpge98mkJOEJAo2Anr5o7T3hry3OI%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.2774374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=4SoBSmoyvm47Md7F65vOei4twAU%2Bpgw00kfK%2FMOyqH8%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.2777847Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A18Z&se=2024-11-20T12%3A28%3A18Z&sr=c&sp=rl&sig=hDvfuw3JoJbbJx9nf6RWJKZR%2BM8JuMVRXK4MJ2yP%2BOw%3D","expireDateTime":"2024-11-20T12:28:18.2780337Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:18.266Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6307' + - '6401' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:09 GMT + - Wed, 20 Nov 2024 11:28:18 GMT mise-correlation-id: - - 455d1c4a-f40e-44c1-8d73-8e34d8e2a877 + - 22186521-3aac-4ff5-85f1-214121da90c6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101808Z-er1b6dc89fddt9w4hC1SG16v30000000051g00000000f97p + - 20241120T112818Z-17b7777dc45r6wskhC1CO1w1ks0000000fmg000000004v1t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2784,34 +2841,35 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=UBEZjEFSJlBk5G5iw9SdV7%2FYJEbwuwd%2FdEOBTc2U4e4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.5672957Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=wFma0sUSCgtKJZ4pGYJ0xLMkuhwtkMYrYkYviRoJ1Ho%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:09.5670363Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=GuY%2FgF3Jguom2%2FM1oeAnhcR0m3RMu5lNEYGGuGyCfgc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.5673877Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=gt2PbLmECJxODdgFQ8w24WFZuVROtiX3AITwywBsI5s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.5674797Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=Q2iIL%2B2N3cHlIxMAIwuVYic4qKcwhBaieO%2Bw%2BXVuAyU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.5675675Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=siGI91fHOFjAQAwsAHWcp874FFtwCjS0Ww0EfAqgPXw%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.5676589Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=44dG9PkJh72yBUbRBoohwH2vz%2B1xwDMNkWNt0Q520wY%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.567756Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A09Z&se=2024-11-06T11%3A18%3A09Z&sr=c&sp=rl&sig=H9E%2B5RiWmTOIJYUb08mt6UdEn%2FSbP%2BS9%2FoY6G4XWQFk%3D","expireDateTime":"2024-11-06T11:18:09.5678524Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:09.081Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=dFeQClS3gozyuSc1Z7Jmfb53NaQU5VxWx5tctPe3mxw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.3920024Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=vBx%2F6tYEC8Jy6p2norNNwyJeA%2Bdt%2FlaHCQAAXQRHvk0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:18.3917749Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=BPTHKR41izA9loGwxTjMCUTkfyK0d%2FMGSYWWMfTqhCI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.3920866Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=DHFDlYuWxZebvXFu2XR4gQJcKw7DAvBW0%2FDRRVI2z3Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.3921739Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=gYhVz1Eo7vHzWSX1L70poT7syq6zAFBFuJ046cm4JCc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.3922606Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=O66lkVm1uUPdacu1i97w5hwXrTujdoe8ysveB14ABPg%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.3923429Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A18Z&sr=b&sp=r&sig=FApU20O1n1W6kKquHeofiVYkmWSIaY84bsKpULbYoIA%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:18.3924299Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A18Z&se=2024-11-20T12%3A28%3A18Z&sr=c&sp=rl&sig=FRHIV%2BseXAUDWJvZxnVSDcheLsLjDDnnXDjrUGgnzsY%3D","expireDateTime":"2024-11-20T12:28:18.3925128Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:18.266Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6297' + - '6393' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:09 GMT + - Wed, 20 Nov 2024 11:28:18 GMT mise-correlation-id: - - d8a2a367-bcc4-431a-8bf0-ad453e3992fb + - 0d34ea6f-87a3-4e9e-95c1-c2007ec90067 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101809Z-er1b6dc89fddt9w4hC1SG16v30000000051g00000000f98k + - 20241120T112818Z-17b7777dc45r6wskhC1CO1w1ks0000000fmg000000004v23 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2829,23 +2887,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:49.6554876Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:49.6554876Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:11 GMT + - Wed, 20 Nov 2024 11:28:18 GMT etag: - - '"fa00633f-0000-0200-0000-672b413e0000"' + - '"9703f002-0000-0200-0000-673dc6dd0000"' expires: - '-1' pragma: @@ -2861,7 +2919,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D6EB0A030B3B4BCAA09C819B9C04C85E Ref B: MAA201060515019 Ref C: 2024-11-06T10:18:11Z' + - 'Ref A: F92B5C97EE4D494280518D3E0A6FA7AE Ref B: CO6AA3150220053 Ref C: 2024-11-20T11:28:18Z' status: code: 200 message: OK @@ -2875,34 +2933,35 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=7CSx19XslYKaQiOTe5vKk541oH8JLc6lTR7QpydPqOM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6374923Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=AhoE3FXlsJ0wXVQ2PsYrzBT6AABw3p1Qowxr2Yaz33c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:14.6371112Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=MXodLmZnTPOR4mFDwtrtgbsM%2F9WxzwLwIxiPpDP%2BJFQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6376284Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=t9vBXyJQx5r8GLRiF4eUmCbrjm7RmRM2t00hocLW0SE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6377588Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=qCmq0NBASJl%2FQlaBcMZBMJ7K0z8WqarS9Q%2FQPEsan04%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6378907Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=z3T%2FElHbA6pKQbPAE3%2B0VdyQVM3qztEsUU74J%2BZPh%2F8%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6380193Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=Tekz%2FnsGLXeeCiHKrnqEX9XUB58y3w3LmSvN%2F5JveRA%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6381713Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A14Z&se=2024-11-06T11%3A18%3A14Z&sr=c&sp=rl&sig=RGPmeD0TAXEfctLv0ZJcZnRTsS1f69Hn5x8N8KCeB3E%3D","expireDateTime":"2024-11-06T11:18:14.6383036Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:09.081Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=sS8IowNcpbcwiCzFadJvunMsQAC55OMjSyve7nDNo5I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.1989688Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=OXu0NnsCvb1UFwPTFpAGb8yTDia7d%2BhzmJe3PPgDAGE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:19.1985054Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=ghTlcgK4wazKR1wYris%2Fh7SIBP9FhQiW0x7XZKdh2%2B0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.1991337Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=iVTGd4ihliUoOL1XX2Ufmf8PweqKrjOTeNuz3ug1%2B%2FY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.1992991Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=mmPCxeL5lNLA353wK17yFNZo5HDLu4UR0UCvOW6qLaE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.199465Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=Wba9x6CamrZt8srVh2UVqiY7n8w%2F4Ou9PiVRUwz4lDk%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.1996616Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=nEKYe0JaC50Ldeb8UvxrAogIMK705ff8ddJ9B4jDXdo%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.1998252Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A19Z&se=2024-11-20T12%3A28%3A19Z&sr=c&sp=rl&sig=1nzjVTbJo3LBtBCo5bcM97XXrBG8aJgzOiXybOyeZIo%3D","expireDateTime":"2024-11-20T12:28:19.1999889Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:18.266Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6294' + - '6392' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:14 GMT + - Wed, 20 Nov 2024 11:28:19 GMT mise-correlation-id: - - 12d642e7-19e7-47d7-9850-f47ef76d0dd6 + - cc49f847-a8e2-4fb9-831a-2007e8f53373 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101814Z-er1b6dc89fdqghlthC1SG17drw00000004xg00000000w6b8 + - 20241120T112818Z-17b7777dc45pwpq7hC1CO1svhc0000000w3g000000005d0f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2920,23 +2979,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:49.6554876Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:49.6554876Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:17 GMT + - Wed, 20 Nov 2024 11:28:18 GMT etag: - - '"fa00633f-0000-0200-0000-672b413e0000"' + - '"9703f002-0000-0200-0000-673dc6dd0000"' expires: - '-1' pragma: @@ -2952,7 +3011,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0BAA22AF07564C19BDFF418D8DB58CAF Ref B: MAA201060514033 Ref C: 2024-11-06T10:18:16Z' + - 'Ref A: 2A2813F11BC84CD69B1F1E52F15B67A7 Ref B: CO6AA3150220021 Ref C: 2024-11-20T11:28:19Z' status: code: 200 message: OK @@ -2966,34 +3025,35 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=TRAfx2LRhUDq5e7gNoHUH0sIRXdLepwCJL2islldL5M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3761051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=25lFnjmtZW5FSyCYd%2FW9%2BJuBVmfrv5G7PstYbw4pn3k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:20.375716Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=zJnghGTE4%2BH%2FGauWqVBLpJFOlCBtaWej%2BXoGXytYvRs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3762572Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=XS9243v%2BoBbLDXV%2BKePcmnqM7Uxa1saWhij0qLXNDJ4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3763944Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=1%2B1scX%2FluEIlCTKiTvRQS6qKBF8Ta6jCMZW8Tjaq4cs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3765391Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=fk%2FxnuVF7NfLDI9yIIhDYFgT%2FCJU5GMDmoZDXVcEjgU%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3766753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=CdWkRsI7iOtQgrdcWw9Cw%2FbqPTSq4adPNHDf61DK%2FeA%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3768137Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A20Z&se=2024-11-06T11%3A18%3A20Z&sr=c&sp=rl&sig=8uz2BKSNWybi2FtjedgWrjw7hX5Z%2BZmPpN2%2BMjI3emU%3D","expireDateTime":"2024-11-06T11:18:20.3769464Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:09.081Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=sS8IowNcpbcwiCzFadJvunMsQAC55OMjSyve7nDNo5I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.9845746Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=OXu0NnsCvb1UFwPTFpAGb8yTDia7d%2BhzmJe3PPgDAGE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:19.9842933Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=ghTlcgK4wazKR1wYris%2Fh7SIBP9FhQiW0x7XZKdh2%2B0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.9846577Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=iVTGd4ihliUoOL1XX2Ufmf8PweqKrjOTeNuz3ug1%2B%2FY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.9847475Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=mmPCxeL5lNLA353wK17yFNZo5HDLu4UR0UCvOW6qLaE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.9848319Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=Wba9x6CamrZt8srVh2UVqiY7n8w%2F4Ou9PiVRUwz4lDk%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.9849097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A19Z&sr=b&sp=r&sig=nEKYe0JaC50Ldeb8UvxrAogIMK705ff8ddJ9B4jDXdo%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:19.9849988Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A19Z&se=2024-11-20T12%3A28%3A19Z&sr=c&sp=rl&sig=1nzjVTbJo3LBtBCo5bcM97XXrBG8aJgzOiXybOyeZIo%3D","expireDateTime":"2024-11-20T12:28:19.9850824Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:18.266Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6303' + - '6393' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:20 GMT + - Wed, 20 Nov 2024 11:28:19 GMT mise-correlation-id: - - 97b0e677-fd48-403a-a422-79e0adf8f0f8 + - 50665151-633a-476d-a436-f837d27c4f1e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101819Z-18557d4f7b8hswrbhC1SGEz31400000005fg000000006pe8 + - 20241120T112819Z-17b7777dc45cd6gnhC1CO1wzd80000000ev000000000k6ur x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3015,34 +3075,35 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=VUv29LU4o1JWGMiYR3tAI%2F%2FMYbZ0fKwdWmo3OAoT0EQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.9490802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=pRQkoWMDSo8uZ%2Fs1aXRE%2FHb2YrtWfSfBgq7%2B0cYCdNk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:20.9485424Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=VRJP%2BJ6jhYTVN6a51xhf823Bnk5HVwP%2B9dIazNK96yQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.9493946Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=5%2BjYPT0MYc2%2FA1WKq5EqJtpeR1tNA8uZrQRCdJk0MIo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.949726Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=YY%2BvIuTHOsOqnpXyEOpT1UUMX0lOaPFk%2BCM5DXna9ek%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.9500877Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=%2FS%2BK%2BPTls9jCwxthZXyCMDDkBEApFZyXALl9i4%2Bb1n0%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.9503849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=hzZN1rXdEVIAgyIMu4O1nUDDeGRQIKHdkB4Lofpd5Rg%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.9506915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A20Z&se=2024-11-06T11%3A18%3A20Z&sr=c&sp=rl&sig=roqC9KiUr%2BOdNfQOnK0GSWKB4FQ9W4KMOdW8hk6QhDw%3D","expireDateTime":"2024-11-06T11:18:20.9509866Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:20.937Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=oL1QAylVUF4MOTgDfiB6IwQgynHncf%2B7K%2BkMrp%2Frd7o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.1975826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=i4NgbLYviEfMbc%2F5I3UwTVWlGPE%2B%2FL9fJUMhJBCb4gE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:20.1970615Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=0hQl5%2FzvbEZMrPW0L0fLvl7VhlekRuXWrjxIVkkIUIs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.1977354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=0MIR5fjFojFvjBgoRMPU8%2B0M%2FCypyt9u8cuxIP7ysbE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.1978603Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=%2Bm0Yoc4BUXd42dXzkN2qIq%2F93hJMn4TxtkoDuBVqIl0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.1980329Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=9nFpJTtjoCYq2h9QyLTfzz4dR%2F02Am%2B2sRXH72JLs0s%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.1981791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=Zx4Uug6kv3wdI7I%2BDPS0RolBBcabkXR%2FRcfstNdXBTU%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.1983246Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A20Z&se=2024-11-20T12%3A28%3A20Z&sr=c&sp=rl&sig=bDH2eMJ2jopy%2Fh8NXLBHpmW7b1JTesx14t%2F8Hw7z%2FIo%3D","expireDateTime":"2024-11-20T12:28:20.198495Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:20.186Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6305' + - '6416' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:21 GMT + - Wed, 20 Nov 2024 11:28:20 GMT mise-correlation-id: - - 114a4250-8374-4fc8-9cba-9d89ce299f1e + - 44e257d3-51fd-45ad-9aaa-a28df9814708 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101820Z-18557d4f7b8hswrbhC1SGEz31400000005fg000000006pgq + - 20241120T112819Z-17b7777dc45cd6gnhC1CO1wzd80000000ev000000000k6vn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3060,34 +3121,35 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=ILb45L75XZCI4AYbX0rO01xc3X8A%2Fj2RgQbnnQ2wbRU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.4494053Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=zfWFOXuttkBBrEFeq3k6IhrzFD9hVlatxWTRN9JceZw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:21.4484949Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=zMK4QmS%2BDiMpNnFLuRFLfd73JA9T8dzUQmdnL%2F7HS50%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.4498154Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=F81r%2FuXtVVgG2Xe%2FAWwtfwodgm5ka1ycyGxro6L0XrA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.450058Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=3HZmF%2BgJRFXlSqW61FlzEvQOaLEWptEn6WLr%2FICSYhY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.4503088Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=kVOUTQ6U1S0fBHCp3QqmnZyOKtPQWqF1vELek3ZBwc8%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.4505292Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=86qukxQFIxhLUPd7eiciGWS0PO2oMnTAAt53Qje4tMI%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.4507872Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A21Z&se=2024-11-06T11%3A18%3A21Z&sr=c&sp=rl&sig=wz1Qp0%2FZFOloHLE2MC1Ka3kCsgKuXxWt1fyF6QpIhNE%3D","expireDateTime":"2024-11-06T11:18:21.4510169Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:20.937Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=G%2FSYMRwPkQ5nw7to1ZrfbC%2Fp7eYFoJlHIG4spotIlYE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.3122241Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=dfXv4OQrDi%2FOWvjSc8OfwH%2Fgb5i8LVFS7G5mfzlYkDQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:20.3118738Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=TguNwtjXTcQCUY2x6APzuwu4A297R7H6HH6H6xt5feg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.31236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=TWrr9BjLr4%2BppGudkUbLMMJdpw9aLcnesN%2FyfwcxME4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.3124972Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=97h7ToI9lb%2BeP75p%2BhUJ2MpuC%2BzaLzZX%2Fa89zzWOyXE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.3126456Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=QrAxEkxMdgERj46sKNuZh52flstVlHBA7ilUpqu2ZOo%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.3127896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A20Z&sr=b&sp=r&sig=9RlFubn4hxihfBdyVwSXQbQ4Uc3MfM50DsoVSx2%2Fbnw%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:20.312926Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A16Z&ske=2024-11-21T20%3A25%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A20Z&se=2024-11-20T12%3A28%3A20Z&sr=c&sp=rl&sig=67rV0fV3i%2FpnCujzmFnn%2FHDLZnwP8RqC1UvXmFLTIeM%3D","expireDateTime":"2024-11-20T12:28:20.3131056Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:20.186Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6289' + - '6404' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:21 GMT + - Wed, 20 Nov 2024 11:28:20 GMT mise-correlation-id: - - af20d9d3-159e-49e0-a42d-ef20574bde93 + - 5b011cce-1767-441c-9308-2404a8f07b88 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101821Z-18557d4f7b8hswrbhC1SGEz31400000005fg000000006phu + - 20241120T112820Z-17b7777dc45cd6gnhC1CO1wzd80000000ev000000000k6wf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3105,23 +3167,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:49.6554876Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:49.6554876Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:23 GMT + - Wed, 20 Nov 2024 11:28:20 GMT etag: - - '"fa00633f-0000-0200-0000-672b413e0000"' + - '"9703f002-0000-0200-0000-673dc6dd0000"' expires: - '-1' pragma: @@ -3137,7 +3199,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1054B8CF5DB944C2B619B371667C5705 Ref B: MAA201060513049 Ref C: 2024-11-06T10:18:23Z' + - 'Ref A: B616FAFE8F344270AFE79D0E0C7769D7 Ref B: CO6AA3150217029 Ref C: 2024-11-20T11:28:20Z' status: code: 200 message: OK @@ -3151,34 +3213,35 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=XZHGi4H0JYBC0QxGyreqRXxMthm4CQyop6DpneHtMSM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7771427Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=71bUZq0Tmt8dsLYQKb6Akmg69pqphKb38WdlUi7kXZU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:26.7767632Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=gonh5%2B3NbqaTkiiZIjGvQ4gNkQIBTUcSXty8rQoWqEM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7773004Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=UMhzDUKpLpxIt949a9E2Bb4rVYkp%2B8mBGmbW6aX1HjU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7774281Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=id%2Fw6AahdLcbyHLdjebhvMPMf%2FdxVwO9W5Vwt1fwYmc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7776068Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=dYLL0RUQzl0egSo61nM6ZkquCcM%2BB%2FOOWKYhyCg0e%2F4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7777334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=GGaQk2kRn4hdSZdClqQ1sGIvVACZzyd4FFJZaygNMdk%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7779138Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A26Z&se=2024-11-06T11%3A18%3A26Z&sr=c&sp=rl&sig=iTYv2uX0P0aVgKfjMc1dgThHhs23H13xM8%2BpSozuC3w%3D","expireDateTime":"2024-11-06T11:18:26.7780387Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:20.937Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A21Z&sr=b&sp=r&sig=jj6CeaD1MM08SvKon5SZOkLPqCp17pgBJYPllpragMA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:21.2512754Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A21Z&sr=b&sp=r&sig=5jTXXHxBDcT6CuQvN7Eo5jUOruFjPj5eg46PH%2FDvQsE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:21.2508288Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A21Z&sr=b&sp=r&sig=oVXoOWusW8b4xXwgZ%2F09f10Z5TErhA2FwIVO3ygG7LI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:21.2514387Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A21Z&sr=b&sp=r&sig=qgFKuYkDmxw7R87HXC1UgngJQD8iqrQ1sN5UcqXTI3Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:21.2515396Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A21Z&sr=b&sp=r&sig=EDw6IY5JoThRqNe6dAlBpIWgjZeLtHb9FBJHanENOBQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:21.2516421Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A21Z&sr=b&sp=r&sig=fXCVJs30xANChcGjHDWFLFGD%2FMIra8UBvBRBP3f5f2k%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:21.2517318Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A21Z&sr=b&sp=r&sig=TS2Zir1m%2Bfjyrn%2FgQSb%2B80nVAtv%2BG1sFYaXK8dbXTEw%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:21.2518216Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A21Z&se=2024-11-20T12%3A28%3A21Z&sr=c&sp=rl&sig=hhivQwMTSU3FgG7BKCFYZ74IGma7Y%2B0k5uCGruJOk9A%3D","expireDateTime":"2024-11-20T12:28:21.2519073Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:20.186Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6290' + - '6397' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:26 GMT + - Wed, 20 Nov 2024 11:28:21 GMT mise-correlation-id: - - 1aa3458c-a1a3-4966-9295-520aae2c6477 + - f098ff44-b6ad-46d9-927a-37807719281f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101826Z-er1b6dc89fd2px56hC1SG1e6d400000004zg00000000g7dg + - 20241120T112821Z-17b7777dc45t6dp8hC1CO1w1x40000000wag00000000024w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3196,23 +3259,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:49.6554876Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:49.6554876Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:29 GMT + - Wed, 20 Nov 2024 11:28:20 GMT etag: - - '"fa00633f-0000-0200-0000-672b413e0000"' + - '"9703f002-0000-0200-0000-673dc6dd0000"' expires: - '-1' pragma: @@ -3228,7 +3291,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4F2AB17BD63644478DDD8A7BFD48B158 Ref B: MAA201060514025 Ref C: 2024-11-06T10:18:28Z' + - 'Ref A: 6C833E59CAD0479EA25D5C1BB832AD94 Ref B: CO6AA3150219045 Ref C: 2024-11-20T11:28:21Z' status: code: 200 message: OK @@ -3242,34 +3305,35 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=UTtX8tdDBmbYoHVd50x000A3EZ1Z0vam8kxn%2Fmgjbz8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.1545268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=KpIPLyX%2FSQyK36REBbfwGBydTb0KK2dC0TYSn4bsKYY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:32.1541292Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=f5D7tdlysyKzuGtCCAGX769%2FhAYSghCKohl74hNMQg0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.154693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=ro%2BZ49VkXdtnJowxkJkjbHObjTe%2Flbb%2BjHwDGUmzLlM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.1548647Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=efvg%2Fq0kOwIzF8JXowRh3l2iaRnLRqBA%2FFSduNu4VxU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.1550303Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=i8NdqwrHcEsOJWRw7t42BENhDz7RPAlFA%2F1eFSLHIU4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.1552097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=Pnb2spk6axX2KavgvJKC%2F%2BQmlNnS9frTTQiJoIXaCf4%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.1553769Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A32Z&se=2024-11-06T11%3A18%3A32Z&sr=c&sp=rl&sig=XJqyd%2FbfcAAiaQDLaMMk5RjJVdPLPU8heCdubWQI3rY%3D","expireDateTime":"2024-11-06T11:18:32.1555452Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:20.937Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=nrZaTZcqRAa%2BNTaQhNIgr1yslgH5HQKSL7fXUmjEQaA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.0140355Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=ZYeAezZ7KkQASim%2B10GshTnIFB7gnoK0ZwDIr7gg4oQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:22.0133004Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=J%2F5ovIzkeTunwB1kPmph6kri54aIampydRQHD6qThJM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.0143407Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=AL0JAKhkyK5gXfaf7WUFQnIjHBnCOtakEJlJWCBncUM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.0146241Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=PrIUzVTg9JhWDdPlr1QeEglwiMZe%2BrqWnS9NjgmAB6s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.0149121Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=HUm6VgItQ4u1Cj%2BziFtu1pHhKY5mksTQ%2BDMXoJvKojE%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.015188Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=NMGPOiBuyUpkaEUeqb8uG23Om6vYOpc28IkTsuENIP0%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.0153759Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A45Z&ske=2024-11-20T18%3A24%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A22Z&se=2024-11-20T12%3A28%3A22Z&sr=c&sp=rl&sig=NondoPFfh7SjvrVUn30WPqTYtTn1%2BYe8m4zB3ufvKjE%3D","expireDateTime":"2024-11-20T12:28:22.0156567Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:20.186Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6297' + - '6394' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:32 GMT + - Wed, 20 Nov 2024 11:28:22 GMT mise-correlation-id: - - b6fe705a-e2f9-47c8-92fc-ea620b9e044b + - 0a211879-53ee-4635-aa95-ac6b0e394cb4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101831Z-er1b6dc89fd5dtpvhC1SG1fz0g000000050000000000hmp0 + - 20241120T112821Z-17b7777dc45mjdp4hC1CO17dvc0000000330000000006dfq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3292,34 +3356,35 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=znQoBjHrmc1NKKFwbpZ4ISzDItCx71RPh2Z9KjFb51U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.01732Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=HS0doXNAh0uQuJKLWwYBsza0QBbQ%2B63TY2VcvIiRAg4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:33.0169915Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=g6smUOc%2BJhN8tO%2BuhcNVayW1ha489WHu9AJ%2BCmAL4Pg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.0174281Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=4XBemCbSgNZStfTLVkk4QP1PVtCx3zNyowPGKFsdDas%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.0175568Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=6s%2BvTrYeAuOebWpYlo3rzGfR5WhifDdEvQn2lENLVD8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.0176836Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=JtexwtbELP46getWBNkq24LlYvZ66ehlVnuke4E6%2FAg%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.017812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=52%2BIvn3JZ0l2m%2Fcl3NBVYp3rSSAOOU5htBUdk%2FT%2FPX8%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.0179379Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A33Z&se=2024-11-06T11%3A18%3A33Z&sr=c&sp=rl&sig=3vAwERw6uKOD2Wi1xHJbj4qm5lyr0C23f%2F8vjTHw6aI%3D","expireDateTime":"2024-11-06T11:18:33.0180686Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description2","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:33.007Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=Tp1CwXgDWRMhhQ%2FoC3jncfJsAkeT9z%2FnnOq6mqOaMAU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.2812752Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=DB%2FGduBzN0guqwwweZz3fxUASMVE08HxaAtkt4PkD%2BQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:22.2808937Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=H7fEpYywhUrYzh4IBDWb1Ss2tJxuKvXO90B9OPIpfjk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.2813774Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=OVElbaBt8VitLcIj%2F8w9NInf9BR3vJjQ8AsrfNZq0Us%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.2814779Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=P5sXBheChgWlJODZvEeemPbPn9KZTVzt%2FHA%2Bsi7xU10%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.2815685Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=du0M7hDTc9boBNsryuh17lg1oDbP8J5RgBmKkHMgXcg%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.281702Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=Td8VElZodeBEcJRLyb0Y8fskZ7twE0qwEkNnzupXH0Q%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.2817958Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A24%3A23Z&ske=2024-11-20T18%3A24%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A22Z&se=2024-11-20T12%3A28%3A22Z&sr=c&sp=rl&sig=sQMUUjSqhL1GrC%2Bhw%2FanoKWB258dxFTMIAwpVfLEaPE%3D","expireDateTime":"2024-11-20T12:28:22.2818828Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description2","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:22.27Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6293' + - '6397' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:33 GMT + - Wed, 20 Nov 2024 11:28:22 GMT mise-correlation-id: - - c1ae82c9-c405-4864-a910-c388dad10bad + - 77147396-a751-405d-a878-509ec63916e6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101832Z-er1b6dc89fd5dtpvhC1SG1fz0g000000050000000000hmq8 + - 20241120T112822Z-17b7777dc45mjdp4hC1CO17dvc0000000330000000006dgc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3337,34 +3402,35 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=4tw9L2PCN37yMrYXYNqcuazJzv3Tjbr9hFB1ttc1s9Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4111973Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=ZoOEqkQ7mYTYo4UZzVCXLcbJvVvcUc6kYo3VPmlIMwo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:33.4109126Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=EhL%2BSu%2F0ioovQcgYaDLDGwCyLUmQx7c8a6k4jz9Kl28%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4112875Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=UiKLuE1I6EGBaRRiKRljlB9Qq7crWkEwShr4LeztOEI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4113824Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=7uFvDIsj2idczDlfqlu62whcdb4EfW4QHwSGgjS5eGE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4114691Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=8BFJF5z3RuKF8BwdV%2B1QddO70xaTBT47QYOQIHQalXI%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4115552Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=2BnE6WDDzLPwYHV7peEGnY5pU6gHKx4qfF7W%2Fl0qzcY%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4116422Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A33Z&se=2024-11-06T11%3A18%3A33Z&sr=c&sp=rl&sig=uODv%2FF9KaiaOJV2sOzNVUP7AvOJRMjRVcWtdvxsSAbE%3D","expireDateTime":"2024-11-06T11:18:33.4117271Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description2","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:33.007Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=3AjErincp%2FQDwwpDG0UZ%2BKm%2B4GEb8FO5sddjP0S8TFE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.4576253Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=C6IE9n%2FdWRBQCSsjeQKBwDVaYIuHhsTMARQMEJP%2Bwj8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:22.4571658Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=4dbN3wMdYV%2Fj5h4Ut1EGuIwI4LPmioowzdk3ca3i5N8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.4578009Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=Ic0LWTyCvXnRTJwRwdPL9AIkSngiLI%2BmFncWbXYpyPI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.4579777Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=re59UGB47PWE%2Ft52tVBDhPjaEYRPNK46YWVjN4qnlCs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.4581482Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=lnbPYRmGReOTv%2FeIIj5ktEbe3%2FRYWfzU%2F5t0kTmhnOc%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.4583219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A22Z&sr=b&sp=r&sig=cfhDlKxXxDAeW0ZkUE7%2FBL4FmNhUbjeqp3tKYeLxciQ%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:22.4585055Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A22Z&se=2024-11-20T12%3A28%3A22Z&sr=c&sp=rl&sig=6KCFdt2qvU9q0ea1Iu%2BvCuQJKwOSiDnBxcaTxyFzrWc%3D","expireDateTime":"2024-11-20T12:28:22.4586777Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description2","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:22.27Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6284' + - '6406' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:33 GMT + - Wed, 20 Nov 2024 11:28:22 GMT mise-correlation-id: - - b4718572-1e07-4e34-8299-6263b6be3312 + - 0a73e14c-593e-4df7-b2ff-1451ec884c97 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101833Z-er1b6dc89fd5dtpvhC1SG1fz0g000000050000000000hmru + - 20241120T112822Z-17b7777dc45mjdp4hC1CO17dvc0000000330000000006dgz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3382,23 +3448,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:23:49.6554876Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:23:49.6554876Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:35 GMT + - Wed, 20 Nov 2024 11:28:22 GMT etag: - - '"fa00633f-0000-0200-0000-672b413e0000"' + - '"9703f002-0000-0200-0000-673dc6dd0000"' expires: - '-1' pragma: @@ -3414,7 +3480,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6B7CEDD4F7D04A5BB184BE5A8F89B541 Ref B: MAA201060516025 Ref C: 2024-11-06T10:18:35Z' + - 'Ref A: A06BB70A52244F46B66E9C3092C0120C Ref B: CO6AA3150220025 Ref C: 2024-11-20T11:28:22Z' status: code: 200 message: OK @@ -3428,34 +3494,35 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://47b49d00-368b-4415-9782-535263f22498.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"54e9a82f-07f1-41f5-ad19-bddf087681e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9eb6fa58-5e62-4e9e-8246-c8bfaa7d8c56":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"01d59dc3-0133-483b-a2bb-ab49da169271":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"testRunStatistics":{"Total":{"throughput":0.0}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=G0pVgjHLaYm9WzLjZDWEfzOvcnsZlMCIYb89O0DrAd4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8600637Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=JGOb8JAwVQS347auT9gKRSVP0kcsDfyyw0ZI9dgxkok%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:38.8597501Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=Jt%2B5%2BsrpquFOWgIeY%2Fe%2FRgdfQiMxxMvzOMTlk4JNtUc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8601882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=h3UqSvDpaLvdVpt6YaasT2HCiKzpP%2Fq64ge5t9CchU4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8603436Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=iBrQMVc2QaG7UNCan6DhqWBib9mSgYtcJkbpgSMFpKA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8604748Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=ZPVZKJclFvFLQQtG%2Bsb8MRuEi4O87difYw8GJ13o%2FPk%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8606008Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=R9LUoW9XUYhiYygo4uF%2Fsdz0CCUATHIcu7paGUjCjoY%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8607278Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A38Z&se=2024-11-06T11%3A18%3A38Z&sr=c&sp=rl&sig=GcgCGplPTR3aENLbjtqBJGiDcMw7zAp2yQzL9sMpRLM%3D","expireDateTime":"2024-11-06T11:18:38.8608612Z"}}},"testResult":"NOT_APPLICABLE","virtualUsers":0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description2","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","duration":158243,"createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:34.265Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/3b22f39d-154b-45f8-baad-421ff9b478bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A23Z&sr=b&sp=r&sig=%2FFC2QD0YxHSs5KMeiWPgVFU8TWGhB%2FMjc2r7rxfQqIw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:23.4052891Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/f0b38f03-1312-42c5-a748-df4ac7c086be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A23Z&sr=b&sp=r&sig=6gh2MOrmiJ%2Bn4uRDO%2F4N1R5CfRJ4%2BuQr%2FM4xApoCoZA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:28:23.4050161Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/cdff6cf2-c092-420e-af08-b90ae7c043f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A23Z&sr=b&sp=r&sig=sGZebnPvWSxvf56oc%2B76MaovQcghIfPnBefRtSQ9NoQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:23.4053793Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/7a231284-6d3c-4d01-96a6-903a15279f97?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A23Z&sr=b&sp=r&sig=s2a2LVZjJp%2FBI5zQp7ABZEkia873yB4tXTUwJEWTjfM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:23.40546Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/73d4e8b7-cca4-4c01-81a9-fca6f69ce29f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A23Z&sr=b&sp=r&sig=bnBB%2FEJqRwODZWa2g5UJcBP41imEE5mYS6%2BRwRnovtY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:28:23.4055454Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A23Z&sr=b&sp=r&sig=W27Ptc6ZP6dB8ZHpQlhQuwDHrw%2BCIYhzLQRgTS%2BBsKQ%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:23.4056232Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/276e8f67-1d53-4f20-be5e-6c7bdb2b3f32/0189d55c-2073-48af-9d52-b122f7a866ff_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A28%3A23Z&sr=b&sp=r&sig=1AzN%2Bd5q3Plr0TLX4IiHR%2FqIEucLYr5YX7VqjonZPUo%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:28:23.4057042Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gdxf0q9bzdph8xy9qr2mwxsx.z32.blob.storage.azure.net/0189d55c-2073-48af-9d52-b122f7a866ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A25%3A09Z&ske=2024-11-21T01%3A25%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-20T11%3A28%3A23Z&se=2024-11-20T12%3A28%3A23Z&sr=c&sp=rl&sig=liIpYegRiXCKjguw4GJGYo183OdjzsrgrR8JwXqlkUs%3D","expireDateTime":"2024-11-20T12:28:23.4057846Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description2","status":"FAILED","startDateTime":"2024-11-20T11:25:17.024Z","endDateTime":"2024-11-20T11:27:56.142Z","executedDateTime":"2024-11-20T11:25:16Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2024-11-20T11:25:16.339Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:28:22.27Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '6503' + - '6406' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:18:38 GMT + - Wed, 20 Nov 2024 11:28:23 GMT mise-correlation-id: - - 33a87e09-9adb-4bbb-9edf-dd16851155c0 + - be88aeb9-9bf6-4c8b-84f1-ccf653e0ca36 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T101838Z-18557d4f7b8r8cpzhC1SGEvan8000000052g00000000sbsh + - 20241120T112823Z-17b7777dc45d8sqjhC1CO1mpgg0000000w9g000000003tvb x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_server_metric.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_server_metric.yaml index 2e9807ace32..2f39328cd52 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_server_metric.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_server_metric.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003?api-version=2023-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-11-07T05:51:37.0663977Z","key2":"2024-11-07T05:51:37.0663977Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:51:37.2538951Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:51:37.2538951Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-07T05:51:36.9257745Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-11-20T11:15:37.5406117Z","key2":"2024-11-20T11:15:37.5406117Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-20T11:15:37.6343604Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-20T11:15:37.6343604Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-20T11:15:37.3687340Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json date: - - Thu, 07 Nov 2024 05:51:59 GMT + - Wed, 20 Nov 2024 11:15:57 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 640FD38DA7894570977CFE15A6087C7F Ref B: MAA201060515021 Ref C: 2024-11-07T05:51:59Z' + - 'Ref A: D565C843294E449491EADD78961BBE45 Ref B: CO6AA3150220023 Ref C: 2024-11-20T11:15:57Z' status: code: 200 message: OK @@ -55,23 +55,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:03.0899594Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:03.0899594Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:00 GMT + - Wed, 20 Nov 2024 11:15:58 GMT etag: - - '"13018ba3-0000-0200-0000-672c555e0000"' + - '"960302ff-0000-0200-0000-673dc4ce0000"' expires: - '-1' pragma: @@ -87,7 +87,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A356A0B6D5714B0BA53A1E437B2E1AAA Ref B: MAA201060514029 Ref C: 2024-11-07T05:52:00Z' + - 'Ref A: 03B9C08962AA4EC4A2424EA85CB28C12 Ref B: CO6AA3150219035 Ref C: 2024-11-20T11:15:58Z' status: code: 200 message: OK @@ -101,30 +101,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier server-metric-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Thu, 07 Nov 2024 05:52:02 GMT + - Wed, 20 Nov 2024 11:15:58 GMT mise-correlation-id: - - 5aa69a36-3fe6-451c-8380-535e8abc425b + - 76551e8a-95b9-465a-a7d4-9fa14830e56b strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241107T055201Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rq1 + - 20241120T111558Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007d19 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -139,12 +140,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"eaf47aae-1654-484a-9cb0-718b2ee45a36": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"d6c785c7-8248-4421-9e94-435ae0056616": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "8214df18-60aa-4939-b632-c3dbbf6b5638": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "0bb17db2-a3bd-4712-83d1-6aeb21d8aada": + "78"}, "8a9f49ca-da4b-490b-8678-389c3369e7b0": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "9a4cba3d-1cdb-4de3-b1c6-9604050ba7fd": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -153,36 +155,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"eaf47aae-1654-484a-9cb0-718b2ee45a36":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8214df18-60aa-4939-b632-c3dbbf6b5638":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"0bb17db2-a3bd-4712-83d1-6aeb21d8aada":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:52:02.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:52:02.84Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d6c785c7-8248-4421-9e94-435ae0056616":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8a9f49ca-da4b-490b-8678-389c3369e7b0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a4cba3d-1cdb-4de3-b1c6-9604050ba7fd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:58.841Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:15:58.841Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1051' + - '1155' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:02 GMT + - Wed, 20 Nov 2024 11:15:58 GMT location: - - https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-03-01-preview + - https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 25c4a6d1-3fb8-48ac-a0b9-1147e298f7ea + - d6e24aba-2b26-4fe6-92d5-b19f8005fc4e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055202Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rqh + - 20241120T111558Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007d1p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -200,9 +203,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -210,7 +213,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -218,13 +222,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:03 GMT + - Wed, 20 Nov 2024 11:15:58 GMT mise-correlation-id: - - b0f31af5-ec97-4fa2-98d7-509eaf4aecd8 + - 2f09af26-6adf-44f9-897c-e2378ca53823 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055202Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rqr + - 20241120T111558Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007d25 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -249,33 +253,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/f8b25c5c-4bb3-4dcc-806c-c5c97579bb59?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A04Z&sr=b&sp=r&sig=RLExnUrTZxxfFspAxVdF%2FMUexZVPlYRo7L7EXiTBOoY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:02:04.3159802Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/141424a5-4963-4c05-a82c-f1e6b9f3a2db?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A59Z&sr=b&sp=r&sig=adrFcssoHs6VG7QaT8rgJvpXhDB91mve62GWEwmdPHg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:25:59.3523281Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:04 GMT + - Wed, 20 Nov 2024 11:15:59 GMT location: - - https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - db52f8b4-c641-42fc-841d-8a1876b9fad0 + - 2fe2aeed-ba62-4e7b-a09e-c94fc98c6b6c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055203Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rqx + - 20241120T111558Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007d2c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -293,31 +298,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/f8b25c5c-4bb3-4dcc-806c-c5c97579bb59?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A04Z&sr=b&sp=r&sig=RLExnUrTZxxfFspAxVdF%2FMUexZVPlYRo7L7EXiTBOoY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:02:04.6447256Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/141424a5-4963-4c05-a82c-f1e6b9f3a2db?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A00Z&sr=b&sp=r&sig=9Bfzx57H8ZPK%2BcYdoHV%2Fp07AR67CnZmzLW2pWO04eMc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:26:00.0295387Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '575' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:04 GMT + - Wed, 20 Nov 2024 11:16:00 GMT mise-correlation-id: - - 26f3509a-4c36-4196-9a5e-97f747b17ca9 + - 614ae47a-1a93-47c6-894d-e34054175180 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055204Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rs4 + - 20241120T111559Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007d2r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -346,33 +352,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A05Z&sr=b&sp=r&sig=43vGIm6vdC34JmiWeey3gMt1c7%2F%2FVieciXlCwLIHmqI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:05.1539676Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/c2418b07-0ec6-48ba-add5-a9737b23b533?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A00Z&ske=2024-11-20T18%3A16%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A00Z&sr=b&sp=r&sig=1LW4LlIucwmNSOAPT0MDF8drethh9iagipyaHaIKceQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:00.3682769Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '568' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:05 GMT + - Wed, 20 Nov 2024 11:16:00 GMT location: - - https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - edce2ae7-4019-4324-86e7-45a5a71bfd5d + - 948843a0-2393-42aa-8806-3fd86ab2e81f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055204Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rsq + - 20241120T111600Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007d3k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -390,31 +397,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A05Z&sr=b&sp=r&sig=QDzG1fcEMKYFEQsY5Ako9asc%2FXDQ0VAujzfwatkmkP4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:05.5536731Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/c2418b07-0ec6-48ba-add5-a9737b23b533?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A00Z&ske=2024-11-20T18%3A16%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A00Z&sr=b&sp=r&sig=1LW4LlIucwmNSOAPT0MDF8drethh9iagipyaHaIKceQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:00.5020871Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:05 GMT + - Wed, 20 Nov 2024 11:16:00 GMT mise-correlation-id: - - d65086e4-3fe8-4331-8bde-7f8cb0cc99d7 + - 54aa695d-2f74-4442-a75d-844d2dd1be69 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055205Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rtg + - 20241120T111600Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007d3w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -432,31 +440,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A10Z&sr=b&sp=r&sig=5VCAPBetXYzwxjdozjemZlDbR3TJkQjU52%2F0ZHFi2dE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:10.8522517Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/c2418b07-0ec6-48ba-add5-a9737b23b533?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A00Z&ske=2024-11-20T18%3A16%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A05Z&sr=b&sp=r&sig=lE5cJLqGsiByHNwKq73FF%2Fz4ls%2FLwAnliQ21Q4M7dbc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:05.5972992Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:10 GMT + - Wed, 20 Nov 2024 11:16:05 GMT mise-correlation-id: - - eb1dbf66-8731-4ccd-89bb-661becd50dd3 + - 72246a6e-3a05-4f9b-b1d7-d96d9b59a1b9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055210Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rx1 + - 20241120T111605Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007da8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -474,31 +483,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A16Z&sr=b&sp=r&sig=qS%2F1e0k18ZWwRb2loFmGemv9lCKgx9WJpvZXnz1t1Yc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:16.1499181Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/c2418b07-0ec6-48ba-add5-a9737b23b533?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A00Z&ske=2024-11-20T18%3A16%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A10Z&sr=b&sp=r&sig=10JZj51b7pVsIfhdsnePQtVh1y75it05JfP1c51S7jg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:10.6983499Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:16 GMT + - Wed, 20 Nov 2024 11:16:10 GMT mise-correlation-id: - - 24b09679-77b7-4c1b-84db-80cc858b073c + - 3b704507-5634-4bb6-9258-9aa2e8f7e1af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055215Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003s1g + - 20241120T111610Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007dge x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -516,31 +526,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A21Z&ske=2024-11-07T12%3A52%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A22Z&sr=b&sp=r&sig=bSOx%2FL4TKarjYWtrp5qpUlLg7ogrRbh6DcPM3Y4YQP4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:22.0899213Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/c2418b07-0ec6-48ba-add5-a9737b23b533?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A00Z&ske=2024-11-20T18%3A16%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A15Z&sr=b&sp=r&sig=Pa%2BDmZXf09w%2B8ESqnnmBHXut%2FMaveNaXbjvLYwbOFjo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:15.8068518Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:22 GMT + - Wed, 20 Nov 2024 11:16:15 GMT mise-correlation-id: - - e7fdf8a3-9288-4d16-bae6-6656d95f8a5c + - 4ed00ca6-c8e3-4141-ba0b-548bd4da7488 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055221Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003s5m + - 20241120T111615Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007drm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -558,31 +569,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A27Z&sr=b&sp=r&sig=B9mxjtGvwxlXxnjq%2BbR3GQSfMcskQHfznUwQjsPSRPM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:27.3876642Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/c2418b07-0ec6-48ba-add5-a9737b23b533?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A20Z&sr=b&sp=r&sig=dt795a9c%2FsjgS%2FuieAhuh1fd4FbwBI47Z%2B1BC88X0L8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:20.9295319Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:27 GMT + - Wed, 20 Nov 2024 11:16:20 GMT mise-correlation-id: - - b150e198-5c8f-4484-9192-b714a99bd232 + - 56e8cff9-f65f-4080-bb3f-e1b9c5a53a90 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055227Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003saz + - 20241120T111620Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007dz4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -692,33 +704,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A27Z&ske=2024-11-07T21%3A52%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A27Z&sr=b&sp=r&sig=BZ5PyCwRS2mTnyOwvQ9YL5oassukKZpq%2Fc%2FuVDqOn40%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:27.9567102Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/4e7261a1-ec77-4710-b67c-c0abdbef0df4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A21Z&ske=2024-11-20T18%3A16%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A21Z&sr=b&sp=r&sig=4qxVlck0OJrXL%2BiaHSQeNXgVrwTQBIVKwqCxm4x29WQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:21.7395911Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:28 GMT + - Wed, 20 Nov 2024 11:16:21 GMT location: - - https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 6838d587-91b3-48bf-98c4-e242c3110e49 + - 0c120f8a-58bf-41fa-94b0-6bffd8ef45f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055227Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003sb7 + - 20241120T111620Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007dzh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -736,31 +749,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A28Z&ske=2024-11-07T12%3A52%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A28Z&sr=b&sp=r&sig=AeK061SKrjbYi%2FowRQTsNE0MZIwFe03qMPReuuczWK8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:28.8418716Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/4e7261a1-ec77-4710-b67c-c0abdbef0df4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A22Z&sr=b&sp=r&sig=A%2BFx3T9S8j8wRxYw7bWp%2FoBIa5pH85MHBdJrMPyg4bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:22.6316732Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:28 GMT + - Wed, 20 Nov 2024 11:16:22 GMT mise-correlation-id: - - aae1a3f8-8dad-4201-870b-61f3cd46fd4d + - 72a22e16-d363-4098-b11a-e7d816e1346b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055228Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003sbp + - 20241120T111621Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007e0m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -778,17 +792,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A34Z&sr=b&sp=r&sig=gF6vao3WAVS6Q6pUMqqF0pBAbgA0KcbRP5kNBc5TqfA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:34.1346132Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/4e7261a1-ec77-4710-b67c-c0abdbef0df4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A21Z&ske=2024-11-20T18%3A16%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A27Z&sr=b&sp=r&sig=bI7omfhtnsLZWvtGHtZUnx1l8JNFTYmoMrdDm3B02q4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:27.7421359Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -796,55 +811,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:34 GMT - mise-correlation-id: - - 072513e1-3ceb-428d-b569-a8bddd11e9c6 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241107T055233Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003sgg - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A39Z&sr=b&sp=r&sig=DzsMw99jLICOJ20rNfOW3s4HUQ6PmJMM8jY4dFW%2FgjY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:39.4523802Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview - connection: - - keep-alive - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Nov 2024 05:52:39 GMT + - Wed, 20 Nov 2024 11:16:27 GMT mise-correlation-id: - - d1e93356-9d9d-4f11-b330-61f3f3c30b2a + - 9143bbc9-8b03-4af6-9fd0-9e5004b469ef strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055239Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003sp3 + - 20241120T111627Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007e9e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -862,31 +835,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A28Z&ske=2024-11-07T12%3A52%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A44Z&sr=b&sp=r&sig=0Pqw%2BH3I7n94QGdDpnxyY1JCH6lpjg64c4pYs%2Frhv68%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:44.7382522Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/4e7261a1-ec77-4710-b67c-c0abdbef0df4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A21Z&ske=2024-11-20T18%3A16%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A32Z&sr=b&sp=r&sig=dYPnrqQhzNHN2dFwqyR00B5Sd4h7QQ2mBdi3fLvVkMQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:32.8422455Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:44 GMT + - Wed, 20 Nov 2024 11:16:32 GMT mise-correlation-id: - - b248023f-00d3-4bf6-b1dd-c4053941cca9 + - ec8ac477-714e-47b0-88a4-6b220c4a0c7e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055244Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003ssx + - 20241120T111632Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007ehh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -904,31 +878,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A27Z&ske=2024-11-07T21%3A52%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A50Z&sr=b&sp=r&sig=MfJyMQqKH3HhGSH5njN%2BhynISc7exsYJSEMCjiuYSd4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:50.0310173Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/4e7261a1-ec77-4710-b67c-c0abdbef0df4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A00Z&ske=2024-11-20T18%3A16%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A37Z&sr=b&sp=r&sig=tc%2FWUthB%2BezMkxF%2F3uNZ%2BRerSazP%2FTEuXNUBznLFgeM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:37.9472209Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '566' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:50 GMT + - Wed, 20 Nov 2024 11:16:37 GMT mise-correlation-id: - - 9a8cddbb-a782-46f8-8610-5a245f15633c + - cd97b51f-b5cf-4ad6-a182-c38bbf30f811 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055249Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003sx2 + - 20241120T111637Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007etg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -946,17 +921,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A55Z&sr=b&sp=r&sig=IOvvApN2Mf4%2Fu%2FZplWYwprXuxHcObXcpiIYWoQFCqRY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:55.3148775Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/4e7261a1-ec77-4710-b67c-c0abdbef0df4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A00Z&ske=2024-11-20T18%3A16%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A43Z&sr=b&sp=r&sig=8htK38%2FdNT%2BPbANNCQqeeXBbgQq8Eec88xh9NLiZjgQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:43.0589898Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -964,13 +940,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:52:55 GMT + - Wed, 20 Nov 2024 11:16:43 GMT mise-correlation-id: - - eb108d70-4034-4a43-a14b-cd070ad014a5 + - 0ec5b074-abac-41ad-84b8-91587343ddab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055255Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003t2y + - 20241120T111642Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007f1a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -988,17 +964,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A00Z&sr=b&sp=r&sig=vKLREnMIWBbT88nX7Wwt3AALCmKEWmrgax%2F1296oZIs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:00.6017601Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/4e7261a1-ec77-4710-b67c-c0abdbef0df4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A21Z&ske=2024-11-20T18%3A16%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A48Z&sr=b&sp=r&sig=Q3eYEH%2B9IVncGIiwNAolv4hy2kq9BuHlWKF9iM6IYH4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:48.1673328Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1006,13 +983,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:00 GMT + - Wed, 20 Nov 2024 11:16:48 GMT mise-correlation-id: - - f5267d8d-3013-4325-8248-e8b28d48108d + - d01ca546-d928-42d6-9cec-4c0087f61201 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055300Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003t77 + - 20241120T111648Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007f9v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1030,32 +1007,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"eaf47aae-1654-484a-9cb0-718b2ee45a36":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8214df18-60aa-4939-b632-c3dbbf6b5638":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"0bb17db2-a3bd-4712-83d1-6aeb21d8aada":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A00Z&sr=b&sp=r&sig=eqdX%2F46fm8TlWssweSQb7ACslkdIhcVqNYvFe0JjON4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:53:00.8930958Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/f8b25c5c-4bb3-4dcc-806c-c5c97579bb59?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A00Z&sr=b&sp=r&sig=QU221SaV6apDfvjllyxW1J9y5YMfhYuxu63qskEX%2FHs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:53:00.8935621Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A00Z&sr=b&sp=r&sig=yPWKYGpqgQb%2BRwHLoRPDe388GcZMxVaj4wQCik12CY0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:53:00.8937392Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:52:02.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:52:55.576Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d6c785c7-8248-4421-9e94-435ae0056616":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8a9f49ca-da4b-490b-8678-389c3369e7b0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a4cba3d-1cdb-4de3-b1c6-9604050ba7fd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/4e7261a1-ec77-4710-b67c-c0abdbef0df4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A48Z&sr=b&sp=r&sig=DmvZUFXYakml9CW2AYhkkWwihgsUmElJ5L9LDmX3fFk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:48.27286Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/141424a5-4963-4c05-a82c-f1e6b9f3a2db?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A48Z&sr=b&sp=r&sig=I2sSaikOT533zOVe6Abg0pd%2B9FPGOA3Bk7glphooKTI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:48.2733828Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/c2418b07-0ec6-48ba-add5-a9737b23b533?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A48Z&sr=b&sp=r&sig=HKB59BYZdCUhfjxeTAI35OouBtSMA73BRjNe6oWIads%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:48.2736538Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:58.841Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:45.747Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2772' + - '2869' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:00 GMT + - Wed, 20 Nov 2024 11:16:48 GMT mise-correlation-id: - - d7ef69a7-0b32-4cb8-af4b-294e43ef3d08 + - b8e51a62-cdad-405b-881e-16ecbfdb1880 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055300Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003t7e + - 20241120T111648Z-17b7777dc45gdttqhC1CO1kc5c0000000be0000000007fa2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1073,23 +1051,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:03.0899594Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:03.0899594Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:01 GMT + - Wed, 20 Nov 2024 11:16:48 GMT etag: - - '"13018ba3-0000-0200-0000-672c555e0000"' + - '"960302ff-0000-0200-0000-673dc4ce0000"' expires: - '-1' pragma: @@ -1105,7 +1083,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 40DE491718EA49E7BBBE8F8F423294D7 Ref B: MAA201060513051 Ref C: 2024-11-07T05:53:02Z' + - 'Ref A: A8FF4BC33C7645B780A4504E24A50728 Ref B: CO6AA3150218053 Ref C: 2024-11-20T11:16:48Z' status: code: 200 message: OK @@ -1119,32 +1097,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"eaf47aae-1654-484a-9cb0-718b2ee45a36":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8214df18-60aa-4939-b632-c3dbbf6b5638":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"0bb17db2-a3bd-4712-83d1-6aeb21d8aada":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A04Z&sr=b&sp=r&sig=kj%2B7jMtfctlZuTXf4%2B3buzyO%2BgnjYaPHJzDmvLYkfNk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:53:04.3109456Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/f8b25c5c-4bb3-4dcc-806c-c5c97579bb59?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A04Z&sr=b&sp=r&sig=zo7LkqmvJqhgm8AoKvGDmf7z4fHjJzQcqOlHRzPXJPE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:53:04.3114888Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A04Z&sr=b&sp=r&sig=GaRJch4RmT9Q2o7gMMtuHm9jbVSvotCgX6jIeyXX%2FyU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:53:04.3116856Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:52:02.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:52:55.576Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"d6c785c7-8248-4421-9e94-435ae0056616":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8a9f49ca-da4b-490b-8678-389c3369e7b0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9a4cba3d-1cdb-4de3-b1c6-9604050ba7fd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/4e7261a1-ec77-4710-b67c-c0abdbef0df4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A49Z&sr=b&sp=r&sig=d8Hy3ArVf6gscriY3pyJtm8K30cGjYll1%2FoMuJlXJhU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:49.404448Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/141424a5-4963-4c05-a82c-f1e6b9f3a2db?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A49Z&sr=b&sp=r&sig=JQQklCDUt4e%2Bxa%2Fxl3wTmsFKwSpIfVGkj%2FZZEeoTSbY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:49.4048806Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://z2c2vwmfer8ekzc51qjyeiu5.z48.blob.storage.azure.net/02ac98d4-969d-4586-8a34-773e3ed17367/c2418b07-0ec6-48ba-add5-a9737b23b533?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A49Z&sr=b&sp=r&sig=WsmpP%2Bs8Ts9vkLJ8c0XvaSnMX%2BDWNfLSz8Mp5eq%2F1F4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:49.405075Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:58.841Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:45.747Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2786' + - '2893' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:04 GMT + - Wed, 20 Nov 2024 11:16:49 GMT mise-correlation-id: - - d49cd205-90b7-4826-a3b3-ca25ef886a5a + - 25da08d8-fc3b-4dd0-bd0c-e811da71a52d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055303Z-16bf8d9b4c7zbtm7hC1BOMhr0s00000007b000000001kfs2 + - 20241120T111649Z-1789fbbbd78flwl6hC1PDXd5ac0000000gm000000000h8df x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1162,23 +1141,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:03.0899594Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:03.0899594Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:05 GMT + - Wed, 20 Nov 2024 11:16:49 GMT etag: - - '"13018ba3-0000-0200-0000-672c555e0000"' + - '"960302ff-0000-0200-0000-673dc4ce0000"' expires: - '-1' pragma: @@ -1194,14 +1173,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DBC984E0FE5E4356A6C746EC7E4D1EE9 Ref B: MAA201060514045 Ref C: 2024-11-07T05:53:05Z' + - 'Ref A: ED19BBCB016F4088B86358B4FE9C7D26 Ref B: CO6AA3150218025 Ref C: 2024-11-20T11:16:49Z' status: code: 200 message: OK - request: - body: '{"testId": "server-metric-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-iz7t55dw526dop6aa/providers/Microsoft.Storage/storageAccounts/clitestloadkiuze64ye": - {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-iz7t55dw526dop6aa/providers/Microsoft.Storage/storageAccounts/clitestloadkiuze64ye", - "resourceName": "clitestloadkiuze64ye", "resourceType": "Microsoft.Storage/storageAccounts", + body: '{"testId": "server-metric-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-qpumcehaz3s5tzcsr/providers/Microsoft.Storage/storageAccounts/clitestloadrpdkp672u": + {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-qpumcehaz3s5tzcsr/providers/Microsoft.Storage/storageAccounts/clitestloadrpdkp672u", + "resourceName": "clitestloadrpdkp672u", "resourceType": "Microsoft.Storage/storageAccounts", "kind": "Storage"}}}' headers: Accept: @@ -1213,33 +1192,34 @@ interactions: Content-Length: - '513' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"server-metric-test-case","createdDateTime":"2024-11-07T05:53:07.548Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:07.548Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"server-metric-test-case","createdDateTime":"2024-11-20T11:16:50.366Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:50.366Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '735' + - '741' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:07 GMT + - Wed, 20 Nov 2024 11:16:50 GMT location: - - https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-03-01-preview + - https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-03-01-preview mise-correlation-id: - - 5ff128be-361e-469e-9539-bd6cbb950fcc + - 394b4af1-8e95-4fcc-b3cd-55e004a61348 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055307Z-16bf8d9b4c7txwfdhC1BOM9ahs00000007k000000001h3v5 + - 20241120T111650Z-r16f5dbf676d94mhhC1YVRs0f000000000v0000000002nwz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1257,23 +1237,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:03.0899594Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:03.0899594Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:09 GMT + - Wed, 20 Nov 2024 11:16:50 GMT etag: - - '"13018ba3-0000-0200-0000-672c555e0000"' + - '"960302ff-0000-0200-0000-673dc4ce0000"' expires: - '-1' pragma: @@ -1289,7 +1269,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FAD30A0A854F4AFEA1607C98EDD6C25F Ref B: MAA201060513035 Ref C: 2024-11-07T05:53:09Z' + - 'Ref A: 610E27CE03514620965F02D3FBCB21CB Ref B: CO6AA3150220021 Ref C: 2024-11-20T11:16:50Z' status: code: 200 message: OK @@ -1303,31 +1283,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"server-metric-test-case","createdDateTime":"2024-11-07T05:53:07.548Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:07.548Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"server-metric-test-case","createdDateTime":"2024-11-20T11:16:50.366Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:50.366Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '735' + - '741' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:11 GMT + - Wed, 20 Nov 2024 11:16:51 GMT mise-correlation-id: - - 04bae537-da2b-42ab-80bc-8db541bc4ba2 + - 3008fe8e-9501-4232-8546-9c17858a51a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055311Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007fg00000001h9t2 + - 20241120T111651Z-r16f5dbf676x7kfghC1YVRdw9g00000003g0000000006445 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1345,23 +1326,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:03.0899594Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:03.0899594Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:14 GMT + - Wed, 20 Nov 2024 11:16:51 GMT etag: - - '"13018ba3-0000-0200-0000-672c555e0000"' + - '"960302ff-0000-0200-0000-673dc4ce0000"' expires: - '-1' pragma: @@ -1377,14 +1358,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3F884E7D63CE4B4DAEE6C4246F5AE3BA Ref B: MAA201060516033 Ref C: 2024-11-07T05:53:12Z' + - 'Ref A: B7C09569957D412BA24CDDF7760FF9F0 Ref B: CO6AA3150219049 Ref C: 2024-11-20T11:16:51Z' status: code: 200 message: OK - request: - body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-iz7t55dw526dop6aa/providers/Microsoft.Storage/storageAccounts/clitestloadkiuze64ye/providers/microsoft.insights/metricdefinitions/Availability": + body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-qpumcehaz3s5tzcsr/providers/Microsoft.Storage/storageAccounts/clitestloadrpdkp672u/providers/microsoft.insights/metricdefinitions/Availability": {"name": " Availability", "metricNamespace": "microsoft.storage/storageaccounts", - "aggregation": "Average", "resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-iz7t55dw526dop6aa/providers/Microsoft.Storage/storageAccounts/clitestloadkiuze64ye", + "aggregation": "Average", "resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-qpumcehaz3s5tzcsr/providers/Microsoft.Storage/storageAccounts/clitestloadrpdkp672u", "resourceType": "Microsoft.Storage/storageAccounts"}}}' headers: Accept: @@ -1396,35 +1377,36 @@ interactions: Content-Length: - '618' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview response: body: string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/Availability":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/ Availability","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":" - Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-07T05:53:07.573Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:15.634Z","lastModifiedBy":"hbisht@microsoft.com"}' + Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-20T11:16:50.389Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:52.264Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '3235' + - '3241' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:15 GMT + - Wed, 20 Nov 2024 11:16:52 GMT mise-correlation-id: - - 7cff2c36-8bc5-45f7-bf7b-043039faac48 + - 15c06c2b-829a-431b-9564-432090bef6a8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055315Z-16bf8d9b4c79zqhnhC1BOMb6w400000007p0000000015mnh + - 20241120T111652Z-r16f5dbf676dn9f8hC1YVRrkvw00000003wg000000002b1m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1442,23 +1424,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:03.0899594Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:03.0899594Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:17 GMT + - Wed, 20 Nov 2024 11:16:52 GMT etag: - - '"13018ba3-0000-0200-0000-672c555e0000"' + - '"960302ff-0000-0200-0000-673dc4ce0000"' expires: - '-1' pragma: @@ -1474,7 +1456,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 03CC335763CD4E88B6305B8D94820300 Ref B: MAA201060513029 Ref C: 2024-11-07T05:53:16Z' + - 'Ref A: 263DB1599D5842A19DE1A4816CE0E87F Ref B: CO6AA3150220045 Ref C: 2024-11-20T11:16:52Z' status: code: 200 message: OK @@ -1488,33 +1470,34 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview response: body: string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/Availability":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/ Availability","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":" - Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-07T05:53:07.573Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:15.634Z","lastModifiedBy":"hbisht@microsoft.com"}' + Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-20T11:16:50.389Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:52.264Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '3235' + - '3241' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:19 GMT + - Wed, 20 Nov 2024 11:16:53 GMT mise-correlation-id: - - b000e9f8-fec8-4ccd-a19a-6fcb236f8fca + - 32589d3f-ab47-42af-a864-f7e39eeac3e7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055318Z-16bf8d9b4c79v4bbhC1BOMgnfn00000007d000000001gnnw + - 20241120T111653Z-1846dc7bb4dbqgk9hC1YVRwvtw00000003s00000000027aq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1532,23 +1515,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:03.0899594Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:03.0899594Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:20 GMT + - Wed, 20 Nov 2024 11:16:53 GMT etag: - - '"13018ba3-0000-0200-0000-672c555e0000"' + - '"960302ff-0000-0200-0000-673dc4ce0000"' expires: - '-1' pragma: @@ -1564,12 +1547,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: ECF74A31298A418C9A067423AE00EA65 Ref B: MAA201060515039 Ref C: 2024-11-07T05:53:20Z' + - 'Ref A: 71C937C7BCED419E9A7D5405C31580BC Ref B: CO6AA3150218029 Ref C: 2024-11-20T11:16:53Z' status: code: 200 message: OK - request: - body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-iz7t55dw526dop6aa/providers/Microsoft.Storage/storageAccounts/clitestloadkiuze64ye/providers/microsoft.insights/metricdefinitions/Availability": + body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-qpumcehaz3s5tzcsr/providers/Microsoft.Storage/storageAccounts/clitestloadrpdkp672u/providers/microsoft.insights/metricdefinitions/Availability": null}}' headers: Accept: @@ -1581,33 +1564,34 @@ interactions: Content-Length: - '282' User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview response: body: - string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-07T05:53:07.573Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:22.729Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-20T11:16:50.389Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:54.009Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2489' + - '2495' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:22 GMT + - Wed, 20 Nov 2024 11:16:54 GMT mise-correlation-id: - - a17cb2a2-0658-4383-a832-d42226a971c8 + - 160e1a3b-15a7-4768-9670-ece70a612e80 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055322Z-16bf8d9b4c7r848jhC1BOMdr7n00000007p000000001bec7 + - 20241120T111653Z-1846dc7bb4d9ql4khC1YVRdrac00000003g00000000056ks x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1625,23 +1609,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:03.0899594Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:03.0899594Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:24 GMT + - Wed, 20 Nov 2024 11:16:54 GMT etag: - - '"13018ba3-0000-0200-0000-672c555e0000"' + - '"960302ff-0000-0200-0000-673dc4ce0000"' expires: - '-1' pragma: @@ -1655,9 +1639,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 01FFFDDAD7D84E09B2ED299FA2572F84 Ref B: MAA201060513009 Ref C: 2024-11-07T05:53:23Z' + - 'Ref A: 859C580861264566AD86D7A82D6D9CDF Ref B: CO6AA3150218029 Ref C: 2024-11-20T11:16:54Z' status: code: 200 message: OK @@ -1671,31 +1655,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://8c1bb45e-b23c-4fdb-85cc-3028ede2869b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview response: body: - string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-07T05:53:07.573Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:22.729Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2024-11-20T11:16:50.389Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:54.009Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2489' + - '2495' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Nov 2024 05:53:26 GMT + - Wed, 20 Nov 2024 11:16:54 GMT mise-correlation-id: - - df3e1082-b0b9-4f85-a4d2-b8129cbf983c + - e48498dd-8a43-49a3-9867-e0ac84da3401 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241107T055325Z-16bf8d9b4c7w4l4chC1BOMu1nn00000007gg00000001wx1z + - 20241120T111654Z-r16f5dbf676x7kfghC1YVRdw9g00000003m00000000032rs x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_show.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_show.yaml index 74fc9a57e19..42460c541b1 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_show.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_show.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:01:28.2816881Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:28.2816881Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:17:00.8560208Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:00.8560208Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:03 GMT + - Wed, 20 Nov 2024 11:17:32 GMT etag: - - '"fa006c15-0000-0200-0000-672b3e8f0000"' + - '"9603acff-0000-0200-0000-673dc5430000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D6717F6883B0420FB2679D4377F6E8D1 Ref B: MAA201060513027 Ref C: 2024-11-06T10:02:02Z' + - 'Ref A: 7AA6468A932E4500AF5E475A4CF05D58 Ref B: CO6AA3150218047 Ref C: 2024-11-20T11:17:32Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier show-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:02:05 GMT + - Wed, 20 Nov 2024 11:17:32 GMT mise-correlation-id: - - 6277f719-799e-4ad7-a368-36ef64928c32 + - 72eefc50-d82e-4c25-9a49-528030c2edc2 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100205Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pt5k + - 20241120T111732Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000cu3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"5fe2fa73-9c21-4ec9-98ef-31eeaa44df43": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"de9d91ba-660a-4030-af96-cea68fd7011b": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "6a765184-5ff7-4196-b081-34219ae29402": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "e0b2c724-de10-453e-bfdf-a77ed518029b": + "78"}, "75104e93-8808-40c4-b260-7adb98f6b737": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "608dc294-2dc8-425c-9ba3-251e68f0ccde": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5fe2fa73-9c21-4ec9-98ef-31eeaa44df43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"6a765184-5ff7-4196-b081-34219ae29402":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e0b2c724-de10-453e-bfdf-a77ed518029b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:06.128Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:06.128Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"de9d91ba-660a-4030-af96-cea68fd7011b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"75104e93-8808-40c4-b260-7adb98f6b737":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"608dc294-2dc8-425c-9ba3-251e68f0ccde":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:33.225Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:33.225Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1044' + - '1146' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:06 GMT + - Wed, 20 Nov 2024 11:17:33 GMT location: - - https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-03-01-preview + - https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-03-01-preview mise-correlation-id: - - aafa5995-710c-453c-841a-a38048f21cea + - dc786a41-c6bd-41ca-8884-c319231064e6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100205Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pt8f + - 20241120T111732Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000cu6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:06 GMT + - Wed, 20 Nov 2024 11:17:33 GMT mise-correlation-id: - - 5d35fe92-d8e3-430d-8db6-f2cc1f3a9b32 + - 2776db24-db7a-4cea-a05d-611103c2c40f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100206Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001ptas + - 20241120T111733Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000cud x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/8ac09fe5-476b-43aa-a029-6df1c2a489fe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A08Z&sr=b&sp=r&sig=cALpEb16GaEwfwsQZS%2BcSQ5tdvsmtBXfHWdSI2FZuaY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:12:08.6539454Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/73083ace-5a3f-4676-8d97-2c142807edcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A33Z&sr=b&sp=r&sig=%2BXIg9DV9bcP90H6JEek4dssmlmgnWFss%2BYYfqLZ8qo4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:27:33.7022326Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:08 GMT + - Wed, 20 Nov 2024 11:17:33 GMT location: - - https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 2dfaf521-2468-4add-a085-3b9ad1e620b0 + - f6784f13-1c70-43db-b714-3439b4cddee1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100206Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001ptbv + - 20241120T111733Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000cut x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/8ac09fe5-476b-43aa-a029-6df1c2a489fe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A09Z&sr=b&sp=r&sig=67vFuQFENgbqr3AbUx9WzffL09vmeZhVfR1cefAUZnE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:12:09.0093555Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/73083ace-5a3f-4676-8d97-2c142807edcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A33Z&sr=b&sp=r&sig=%2BXIg9DV9bcP90H6JEek4dssmlmgnWFss%2BYYfqLZ8qo4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:27:33.8320133Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '571' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:09 GMT + - Wed, 20 Nov 2024 11:17:33 GMT mise-correlation-id: - - 77c1644c-7500-4741-a2cf-53cb2a01ca52 + - e7bb06cc-5efc-4849-ba0a-6bc70de1a423 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100208Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001ptvd + - 20241120T111733Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000cv4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A11Z&ske=2024-11-07T02%3A02%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A11Z&sr=b&sp=r&sig=c%2FYMjZDzhep1JIy5mHHpSsJsIBjIpg48r4GAc4uBwbw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:11.0610378Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/f0282e25-b675-4d05-aea4-b6306ce47b9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A34Z&sr=b&sp=r&sig=f6S0lqZKiP6OdiHj7bwffCT8IZsclIquXeGL%2FO%2BAlzE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:34.8863483Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:11 GMT + - Wed, 20 Nov 2024 11:17:34 GMT location: - - https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 6190989e-2948-41c1-90d7-866ce244374b + - 0d5a6411-fd8f-4626-b854-099fb163f334 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100209Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001ptxa + - 20241120T111733Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000cvb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,17 +351,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A11Z&ske=2024-11-06T17%3A02%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A11Z&sr=b&sp=r&sig=YSyZmHG5gdVfyRfQkBeQlWz%2BFh2bXYPbXzRkYqK5FdE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:11.3803073Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/f0282e25-b675-4d05-aea4-b6306ce47b9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A34Z&ske=2024-11-20T18%3A17%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A35Z&sr=b&sp=r&sig=wfc77Trsb5H2XIdpZqf9MY6X%2BYJ08wcbXoGUD5MKpFI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:35.0168418Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -362,13 +370,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:11 GMT + - Wed, 20 Nov 2024 11:17:34 GMT mise-correlation-id: - - a70b62a2-6036-4cf8-9424-0c0f73c8d3e0 + - daade1e6-ccec-454a-9827-9f10ff64474e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100211Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pu97 + - 20241120T111734Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000cw7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A16Z&sr=b&sp=r&sig=dhTnG%2BnDx4IY37UNnRCzbTkUZEFXXt5nzB4vd%2B1j3Hs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:16.6833238Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/f0282e25-b675-4d05-aea4-b6306ce47b9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A34Z&ske=2024-11-20T18%3A17%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A40Z&sr=b&sp=r&sig=AMU%2BqfI6uLmOCgT0VueMw3YNRu%2F0AUOKV%2FT7FKVAmbE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:40.1290816Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:16 GMT + - Wed, 20 Nov 2024 11:17:40 GMT mise-correlation-id: - - 7eec849b-8aad-4770-87b2-2b7d2d178c0d + - 3efac9f2-a86b-464b-b533-61259e302f1b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100216Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001puyg + - 20241120T111739Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000czg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A21Z&sr=b&sp=r&sig=3ZGfZ3Nq9IkbJ%2FHme0Vj5yzwGoDvxCcQt2jgOtDqAH8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:21.99083Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/f0282e25-b675-4d05-aea4-b6306ce47b9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A45Z&sr=b&sp=r&sig=680aKF9w%2FM6nThtaX4mp5Z%2FGe%2FB5h6TarbYfMqc832Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:45.2366179Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:22 GMT + - Wed, 20 Nov 2024 11:17:45 GMT mise-correlation-id: - - 980ae266-5c0a-418d-bc64-18f6b688904c + - 18be2031-9af5-4fdc-b2e7-901317f2ef7e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100221Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pvqm + - 20241120T111745Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000d2s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A27Z&sr=b&sp=r&sig=XXhHEoGal79rT2X1vZaUeP7kd6wIMTreOWt4aJqsWSU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:27.2768569Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/f0282e25-b675-4d05-aea4-b6306ce47b9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A50Z&sr=b&sp=r&sig=WY7GcIGt%2BhLHHvOaOYktjywZe3za4ZQxC3v06C9LQ%2Fg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:50.3421134Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:27 GMT + - Wed, 20 Nov 2024 11:17:50 GMT mise-correlation-id: - - 1839714a-2a88-42a4-986d-a38f42b2e555 + - aaa2f00a-ce2a-4a4a-8c52-85bd763be32f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100227Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pwaa + - 20241120T111750Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000d6c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,31 +523,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A32Z&sr=b&sp=r&sig=WS%2Bc1De3T2qQA2449T%2Bt%2BuE5c8eWEz9f8wHeqNJFlsY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:32.5890655Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/f0282e25-b675-4d05-aea4-b6306ce47b9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A55Z&sr=b&sp=r&sig=jQ6car09Lk%2Bm9UOak4aJwBRNExcAE7oa10sbVbuqv%2FA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:55.4652173Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '574' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:32 GMT + - Wed, 20 Nov 2024 11:17:55 GMT mise-correlation-id: - - 40ffffcd-365c-4e92-84a3-4b59d71f00e3 + - e8d8e74a-b6f5-4c5d-915e-473e1670dfa1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100232Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001px0s + - 20241120T111755Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000d9s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -554,31 +566,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A37Z&sr=b&sp=r&sig=%2BIpENls0AcBX3AxkuozUewedn%2B2VF0Y3l2Sx2rgPf2I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:37.9020718Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/f0282e25-b675-4d05-aea4-b6306ce47b9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A00Z&sr=b&sp=r&sig=sF3J4iJGMBw%2FtVG3NYpRRSMfFRWj%2B7oV927SnvCJXBU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:00.579001Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:37 GMT + - Wed, 20 Nov 2024 11:18:00 GMT mise-correlation-id: - - 4d2907a9-87bc-480b-b85c-4da6edf8bbbf + - a9532077-88db-4acd-bc71-6fdec62aa13a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100237Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pxz7 + - 20241120T111800Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000ddx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -688,33 +701,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A38Z&ske=2024-11-07T02%3A02%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A38Z&sr=b&sp=r&sig=FhAKWc8gSsew8ZLKQs1A5V03hItpZv9itEH99My%2FaXY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:38.3506225Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A00Z&sr=b&sp=r&sig=LsoIecLYCBHAR2b6j3jbtla0RKsl56IUJANINpEsTaM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:00.8435521Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:38 GMT + - Wed, 20 Nov 2024 11:18:00 GMT location: - - https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 1c32a212-2f02-46d1-9099-392ffca71763 + - 14cacb3b-42e6-46cb-b08a-21267ee091c1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100238Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pxzx + - 20241120T111800Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000de0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +746,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A38Z&sr=b&sp=r&sig=EaWtGhs1EILpoDXeHBlv7f7EK4BI6f%2B0QBQW%2FbBLlf4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:38.6735321Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A00Z&sr=b&sp=r&sig=LsoIecLYCBHAR2b6j3jbtla0RKsl56IUJANINpEsTaM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:00.9521626Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:38 GMT + - Wed, 20 Nov 2024 11:18:00 GMT mise-correlation-id: - - 89905a87-4ebe-46af-83ec-d2b20446f4ee + - 45f47b1b-9b58-40dd-99f8-5362d2242237 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100238Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001py1b + - 20241120T111800Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000dec x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,17 +789,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A44Z&ske=2024-11-06T17%3A02%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A44Z&sr=b&sp=r&sig=euCxkr3HwNRXRfE3tRIWFUV8wQBlI1Qy47GE2m3jh18%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:44.0596492Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A06Z&sr=b&sp=r&sig=7mmI8SJYcTYs6e2GBTIazF27xUNJ09m64Nbb0glrn8Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:06.0676842Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -792,13 +808,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:44 GMT + - Wed, 20 Nov 2024 11:18:06 GMT mise-correlation-id: - - 7961929b-c906-4be0-b80e-3c66b4c90d22 + - 8a4b8775-55cc-4da4-bd56-37226107f42e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100243Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pyra + - 20241120T111805Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000dm4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A38Z&ske=2024-11-07T02%3A02%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A49Z&sr=b&sp=r&sig=aPW0VL48J%2F8QWa3XL7IX403zvjLzOAB65eNAuZgvgYI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:49.3721773Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A11Z&ske=2024-11-20T18%3A18%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A11Z&sr=b&sp=r&sig=sP6KkyRkkpHLp5EHnKh%2Biabn%2FYt5Yez5gb797DRhDmY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:11.2198338Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:49 GMT + - Wed, 20 Nov 2024 11:18:11 GMT mise-correlation-id: - - 7dcb71b3-8c93-4a29-a129-a0ae8ec628c2 + - 1c114dbe-04df-4121-96a8-69ddc649e7c3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100249Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pzfd + - 20241120T111811Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000drm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A55Z&sr=b&sp=r&sig=cgtCAP%2FSG2B95gFavSTKuEvdl5ZiZSHtDsjATSkh4tY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:55.1098762Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A16Z&ske=2024-11-20T18%3A18%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A16Z&sr=b&sp=r&sig=vZmpgRvLAHAGT1abBSJ6bwGm0Zmfaf0xCB2ZHBKBF4g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:16.3667241Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:55 GMT + - Wed, 20 Nov 2024 11:18:16 GMT mise-correlation-id: - - 7810f900-8f9c-470c-b84a-c79b329d3f50 + - e042691e-f3e5-4789-b845-2ddeff2d5c77 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100254Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001q082 + - 20241120T111816Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000dw1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A11Z&ske=2024-11-07T02%3A02%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A00Z&sr=b&sp=r&sig=eSEYCRrp4BHwuqdVLol7aRqMjK%2BLmjCdcsgnyP1FLcE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:00.4285876Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A21Z&sr=b&sp=r&sig=vtBYozhGeQeg%2FHQDdp7gAHjcdiBodR2sSUioxAXe19g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:21.485917Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '558' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:00 GMT + - Wed, 20 Nov 2024 11:18:21 GMT mise-correlation-id: - - d52eeec9-557f-42c2-8ad0-4073eee0aa6c + - 86f1ff54-8c31-4337-97d4-198e28b4af31 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100300Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001q0xp + - 20241120T111821Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000e1n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +961,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A44Z&ske=2024-11-06T17%3A02%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A05Z&sr=b&sp=r&sig=ystlRQLetXz4Jb%2FDNmWwy6dnK9z2gYFGxpBmxRzbZbo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:05.7094206Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A26Z&sr=b&sp=r&sig=blz5lPu%2F1nO29l83lMx2YGwAHa%2FBrmikEy2LAANR8Y4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:26.6053982Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:18:26 GMT + mise-correlation-id: + - 757f5e93-e19c-4e1d-bcac-1d28f41ceeb6 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111826Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000e5g + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A31Z&sr=b&sp=r&sig=b9JaYwK3Qb0PfhyBsOXSB1ldakaZIz4svTpR8rezwUI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:31.7157313Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:05 GMT + - Wed, 20 Nov 2024 11:18:31 GMT mise-correlation-id: - - a11bacd2-6f76-4b09-b03f-b7c591c62bb6 + - 117f16d7-ad40-44fe-84c0-8952396dbdc6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100305Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001q1qh + - 20241120T111831Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000e9z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,32 +1047,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5fe2fa73-9c21-4ec9-98ef-31eeaa44df43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"6a765184-5ff7-4196-b081-34219ae29402":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e0b2c724-de10-453e-bfdf-a77ed518029b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A05Z&ske=2024-11-07T00%3A03%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A05Z&sr=b&sp=r&sig=glrTAVf9m5b6dbSJXERtMRNr1JWerAQw%2Bs2lhw8EbCE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:05.997969Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/8ac09fe5-476b-43aa-a029-6df1c2a489fe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A05Z&ske=2024-11-07T00%3A03%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A05Z&sr=b&sp=r&sig=%2ByyrvYpOQjC8P5asSFRF1s0txuPXUsh1AKMsOtpyNvk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:05.9982709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A05Z&ske=2024-11-07T00%3A03%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A05Z&sr=b&sp=r&sig=zVqlfnFtoI6CwMfrleI8WSwaOZGPElkJcf8BJjEvAac%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:05.9983621Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:06.128Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:05.469Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"de9d91ba-660a-4030-af96-cea68fd7011b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"75104e93-8808-40c4-b260-7adb98f6b737":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"608dc294-2dc8-425c-9ba3-251e68f0ccde":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A31Z&sr=b&sp=r&sig=gMkz4xtqlbuUjvRfoHizsKmN%2FrH2nPk7I9wYCv9AhoY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:31.8236487Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/73083ace-5a3f-4676-8d97-2c142807edcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A31Z&sr=b&sp=r&sig=TZiD22qyp3jGDWOOWAP%2Fe8Md46PhVOAsq9YS1oR%2BFQE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:31.8241786Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/f0282e25-b675-4d05-aea4-b6306ce47b9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A31Z&sr=b&sp=r&sig=DkLwqBevxgT6Y5DHdkwrwcH%2FXpbCOwPsDHelRo9YUMg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:31.824388Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:33.225Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:18:28.814Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2761' + - '2867' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:06 GMT + - Wed, 20 Nov 2024 11:18:31 GMT mise-correlation-id: - - fd7856a7-d71a-4c5d-a840-c7984c4c8034 + - bca9600a-e994-4f6a-96a2-682091e87849 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100305Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001q1s3 + - 20241120T111831Z-1846dc7bb4d76mcbhC1YVR7hvs00000003q0000000000ea3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1027,23 +1091,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:01:28.2816881Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:28.2816881Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:17:00.8560208Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:00.8560208Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:07 GMT + - Wed, 20 Nov 2024 11:18:31 GMT etag: - - '"fa006c15-0000-0200-0000-672b3e8f0000"' + - '"9603acff-0000-0200-0000-673dc5430000"' expires: - '-1' pragma: @@ -1059,7 +1123,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8E1187E4B6824AD68C78D21DAC0AD9B8 Ref B: MAA201060514037 Ref C: 2024-11-06T10:03:08Z' + - 'Ref A: 92830D57B20148BE80EFA630F64CBE8D Ref B: CO6AA3150219049 Ref C: 2024-11-20T11:18:32Z' status: code: 200 message: OK @@ -1073,32 +1137,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"5fe2fa73-9c21-4ec9-98ef-31eeaa44df43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"6a765184-5ff7-4196-b081-34219ae29402":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e0b2c724-de10-453e-bfdf-a77ed518029b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A10Z&sr=b&sp=r&sig=JmdJkD0lx5PjQrgyOIFq71C1g2qREWcuHRJXpS4v4d0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:10.8438771Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/8ac09fe5-476b-43aa-a029-6df1c2a489fe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A10Z&sr=b&sp=r&sig=%2Fsi3rGNtvALvKtPWRqMvBvzZ%2B7CP4c%2FrZ9Z8k0zRrhE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:10.8442233Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A10Z&sr=b&sp=r&sig=YvdVQq9X9zo3Mqh9vlVB1u6slboeFSwA4imklpcUD04%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:10.8443744Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:06.128Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:05.469Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"de9d91ba-660a-4030-af96-cea68fd7011b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"75104e93-8808-40c4-b260-7adb98f6b737":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"608dc294-2dc8-425c-9ba3-251e68f0ccde":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A32Z&sr=b&sp=r&sig=L0Feo1OLNm%2FN95e1JWOWzOOrDyhWHAXb1EaleISx20c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:32.7273571Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/73083ace-5a3f-4676-8d97-2c142807edcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A32Z&sr=b&sp=r&sig=WcWuL14RYSzxOkEGLWGstEWVEWKlBgaSaoGaQLmjirk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:32.7276719Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/f0282e25-b675-4d05-aea4-b6306ce47b9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A32Z&sr=b&sp=r&sig=qBFFIS%2F3SI8UFPQffCdRRum3%2FKjjWJ%2B4VKl0x5y7jFk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:32.727771Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:33.225Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:18:28.814Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2776' + - '2879' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:10 GMT + - Wed, 20 Nov 2024 11:18:32 GMT mise-correlation-id: - - 6dfa7e4b-c763-4b03-bd00-06c5968e623a + - dcf33469-d4b8-4277-a44e-bdcf3ceec585 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100310Z-16998b5679fcjr6chC1MAAz5ks00000002b0000000008729 + - 20241120T111832Z-1789fbbbd78qmwkfhC1PDXrfm40000000hfg000000001k8b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1116,23 +1181,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T10:01:28.2816881Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:28.2816881Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:17:00.8560208Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:17:00.8560208Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:12 GMT + - Wed, 20 Nov 2024 11:18:33 GMT etag: - - '"fa006c15-0000-0200-0000-672b3e8f0000"' + - '"9603acff-0000-0200-0000-673dc5430000"' expires: - '-1' pragma: @@ -1148,7 +1213,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C315038C28C0485E848CF6398CBE8F50 Ref B: MAA201060515027 Ref C: 2024-11-06T10:03:13Z' + - 'Ref A: B7D0A95FA2D54BAC952D16F862BC7A1F Ref B: CO6AA3150219027 Ref C: 2024-11-20T11:18:33Z' status: code: 200 message: OK @@ -1162,32 +1227,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://319c757f-f25a-4ca0-8a5a-c0213717a4ec.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5fe2fa73-9c21-4ec9-98ef-31eeaa44df43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"6a765184-5ff7-4196-b081-34219ae29402":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e0b2c724-de10-453e-bfdf-a77ed518029b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=g7Gesiip%2BHDLKg7U4Z63shx8oYMIG7RiC8EPCJs4YxY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:15.305334Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/8ac09fe5-476b-43aa-a029-6df1c2a489fe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=jYbITY2yObTJY3smS2Ahl4axnldEISbOxmdqMlgekA8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.3309247Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=TIeeXJSEYcCVQgf5HqiGp4DrrwlgGvqi%2FAoYQkoAAqM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.3310208Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:06.128Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:05.469Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"de9d91ba-660a-4030-af96-cea68fd7011b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"75104e93-8808-40c4-b260-7adb98f6b737":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"608dc294-2dc8-425c-9ba3-251e68f0ccde":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/19904a5f-8e42-4e98-8034-47c3bf82b730?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A16Z&ske=2024-11-20T18%3A18%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A33Z&sr=b&sp=r&sig=ITpTTqjbseL12bY1Als6QYc6HBPR9j1QmFum0NUcVYQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:33.6874837Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/73083ace-5a3f-4676-8d97-2c142807edcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A16Z&ske=2024-11-20T18%3A18%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A33Z&sr=b&sp=r&sig=VhLYowFqRV3hu0cwXCmFlGGJ86%2FWf9Co%2B77PFXKSwok%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:33.6877601Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tiie3yc080qjz3jpemlrdiff.z28.blob.storage.azure.net/43caad93-dceb-439e-af7f-0b8155bf3254/f0282e25-b675-4d05-aea4-b6306ce47b9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A18%3A16Z&ske=2024-11-20T18%3A18%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A33Z&sr=b&sp=r&sig=UIsAmzdWrZPDtuWMelM91LhKKwldnY9c%2FOPUZMTPjSI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:33.6878582Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:33.225Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:18:28.814Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2761' + - '2866' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:03:15 GMT + - Wed, 20 Nov 2024 11:18:33 GMT mise-correlation-id: - - ea92ee8a-5ffa-4ff6-b33c-658ca8a724ce + - d10818b0-bf91-473d-b7e5-6aa3b3cfacf0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100314Z-184f6b5dbd8gv9nrhC1MAAb72400000005sg00000000g899 + - 20241120T111833Z-r16f5dbf676x7kfghC1YVRdw9g00000003p0000000001d74 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_update.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_update.yaml index 5b624882574..e4f3c177814 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_update.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_update.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:58:12.0994412Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:58:12.0994412Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.6654817Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.6654817Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:51 GMT + - Wed, 20 Nov 2024 11:15:35 GMT etag: - - '"fa00a409-0000-0200-0000-672b3dce0000"' + - '"9603f6fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 956A30AE4ADD4E7586A0909AA91BF443 Ref B: MAA201060515023 Ref C: 2024-11-06T09:58:50Z' + - 'Ref A: 350F53071505400CB87C31912EFFE148 Ref B: CO6AA3150220051 Ref C: 2024-11-20T11:15:35Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier update-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 09:58:54 GMT + - Wed, 20 Nov 2024 11:15:36 GMT mise-correlation-id: - - 37226195-4707-4f7c-b778-b45aa86c9a66 + - c1b6045f-4039-4c78-abea-4d265437fea1 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T095853Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rctb + - 20241120T111535Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000030wf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,12 +94,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"350a1089-8972-4e8e-b586-555de1c993c5": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "106d4261-2e0c-40df-8708-2b125bf7066d": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "b7809d0b-40a8-4a6d-986b-946024de1f93": + "78"}, "01b2ad5a-9ea6-4588-9e0b-a08008006e10": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "81e08a87-36d3-4e9d-996b-0f37ed535446": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true}}' headers: Accept: - application/json @@ -107,36 +109,37 @@ interactions: Connection: - keep-alive Content-Length: - - '816' + - '864' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:58:54.936Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"350a1089-8972-4e8e-b586-555de1c993c5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01b2ad5a-9ea6-4588-9e0b-a08008006e10":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"81e08a87-36d3-4e9d-996b-0f37ed535446":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:36.729Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:15:36.729Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1046' + - '1148' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:55 GMT + - Wed, 20 Nov 2024 11:15:36 GMT location: - - https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-03-01-preview + - https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 5bb8bc7a-78aa-4e26-9472-ef2b0a86a10c + - 948144bc-63f6-4fef-bd00-c5ebf1246ce0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095854Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rcyp + - 20241120T111536Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000030x9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -154,9 +157,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -164,7 +167,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -172,13 +176,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:55 GMT + - Wed, 20 Nov 2024 11:15:36 GMT mise-correlation-id: - - df1ee4ae-6359-47df-ae63-1434fd6ca6c4 + - 0a1f3438-8a25-4fc5-a144-3f2e0521d4e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095855Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rd1n + - 20241120T111536Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000030xu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -203,33 +207,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A57Z&ske=2024-11-06T16%3A58%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A57Z&sr=b&sp=r&sig=Pf5W0JUrerFZepL3JIbp%2BCMpoNzawYh2jFyTPjOsdGk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:08:57.6993958Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/e622fbee-37f8-4142-8d2b-d2449f7a7b63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A37Z&sr=b&sp=r&sig=xxRGGbwiQmISUyf4nx6su0J3wutAYIVWCqkWt9dKXXM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:25:37.2732211Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:57 GMT + - Wed, 20 Nov 2024 11:15:37 GMT location: - - https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 485d0b7d-547c-450b-9b8b-dacd904e4ace + - edf3ffac-b9d3-45ee-a75a-df3301aa73fc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095855Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rd31 + - 20241120T111536Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000030y1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -247,31 +252,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A58Z&sr=b&sp=r&sig=BNgUMLNVax8gAFNPR6AeGT6%2BpaOBamMy5lv6nHjPcOY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:08:58.8911321Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/e622fbee-37f8-4142-8d2b-d2449f7a7b63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A37Z&sr=b&sp=r&sig=xxRGGbwiQmISUyf4nx6su0J3wutAYIVWCqkWt9dKXXM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:25:37.4304663Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:58 GMT + - Wed, 20 Nov 2024 11:15:37 GMT mise-correlation-id: - - b348d7ea-d5fd-4c6a-941c-d845653a14a6 + - edf72f0e-f67a-41cd-9963-d3b34e3b615f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095857Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rdew + - 20241120T111537Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000030ye x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -300,33 +306,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A59Z&ske=2024-11-07T01%3A58%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A59Z&sr=b&sp=r&sig=YLnFOCUx2fb%2BWUk7TC8rHdMh08KGsGEvpseOhlMvhhg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:59.3719082Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A38Z&sr=b&sp=r&sig=PDbZFvNtmikT9Ub%2B3tLtylCfLlQnQwf7hZrDnNgc0wk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:38.5300654Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:58:59 GMT + - Wed, 20 Nov 2024 11:15:38 GMT location: - - https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - cccabe64-005c-4fe3-b238-bc969712920f + - 6e6dcafa-1563-488d-b002-67b49728a0cb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095859Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rdmm + - 20241120T111537Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000030yg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -344,31 +351,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A01Z&sr=b&sp=r&sig=4UeV5FQsmfF2lCx3uaM9RDMAnqh%2BQtEhvl%2BxVyRaMEM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:09:01.3574781Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A38Z&ske=2024-11-20T18%3A15%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A38Z&sr=b&sp=r&sig=DQmQu8Ed5no7d9YXCAXfGKQ7cVB%2FM3pQ%2FwsdbV%2B27vs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:38.6981895Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '571' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:01 GMT + - Wed, 20 Nov 2024 11:15:38 GMT mise-correlation-id: - - 84d8ab5d-058d-48cf-ba3d-eb4630bc7888 + - fc686901-06e5-4d87-900f-cb00bfd7ca61 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095859Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rdqv + - 20241120T111538Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000030z7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -386,31 +394,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A06Z&sr=b&sp=r&sig=XrXrmVunUclQ%2FMcNwKh96KChwynKSyuEBMxsdvnvUaI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:09:06.7016616Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A43Z&sr=b&sp=r&sig=UizXE8UQH5VBla1KDlIo75OoDs%2Fdr6BBIUdEqI35NgY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:43.8242377Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:06 GMT + - Wed, 20 Nov 2024 11:15:43 GMT mise-correlation-id: - - 1d6f04bd-6611-4f53-b630-932269eca0d0 + - 39486601-7f99-4a8c-b491-a0638e9b330b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095906Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rehy + - 20241120T111543Z-r16f5dbf6768jcq4hC1YVRch0000000003b000000000312q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -428,31 +437,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A57Z&ske=2024-11-06T16%3A58%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A12Z&sr=b&sp=r&sig=pMlbTQSrVkBgEuAGXrGQl27bzCWIHrtODAXKM7DZFuU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:09:12.035551Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A38Z&ske=2024-11-20T18%3A15%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A48Z&sr=b&sp=r&sig=8JRJRetbTd62JJRwATK9TG5r5rRPCacJbHdKNpSRdZE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:48.9466328Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '566' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:12 GMT + - Wed, 20 Nov 2024 11:15:48 GMT mise-correlation-id: - - d57d025b-d390-405e-8b61-27ade53a14d7 + - 42e35fcd-0771-457a-a90e-eaa9cd297bf8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095911Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rfd6 + - 20241120T111548Z-r16f5dbf6768jcq4hC1YVRch0000000003b0000000003179 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -470,31 +480,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A17Z&sr=b&sp=r&sig=qLuR3C8HOxsgoB%2F1m74r8yr%2F6iJMDukig2bmaPrj%2B%2B8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:09:17.3406182Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A54Z&sr=b&sp=r&sig=51PsXGlTG3OLorS9AKV0pYENrbDH4LNJUr%2B%2F%2F7fIThs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:54.0694081Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '575' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:17 GMT + - Wed, 20 Nov 2024 11:15:54 GMT mise-correlation-id: - - 281ee4f8-0e59-4ff6-a805-df60b6326341 + - fb015ea0-dede-494d-b389-12358a1c9c2b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095917Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rg87 + - 20241120T111553Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000031aq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -512,31 +523,118 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A22Z&sr=b&sp=r&sig=IIxnfi5RBzVuVERib%2FsRpi0RmfKEGZWWkjI%2BgVGRyKY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:09:22.6912069Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A25%3A59Z&sr=b&sp=r&sig=7aeZAid2o7eDKRLgmT0NRAcKZV4uPjdfhXIqMY%2FTlKo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:25:59.2465719Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:22 GMT + - Wed, 20 Nov 2024 11:15:59 GMT mise-correlation-id: - - dafb3b8f-7b16-4647-9611-dc11aa1986d3 + - a1fc581e-9735-4b54-8556-ec3c8a910b4a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095922Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rgzw + - 20241120T111559Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000031e5 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A04Z&sr=b&sp=r&sig=Fr0RZK1kR%2FKJGXLbZdZA%2FUBTjV4p3HORwAi70PWEiS0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:04.393505Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '571' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:16:04 GMT + mise-correlation-id: + - 8ca82078-95ce-47d0-8281-386f0823084d + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111604Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000031hx + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A09Z&sr=b&sp=r&sig=y1iD2za4ecDYcldIOw%2BZ6N%2FI5hGB1WlOhx08pW%2BuGu0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:09.5116337Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '572' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:16:09 GMT + mise-correlation-id: + - c01dd1e8-0423-4466-b2c2-1daf464bf5fb + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111609Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000031nc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -646,33 +744,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A59Z&ske=2024-11-07T01%3A58%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A23Z&sr=b&sp=r&sig=Wq9GvA7nE7CDi5GN0nkGNc%2BGN0Vd490CQcWn7d%2B6c1o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:23.1445723Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A38Z&ske=2024-11-20T18%3A15%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A09Z&sr=b&sp=r&sig=YAzdSXaGQzvX1VEYUQwva1A2XbS8Cb1cdgkIYWnsISQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:09.7974325Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '559' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:23 GMT + - Wed, 20 Nov 2024 11:16:09 GMT location: - - https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - bd2ebac8-aadc-41a0-aabc-e0fcb661710d + - 8c401dcc-921a-4aae-b5fd-52648af826a9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095922Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rh22 + - 20241120T111609Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000031ng x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -690,17 +789,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A23Z&sr=b&sp=r&sig=Y5D7A950ETzH8XSdb05znXzXEXD9hlgHJvii5nZu7FE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:23.5510391Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A09Z&sr=b&sp=r&sig=xT5XV66iplM1eqZARgQqGu1e2DgXHjSr98hIjR8aSjo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:09.911311Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -708,13 +808,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:23 GMT + - Wed, 20 Nov 2024 11:16:09 GMT mise-correlation-id: - - 7fa7a1d6-17cc-4450-8b0a-3b31b9eaba9f + - 0bc42b5e-1cb2-449c-ac13-966317c69564 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095923Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rh48 + - 20241120T111609Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000031nk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -732,31 +832,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A29Z&sr=b&sp=r&sig=YXkRjZKBsC69ELsa746BjhjGYEFa3Y7JGuXlnWkJ%2FDQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:29.0176469Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A38Z&ske=2024-11-20T18%3A15%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A15Z&sr=b&sp=r&sig=rQ1C%2BAX2zmwx50xGH%2BQ1%2FzXnwtAZrais%2ByxXftWiPSI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:15.0448238Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '557' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:29 GMT + - Wed, 20 Nov 2024 11:16:15 GMT mise-correlation-id: - - 5f5b6ca0-1692-4185-b9a6-60102d096e40 + - 910012cd-6c37-4d8c-b928-4e102a584806 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095928Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rhyp + - 20241120T111614Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000031s6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -774,31 +875,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A34Z&sr=b&sp=r&sig=9BAjKWp0L8gINKTPv6V5YlZOJv59WHPUWLZtC8tjsFs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:34.3221088Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A20Z&sr=b&sp=r&sig=Pkeo155IfbxYhxR%2B142c6gbdOTb0ZlAqy3J9Nd3a0Xc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:20.1647519Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:34 GMT + - Wed, 20 Nov 2024 11:16:20 GMT mise-correlation-id: - - 6f545cff-12f0-44d9-8051-63c0fa0a7b0d + - cce6e6db-c0f1-4537-ad3d-49b2217aa8ec strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095934Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rkrb + - 20241120T111620Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000031vf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -816,31 +918,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A39Z&ske=2024-11-06T16%3A59%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A40Z&sr=b&sp=r&sig=%2B1Lhm1B4%2FJwwQJFqBXylHgXvx5rf74rea5SotshDBQo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:40.6100205Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A25Z&sr=b&sp=r&sig=uvIw88PSEckqnM0zmQWewLZlOSSkNyT1WEHApGIrO7I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:25.2812953Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '559' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:40 GMT + - Wed, 20 Nov 2024 11:16:25 GMT mise-correlation-id: - - fe394dea-8429-4709-a8db-2c316c81844d + - 20ac90fb-83db-4893-897e-d1f4fc8c4a20 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095939Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rmeu + - 20241120T111625Z-r16f5dbf6768jcq4hC1YVRch0000000003b00000000031xt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -858,31 +961,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A45Z&sr=b&sp=r&sig=AUeaBRn4R7AlsyE9hhruOgOw0uLkiuJQiA83McpZyVg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:45.9318742Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A30Z&sr=b&sp=r&sig=1AcxRnKOpH6GTho%2FPk4JOZtt98nzJzFXouaukshapMo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:30.4072498Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '555' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:46 GMT + - Wed, 20 Nov 2024 11:16:30 GMT mise-correlation-id: - - 33099edb-8567-492e-a99d-b73b80ddce47 + - 080e7fd5-0cb4-411d-8194-b1c968ae964c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095945Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rnax + - 20241120T111630Z-r16f5dbf6768jcq4hC1YVRch0000000003b000000000320q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -900,31 +1004,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A51Z&sr=b&sp=r&sig=Ro%2FFwF%2FtFEaDdZ8TAqSeE78feBHiPDBEJYJYTElxcPY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:51.2610127Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A35Z&sr=b&sp=r&sig=oKIYzJRVTXvQeqJFOokQJMkTQQFUK8dvnXmPsFScKGo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:35.5276175Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '559' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:51 GMT + - Wed, 20 Nov 2024 11:16:35 GMT mise-correlation-id: - - 2c71e2ce-a782-4786-abb8-a23569afe671 + - 19127eae-537f-471c-8b2d-52f2a03a2011 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095951Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rp2k + - 20241120T111635Z-r16f5dbf6768jcq4hC1YVRch0000000003b000000000324f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -942,31 +1047,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A39Z&ske=2024-11-06T16%3A59%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A56Z&sr=b&sp=r&sig=fhovrzJLQ69cOPzl8eEnK%2FWeGAyEvzZTIBcLi2%2F9CN8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:56.541564Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A40Z&sr=b&sp=r&sig=fSOFJjZALXldqZuD6jD1y%2BTHf6Bm23%2FERV1CVQ%2B2m0U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:40.649879Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:56 GMT + - Wed, 20 Nov 2024 11:16:40 GMT mise-correlation-id: - - 54856d21-2e9b-4fed-8917-e851778a4b76 + - 823f2802-437c-4526-8208-7e1927ee38df strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095956Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rpte + - 20241120T111640Z-r16f5dbf6768jcq4hC1YVRch0000000003b0000000003282 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -984,32 +1090,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A56Z&sr=b&sp=r&sig=9yM6HrKWXlzdVB62ysm%2Fl8BNrAGJP7xQV5U2sxTRrSo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:59:56.8796592Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A56Z&sr=b&sp=r&sig=YO%2FH%2FKDFWJbTeELfWGFw5yUaanGG0VpYP6ZD8wQuVSc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:59:56.8799809Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A56Z&sr=b&sp=r&sig=4cFQefpe3NNgFvL8He%2BWg7u4kuWSLtx2Z4R1AkMuxk4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:59:56.8800997Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:54.525Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"350a1089-8972-4e8e-b586-555de1c993c5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01b2ad5a-9ea6-4588-9e0b-a08008006e10":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"81e08a87-36d3-4e9d-996b-0f37ed535446":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A38Z&ske=2024-11-20T18%3A15%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A40Z&sr=b&sp=r&sig=7HEibjTh2KJPe%2FLO61WaoLbgKZBk5JXwJBQtWKJF0BE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:40.7631816Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/e622fbee-37f8-4142-8d2b-d2449f7a7b63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A38Z&ske=2024-11-20T18%3A15%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A40Z&sr=b&sp=r&sig=vDQd1HY3YtgtVUIJIAtlZaV18UkvcaiZhmOJOKiAOJY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:40.7636176Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A38Z&ske=2024-11-20T18%3A15%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A40Z&sr=b&sp=r&sig=quu1CKR4RaYet3YgjNn9gvfQXY65ZA54Pb6eKuxRGmE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:40.7637971Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:36.729Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:40.322Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2765' + - '2864' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:57 GMT + - Wed, 20 Nov 2024 11:16:40 GMT mise-correlation-id: - - d1b7c9c6-0e46-4b22-b2f0-dad9ac5d21e0 + - 584361f2-cf95-4de7-aa7a-8bab03b4d502 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T095956Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rpuy + - 20241120T111640Z-r16f5dbf6768jcq4hC1YVRch0000000003b0000000003284 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1027,23 +1134,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:58:12.0994412Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:58:12.0994412Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.6654817Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.6654817Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 09:59:58 GMT + - Wed, 20 Nov 2024 11:16:40 GMT etag: - - '"fa00a409-0000-0200-0000-672b3dce0000"' + - '"9603f6fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1059,7 +1166,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C4A6DD84AFD14D96A9A66ED671FA2C41 Ref B: MAA201060516029 Ref C: 2024-11-06T09:59:58Z' + - 'Ref A: 99F34295FE88487FA5763F66BA688627 Ref B: CO6AA3150220025 Ref C: 2024-11-20T11:16:41Z' status: code: 200 message: OK @@ -1073,32 +1180,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A02Z&sr=b&sp=r&sig=B57YL339aj9x0r5BuIzMhzeTkArgGxXuJSuPfxfAhNw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:00:02.1522067Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A02Z&sr=b&sp=r&sig=VLdmmAyXNbJ%2FON5uZkzo%2B30G6fNXc5NEWSplZYp%2F5Hs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:00:02.1524759Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A02Z&sr=b&sp=r&sig=5Wclqlhu82U4XStuLl7GiVczgOpbk%2BDqJVBvswY0PyM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:00:02.152535Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:54.525Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"350a1089-8972-4e8e-b586-555de1c993c5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01b2ad5a-9ea6-4588-9e0b-a08008006e10":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"81e08a87-36d3-4e9d-996b-0f37ed535446":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A41Z&sr=b&sp=r&sig=gQEAhgStVgb%2BWWeIONXm0aa4%2BZm%2BZrSvw8%2Fv4epiehk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:41.5023374Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/e622fbee-37f8-4142-8d2b-d2449f7a7b63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A41Z&sr=b&sp=r&sig=oGSIL1A7lzIgZ5rypkV4EQFfQ0x6TYdUhx%2FOVe%2Fm%2FK0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:41.5026608Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A41Z&sr=b&sp=r&sig=TrB2aiY8AqQhfkiPsa%2FdZmGne%2BrN1aLQ2x0Uhed8fg8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:41.5027961Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:36.729Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:40.322Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2776' + - '2892' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:02 GMT + - Wed, 20 Nov 2024 11:16:41 GMT mise-correlation-id: - - 069d1683-2477-4ba2-966a-ec488e556ed8 + - 0c743f80-27a0-499e-847e-45ca69c687ba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100001Z-184f6b5dbd84nd2shC1MAAk09g000000060000000000092k + - 20241120T111641Z-17b7777dc4569rwghC1CO1z91n000000078g00000000rht0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1116,23 +1224,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:58:12.0994412Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:58:12.0994412Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.6654817Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.6654817Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:04 GMT + - Wed, 20 Nov 2024 11:16:41 GMT etag: - - '"fa00a409-0000-0200-0000-672b3dce0000"' + - '"9603f6fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1148,7 +1256,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2FE336E22A104A778E047548303850EC Ref B: MAA201060515035 Ref C: 2024-11-06T10:00:03Z' + - 'Ref A: E1107E059ED142D18B926F12273007AD Ref B: CO6AA3150220045 Ref C: 2024-11-20T11:16:41Z' status: code: 200 message: OK @@ -1162,32 +1270,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A06Z&sr=b&sp=r&sig=ktEopDfuebjfMsQGMnIplJaRW4WQTfWfZ8nLBW1t6yQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:00:06.9413719Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A06Z&sr=b&sp=r&sig=2BJJzNgU0Zk1IAJJrYJVfthaLA%2B4KxEghCAtHDOf2Vo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:00:06.9415629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A06Z&sr=b&sp=r&sig=GAEX4Cbmie7O29VlEFDwhrsglcn0xOSXisVpj2gfYfc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:00:06.9416142Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:54.525Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"350a1089-8972-4e8e-b586-555de1c993c5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01b2ad5a-9ea6-4588-9e0b-a08008006e10":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"81e08a87-36d3-4e9d-996b-0f37ed535446":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A42Z&sr=b&sp=r&sig=Dbgx%2FlaYPmHbx3rWy%2FaDNXWrNuVMkH0Y4bbP1DzJiM0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:42.2502832Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/e622fbee-37f8-4142-8d2b-d2449f7a7b63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A42Z&sr=b&sp=r&sig=DlQ9JgcL3Nk4XxNHqsV7zuffPSnuLhkRKLf7SDYf%2BMo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:42.2506147Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A42Z&sr=b&sp=r&sig=kHVDQRMiLoT02UADnpiLp3PMfzUBIyombhPPvbm9X5k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:42.2507578Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:36.729Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:40.322Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2759' + - '2868' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:07 GMT + - Wed, 20 Nov 2024 11:16:42 GMT mise-correlation-id: - - 7393323e-bf4c-4a4f-88e7-5c8d9c59fd57 + - dfe8c632-e919-4b4e-b819-04e3e85bdc7f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100006Z-16998b5679f9f5c4hC1MAA989n00000005vg000000008907 + - 20241120T111642Z-17b7777dc45tj6jqhC1CO1t6dc0000000g0000000000v79w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1199,7 +1308,9 @@ interactions: body: '{"displayName": "CLI-Test", "description": "Test created from az load test command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {"rps": "1", "duration_in_sec": "1"}, "secrets": {}, "loadTestConfiguration": - {"engineInstances": 11, "splitAllCSVs": false, "quickStartTest": false}}' + {"engineInstances": 11, "splitAllCSVs": false, "quickStartTest": false}, "autoStopCriteria": + {"autoStopDisabled": true, "errorRate": 90.0, "errorRateTimeWindowInSeconds": + 60}}' headers: Accept: - application/json @@ -1208,36 +1319,37 @@ interactions: Connection: - keep-alive Content-Length: - - '310' + - '413' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A57Z&ske=2024-11-06T16%3A58%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A07Z&sr=b&sp=r&sig=q3m3Sk1wPrvLrBQco2YoVDgRNnjrcbz5MZ1FKswu2lg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:00:07.3698665Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A57Z&ske=2024-11-06T16%3A58%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A07Z&sr=b&sp=r&sig=ukVM1yQiJ0vLnZBPNvup9iGBQPBJTIl%2BAHwgU9ijVto%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:00:07.3703071Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A57Z&ske=2024-11-06T16%3A58%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A07Z&sr=b&sp=r&sig=hxPArEu7KEWF6GcamgKtHynNZbo4HoOiakrPDjp1Izo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:00:07.3705202Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:00:07.36Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"350a1089-8972-4e8e-b586-555de1c993c5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01b2ad5a-9ea6-4588-9e0b-a08008006e10":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"81e08a87-36d3-4e9d-996b-0f37ed535446":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A42Z&sr=b&sp=r&sig=Dbgx%2FlaYPmHbx3rWy%2FaDNXWrNuVMkH0Y4bbP1DzJiM0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:42.4225783Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/e622fbee-37f8-4142-8d2b-d2449f7a7b63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A42Z&sr=b&sp=r&sig=DlQ9JgcL3Nk4XxNHqsV7zuffPSnuLhkRKLf7SDYf%2BMo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:42.4229466Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A42Z&sr=b&sp=r&sig=kHVDQRMiLoT02UADnpiLp3PMfzUBIyombhPPvbm9X5k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:42.4231218Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:36.729Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:42.413Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2759' + - '2869' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:07 GMT + - Wed, 20 Nov 2024 11:16:42 GMT mise-correlation-id: - - 37581f58-4ea6-485d-8fc4-0c8e54b26750 + - b71c8392-7181-4f77-8173-6262c2452d7a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100007Z-16998b5679f9f5c4hC1MAA989n00000005vg00000000890m + - 20241120T111642Z-17b7777dc45tj6jqhC1CO1t6dc0000000g0000000000v7a1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1255,31 +1367,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A59Z&ske=2024-11-07T01%3A58%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A07Z&sr=b&sp=r&sig=UR6Qg3ZKEr8XSsAQPxQwxbR80SLwdVJ8E2CHi1ebUbw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:07.6591693Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A59Z&ske=2024-11-07T01%3A58%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A07Z&sr=b&sp=r&sig=zDUFYZKcqSeJSRz0GhgsIaWIMKRSUU9jbwKzd%2Fqhyuo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:10:07.6592776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A59Z&ske=2024-11-07T01%3A58%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A07Z&sr=b&sp=r&sig=QkvRcoFy2XT1hJnuulf0KWYn8ZsEXAwARTPJ11BKP8g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:10:07.6593716Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A42Z&sr=b&sp=r&sig=tX19To4k3Fff%2BecGzQ%2B5S9MAHa%2BXnncyTYJCT0BLbXs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:26:42.5171641Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/e622fbee-37f8-4142-8d2b-d2449f7a7b63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A42Z&sr=b&sp=r&sig=DNv8l7uFvJb5cDA8L9964hVGnZHryQObwtubIvP1OVE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:26:42.5173297Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A59Z&ske=2024-11-20T18%3A15%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A26%3A42Z&sr=b&sp=r&sig=VL63fIge49HPhIOaD9b%2FZZlOZdBSnWHwCWBPzFzUa24%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:26:42.5174975Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1704' + - '1713' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:07 GMT + - Wed, 20 Nov 2024 11:16:42 GMT mise-correlation-id: - - 7ccceb35-d039-4c2f-8558-c425059c238c + - c9bb4fd3-593c-48b3-99b9-55fae0694725 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100007Z-16998b5679f9f5c4hC1MAA989n00000005vg000000008912 + - 20241120T111642Z-17b7777dc45tj6jqhC1CO1t6dc0000000g0000000000v7a9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1297,32 +1410,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A39Z&ske=2024-11-06T16%3A59%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A08Z&sr=b&sp=r&sig=%2BC8j6a5UuPasFLWunE%2Bbhh39HuqJGrZOaydEZPi%2BL%2B8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:00:08.0487769Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A39Z&ske=2024-11-06T16%3A59%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A08Z&sr=b&sp=r&sig=nXzcY3yKxJ2yCFsyVMbkjVh5S51K%2B2j4qsRmfRvsyYI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:00:08.0492309Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A39Z&ske=2024-11-06T16%3A59%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A08Z&sr=b&sp=r&sig=O2jAd%2FxNFghO9x%2B3n%2FoVqSkzNcPsDRxAj7uRatsxw%2Bc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:00:08.0494218Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:00:07.36Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"350a1089-8972-4e8e-b586-555de1c993c5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01b2ad5a-9ea6-4588-9e0b-a08008006e10":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"81e08a87-36d3-4e9d-996b-0f37ed535446":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A42Z&sr=b&sp=r&sig=Dbgx%2FlaYPmHbx3rWy%2FaDNXWrNuVMkH0Y4bbP1DzJiM0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:42.6068429Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/e622fbee-37f8-4142-8d2b-d2449f7a7b63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A42Z&sr=b&sp=r&sig=DlQ9JgcL3Nk4XxNHqsV7zuffPSnuLhkRKLf7SDYf%2BMo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:42.6071169Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A15%3A37Z&ske=2024-11-20T18%3A15%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A42Z&sr=b&sp=r&sig=kHVDQRMiLoT02UADnpiLp3PMfzUBIyombhPPvbm9X5k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:42.6072084Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:36.729Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:42.413Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2775' + - '2869' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:08 GMT + - Wed, 20 Nov 2024 11:16:42 GMT mise-correlation-id: - - 6532509b-613f-4c4c-92ea-76d19ea39c67 + - 70a5fb78-6df6-4e24-8fd9-9d35ca05c055 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100007Z-16998b5679f9f5c4hC1MAA989n00000005vg00000000891c + - 20241120T111642Z-17b7777dc45tj6jqhC1CO1t6dc0000000g0000000000v7ab x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1340,23 +1454,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:58:12.0994412Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:58:12.0994412Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.6654817Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.6654817Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:10 GMT + - Wed, 20 Nov 2024 11:16:42 GMT etag: - - '"fa00a409-0000-0200-0000-672b3dce0000"' + - '"9603f6fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1372,7 +1486,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 83815F223E38453995B2DF27CCC6A48F Ref B: MAA201060514047 Ref C: 2024-11-06T10:00:10Z' + - 'Ref A: 6C6D0947C7064665B8873729D1A55F04 Ref B: CO6AA3150219049 Ref C: 2024-11-20T11:16:42Z' status: code: 200 message: OK @@ -1386,32 +1500,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A13Z&sr=b&sp=r&sig=7PqckZQ4ZbLHQBxubTX7amhQ2l3muQFUW4an%2FjvZYr0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:00:13.1062098Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A13Z&sr=b&sp=r&sig=IsPoLPVHbGFNkccSCANdUpoAVdx56K0MuKRFwh4znNI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:00:13.106453Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A13Z&sr=b&sp=r&sig=ha9ZWt7zKq5fds59GpPLeaq6Pfx9LmAlPorlUsuUXkI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:00:13.1065239Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:00:07.36Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"350a1089-8972-4e8e-b586-555de1c993c5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01b2ad5a-9ea6-4588-9e0b-a08008006e10":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"81e08a87-36d3-4e9d-996b-0f37ed535446":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/ee0d05cb-1b0c-4ed7-84d3-121b1d3d8639?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A43Z&ske=2024-11-20T18%3A16%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A43Z&sr=b&sp=r&sig=izRh5UWFdBI56icx8Chra%2FAXaS4AzKUO3y7nT4STI7s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:16:43.6082552Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/e622fbee-37f8-4142-8d2b-d2449f7a7b63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A43Z&ske=2024-11-20T18%3A16%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A43Z&sr=b&sp=r&sig=sQEBLUx2%2BW8uGDLM8I0p0hb0Ig8PlRWxDUki5Ec3cvU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:16:43.6293763Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfofec9uc3oipxgbqeedtw02.z21.blob.storage.azure.net/e6e51666-5868-4942-bd05-92214c27d964/93a930be-e2fb-45d6-9c28-60ba0fe9f617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A16%3A43Z&ske=2024-11-20T18%3A16%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A16%3A43Z&sr=b&sp=r&sig=oY6IPNd0tU4FNKlh6QFcXHYlt99vLFHWeRHyKv57VkQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:16:43.6295451Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:15:36.729Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:16:42.413Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2758' + - '2867' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:13 GMT + - Wed, 20 Nov 2024 11:16:43 GMT mise-correlation-id: - - cbbd65d2-9bea-4198-b282-a5a6284d3543 + - fbce05be-495f-4b05-ad2f-584827fbb680 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100012Z-184f6b5dbd8rh8gjhC1MAAahmc00000005v000000000g42e + - 20241120T111643Z-17b7777dc45q4gdthC1CO13w2n0000000w4000000000qhvz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1429,23 +1544,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:58:12.0994412Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:58:12.0994412Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:15:02.6654817Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:15:02.6654817Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:15 GMT + - Wed, 20 Nov 2024 11:16:43 GMT etag: - - '"fa00a409-0000-0200-0000-672b3dce0000"' + - '"9603f6fe-0000-0200-0000-673dc4cc0000"' expires: - '-1' pragma: @@ -1461,7 +1576,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 99A1735B153A4A329D780354E4A9FC2B Ref B: MAA201060513053 Ref C: 2024-11-06T10:00:15Z' + - 'Ref A: 68839BB0F91841F1BC225E2971986CBC Ref B: CO6AA3150217019 Ref C: 2024-11-20T11:16:43Z' status: code: 200 message: OK @@ -1475,30 +1590,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-update-test-case?api-version=2024-05-01-preview + uri: https://08c26e4d-daf2-40c3-9065-98a8fd9e1846.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-update-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier invalid-update-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:00:17 GMT + - Wed, 20 Nov 2024 11:16:44 GMT mise-correlation-id: - - ee7e1c72-e436-4e48-b5f7-1e99bc693470 + - 959b0eee-ae20-4462-8ebd-c84b424a1fdb strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100017Z-184f6b5dbd8rh8gjhC1MAAahmc000000061g00000000163g + - 20241120T111644Z-17b7777dc45gdttqhC1CO1kc5c0000000bf0000000005cyp x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_update_with_config.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_update_with_config.yaml index 60ef440a96a..9b91fc9b9d6 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_update_with_config.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_update_with_config.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:59:58.6992937Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:59:58.6992937Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:49.3738026Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:49.3738026Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:34 GMT + - Wed, 20 Nov 2024 11:17:20 GMT etag: - - '"fa003b0d-0000-0200-0000-672b3e350000"' + - '"960392ff-0000-0200-0000-673dc5380000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 712C36B9A22C49898D12F9289BB51A44 Ref B: MAA201060513017 Ref C: 2024-11-06T10:00:34Z' + - 'Ref A: 9160B4E4B9C84177AC3E0926D9145FE3 Ref B: CO6AA3150218029 Ref C: 2024-11-20T11:17:20Z' status: code: 200 message: OK @@ -55,30 +55,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with given identifier update-with-config-test-case","target":null,"details":null}}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-type: - application/json date: - - Wed, 06 Nov 2024 10:00:37 GMT + - Wed, 20 Nov 2024 11:17:21 GMT mise-correlation-id: - - 39291a0e-3681-44dd-ab64-0323c691faf2 + - 4d28571f-f80b-4253-95b3-e0be522a45d0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241106T100036Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k000000000366b + - 20241120T111721Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000xab x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -92,7 +93,8 @@ interactions: body: '{"displayName": "Create_with_args_test", "description": "This is a load test created with arguments", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {"a": "2", "b": "3"}, "secrets": {}, "loadTestConfiguration": - {"engineInstances": 5, "quickStartTest": false, "splitAllCSVs": false}}' + {"engineInstances": 5, "quickStartTest": false, "splitAllCSVs": false}, "autoStopCriteria": + {}}' headers: Accept: - application/json @@ -101,36 +103,37 @@ interactions: Connection: - keep-alive Content-Length: - - '310' + - '334' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: - string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:00:37.803Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:22.868Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:22.868Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '672' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:37 GMT + - Wed, 20 Nov 2024 11:17:22 GMT location: - - https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-03-01-preview + - https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 56bdb9c4-52d7-4dbe-9d8f-f728db169c7d + - a779d827-cec5-4d54-b475-bfbead5d486e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100037Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k000000000369p + - 20241120T111721Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000xan x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -148,9 +151,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -158,7 +161,8 @@ interactions: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -166,13 +170,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:39 GMT + - Wed, 20 Nov 2024 11:17:22 GMT mise-correlation-id: - - 27e489e8-1ac9-4c15-8db7-7855d97967e0 + - dfd3919b-b7f8-4cb6-a59d-9fcc177b6a35 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100037Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k00000000036bt + - 20241120T111722Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000xcd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -282,17 +286,18 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-07T02%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A40Z&sr=b&sp=r&sig=us318NIkamcGRlMzShAo7s2sdQRH7eg3TsUrHHjfu4s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:40.3247638Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A23Z&ske=2024-11-20T18%3A17%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A23Z&sr=b&sp=r&sig=7EAG3eddtBO5rpTPEVjxS7mbxF0h2Dgn8DYiR969Zwc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:23.4069751Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -300,15 +305,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:40 GMT + - Wed, 20 Nov 2024 11:17:23 GMT location: - - https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - da6d94a6-2a8b-4676-938f-6d419f402d1b + - 72fc7c00-8ccb-464e-b3d9-1f3a2831f3cd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100039Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k00000000036pd + - 20241120T111723Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000xcf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -326,31 +331,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A40Z&sr=b&sp=r&sig=lfOuMSBoCSXXWkFtZ7%2BSJXZJuUGE1vgXV%2FwDhxrHTXA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:40.765645Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A23Z&ske=2024-11-20T18%3A17%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A23Z&sr=b&sp=r&sig=7EAG3eddtBO5rpTPEVjxS7mbxF0h2Dgn8DYiR969Zwc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:23.5352126Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '559' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:40 GMT + - Wed, 20 Nov 2024 11:17:23 GMT mise-correlation-id: - - e4ba7879-4cf9-41f0-9324-23e07f854ea2 + - 4e67cdfb-c8e0-46e0-b5c7-2196c6568d4c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100040Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k00000000036sf + - 20241120T111723Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000xd6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -368,17 +374,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A46Z&ske=2024-11-06T17%3A00%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A46Z&sr=b&sp=r&sig=haNU2qRxCpt9wL5fHoclUpwJu%2BaR20aD4A4apw79IRM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:46.1596938Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A23Z&ske=2024-11-20T18%3A17%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A28Z&sr=b&sp=r&sig=vW04g0JNXU4eAZrQoT9CK5AygjL7vG%2B6St5CwHZj8zQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:28.6486496Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -386,13 +393,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:46 GMT + - Wed, 20 Nov 2024 11:17:28 GMT mise-correlation-id: - - 782bf921-cc63-420a-b57a-0c413f4174c8 + - ea11d1fe-941b-48be-aa3a-5247f62a522f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100046Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k00000000037g4 + - 20241120T111728Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000xnv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -410,17 +417,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A51Z&ske=2024-11-06T17%3A00%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A52Z&sr=b&sp=r&sig=9xzqBXAoea3wDEXWfs%2BlAoMImIvmMcKQxgSb%2FklNENI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:52.6210397Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A33Z&sr=b&sp=r&sig=1yUg7xpkFfnCCixTpHelX1LG8nFI4kM%2BlMXqP%2Bss4NI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:33.7932525Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -428,13 +436,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:52 GMT + - Wed, 20 Nov 2024 11:17:33 GMT mise-correlation-id: - - e278d7c2-5892-42b8-945b-4a97f39c3193 + - 4d850f8f-3c02-4479-b161-1b094dbf6f5d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100051Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k000000000385r + - 20241120T111733Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000xw3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -452,17 +460,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A58Z&ske=2024-11-06T17%3A00%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A59Z&sr=b&sp=r&sig=peYwJvIaQ8xcU4AAtDMHHSIPdc6V94EUgO%2FQs8nIMGo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:59.3996897Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A39Z&ske=2024-11-20T18%3A17%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A39Z&sr=b&sp=r&sig=hlJIm2HDXmee9CKW0xCs0cxf9b70mAzaNFDtI2k%2FV6I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:39.4656577Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -470,13 +479,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:00:59 GMT + - Wed, 20 Nov 2024 11:17:39 GMT mise-correlation-id: - - b2e1406e-7d84-44bd-9905-c116bfe62c2b + - 93b5bbe3-483b-4436-bbb2-ccd21e69bc58 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100057Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k000000000392p + - 20241120T111739Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000y3p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -494,31 +503,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A04Z&sr=b&sp=r&sig=fJ6e6oRhcV6V3%2FqhocwUmiFVC%2BVgVaJDQsI0%2B15CPkE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:04.7858525Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A44Z&sr=b&sp=r&sig=pKrtQ%2BY5i8U5bjuFGbaQhjeMDRC1T8MGhE1GMdOScJc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:44.5672153Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:04 GMT + - Wed, 20 Nov 2024 11:17:44 GMT mise-correlation-id: - - 8d21102d-b236-4d2a-9fcb-83d4a1e8ffb8 + - 61df03d8-a924-406a-ab3f-3549b77e30d3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100104Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k0000000003a89 + - 20241120T111744Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000yab x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -536,32 +546,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A51Z&ske=2024-11-06T17%3A00%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A01%3A05Z&sr=b&sp=r&sig=%2FkLiQU2cmVIAbP1r2VQLQXAmATQINY6vLRS2NjorQaI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:01:05.0784522Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:01:03.579Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A49Z&ske=2024-11-20T18%3A17%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A49Z&sr=b&sp=r&sig=D6Y%2BchIv6eSV4usvdlyDAX%2FLDZnYhh%2FbEw2LGuerABc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:49.7108074Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1147' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:05 GMT + - Wed, 20 Nov 2024 11:17:49 GMT mise-correlation-id: - - 8a03b195-190c-4558-a123-0d8d45ee2bd0 + - a4d959ce-7c77-4928-952b-fd966e4530dd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100104Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k0000000003a9v + - 20241120T111749Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000yh3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -579,23 +589,110 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A23Z&ske=2024-11-20T18%3A17%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A54Z&sr=b&sp=r&sig=hkAH7scK9BxekL4qvbZKZS34B6Qcw2zH1uMzka7ygwI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:54.814472Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '553' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:17:54 GMT + mise-correlation-id: + - f41d0aa4-2e86-430f-8e6b-05cf47d4471b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111754Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000yr1 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A54Z&sr=b&sp=r&sig=xTjXq99U1cxsf8PRh3Oe0BTIZARJtatHfMU5dqz6JMg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:54.911339Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:22.868Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:49.867Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '1247' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:17:54 GMT + mise-correlation-id: + - 73da253f-c76f-4a0a-b061-744cf7f4e1eb + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111754Z-17b7777dc45b7zs5hC1CO1gge80000000wc0000000000yr5 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:59:58.6992937Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:59:58.6992937Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:49.3738026Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:49.3738026Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:08 GMT + - Wed, 20 Nov 2024 11:17:54 GMT etag: - - '"fa003b0d-0000-0200-0000-672b3e350000"' + - '"960392ff-0000-0200-0000-673dc5380000"' expires: - '-1' pragma: @@ -611,7 +708,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4F141484421A422DBAFE01F113F3C40D Ref B: MAA201060513037 Ref C: 2024-11-06T10:01:07Z' + - 'Ref A: A2D393B3E50344FB9B7C0FBAB0E57FB1 Ref B: CO6AA3150218019 Ref C: 2024-11-20T11:17:55Z' status: code: 200 message: OK @@ -625,32 +722,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: - string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A11Z&ske=2024-11-06T17%3A01%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A01%3A11Z&sr=b&sp=r&sig=RA%2Bnj4%2BvWRH82fkOnJDrPvWNtWZ7Q%2BcldhB2zSibAew%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:01:11.1432046Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:01:03.579Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A55Z&ske=2024-11-20T18%3A17%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A55Z&sr=b&sp=r&sig=PUti9RASxru%2F2FPQLO5xliqeP79nirzcQ1ueAKGyw2c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:55.6817729Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:22.868Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:49.867Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1151' + - '1250' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:11 GMT + - Wed, 20 Nov 2024 11:17:55 GMT mise-correlation-id: - - 7a713173-a327-4ab1-9415-01fc5e671e6e + - ad4a324f-ab2a-47f0-af05-318522e19d2b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100110Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u10n + - 20241120T111755Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d027 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -663,12 +761,13 @@ interactions: command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"a": null, "b": null, "rps": 1, "c": "5"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": - false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": {"8912389d-b230-4464-a302-9d16ff593d4e": + false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": {"4317e7d6-e457-4f24-b62c-3d43ec150e3b": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "23ad5949-f563-4dc7-94dc-d22fbff2a8cd": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "a8b33fdf-183b-4342-a691-c09c7fb81595": + "78"}, "e18c6566-6518-4efc-a761-a789850664ca": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "76eb09c5-3a39-4e8e-8a69-2ddbf91d24e9": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", - "requestName": "GetCustomerDetails"}}}}' + "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": + true, "errorRate": 90.0, "errorRateTimeWindowInSeconds": 60}}' headers: Accept: - application/json @@ -677,36 +776,37 @@ interactions: Connection: - keep-alive Content-Length: - - '823' + - '926' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"8912389d-b230-4464-a302-9d16ff593d4e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"23ad5949-f563-4dc7-94dc-d22fbff2a8cd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a8b33fdf-183b-4342-a691-c09c7fb81595":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-07T02%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A01%3A11Z&sr=b&sp=r&sig=Cbu65Krj8LZJG6KcNBQDa3oNL%2F7eFeaDon%2FjimCDF8c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:01:11.6228348Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:01:11.613Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4317e7d6-e457-4f24-b62c-3d43ec150e3b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e18c6566-6518-4efc-a761-a789850664ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"76eb09c5-3a39-4e8e-8a69-2ddbf91d24e9":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A39Z&ske=2024-11-20T18%3A17%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A17%3A55Z&sr=b&sp=r&sig=CTN2c7OIuDeq%2Byu3zU8v%2BFKcW%2BdUYp7dbdeso6IZyVg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:17:55.9600264Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:22.868Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:17:55.95Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '1623' + - '1726' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:11 GMT + - Wed, 20 Nov 2024 11:17:55 GMT mise-correlation-id: - - 26b1e9ef-1336-468c-8116-00bcef197bc9 + - cabde2d8-7fff-43ca-baa2-2fdad505cfb8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100111Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u13e + - 20241120T111755Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d02f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -724,31 +824,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A58Z&ske=2024-11-06T17%3A00%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A11Z&sr=b&sp=r&sig=CPvQ43iOJJgbfP%2FakYe%2B3fj4NUzFQb2IFR7UiSdqj8E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:11.9222501Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/0c9d6c73-5ba7-44f8-915b-a9e780fb188e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A49Z&ske=2024-11-20T18%3A17%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A56Z&sr=b&sp=r&sig=Axeea4kuBwaF43fGxDlkdKieFia9Et%2BHqMQuzXKs8rQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:27:56.0567088Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:12 GMT + - Wed, 20 Nov 2024 11:17:56 GMT mise-correlation-id: - - 41e497c9-e419-4747-a5f7-ad991ada348f + - 104eb92e-952b-4df5-be1f-8f42f77da1f9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100111Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u14m + - 20241120T111755Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d02p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -773,33 +874,34 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/d54e77c6-02d4-4c45-a133-d77f90e80700?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A12Z&sr=b&sp=r&sig=hQuve1L6SZJtaUXfPQLy4XlDowP5tUhWpE7NIPvVMPo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:11:12.4629267Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c0a5a6d8-61b6-4f1a-a5f8-67d974233715?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A56Z&sr=b&sp=r&sig=MrOgJ7UDr%2FbzLSezO34bczK8K%2BFWONiz2J0%2B%2FjdfYkw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:27:56.9694279Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '571' + - '579' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:12 GMT + - Wed, 20 Nov 2024 11:17:56 GMT location: - - https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 1867266a-7823-4936-8b09-9a11fe938d91 + - 5b3b961d-670d-4670-b288-e84afd1009b5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100112Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u168 + - 20241120T111756Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d02t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -817,31 +919,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/d54e77c6-02d4-4c45-a133-d77f90e80700?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A12Z&sr=b&sp=r&sig=m6v4dwZpJnd%2BQ5hXjz338j8hPfqZvdN7NZGh7vFqXXw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:11:12.7093526Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c0a5a6d8-61b6-4f1a-a5f8-67d974233715?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A49Z&ske=2024-11-21T01%3A17%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A57Z&sr=b&sp=r&sig=JL5qcGnIAei1IB1A%2BBu7O66ov%2BXQOcukndT6Ov3BW6g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T11:27:57.0676201Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '573' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:12 GMT + - Wed, 20 Nov 2024 11:17:57 GMT mise-correlation-id: - - d8d6ea7d-c5ff-4d27-ab7a-869cbe07360f + - 514fc13e-15ab-43fc-b6df-5ff0cdb094ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100112Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u17k + - 20241120T111756Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d03r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -870,33 +973,34 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A13Z&ske=2024-11-07T02%3A01%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A13Z&sr=b&sp=r&sig=0dgK2eFYp8G%2B2njg2KJtn42NoQkDy%2FrQib4q5Dx9fhg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:13.9379624Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/1f4580ea-a788-4bda-bc92-b7d1a3ace8ed?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A23Z&ske=2024-11-20T18%3A17%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A57Z&sr=b&sp=r&sig=Ry4ujkxGq9Ue2OkOmvIUd1jwHIwTOR5tJWv7U%2FuBbHA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:57.3281414Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:14 GMT + - Wed, 20 Nov 2024 11:17:57 GMT location: - - https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 7a6b2e5a-be40-4eeb-bbcd-162f9bfcf16b + - 6296d722-3e6d-4857-b7aa-5f6ef13376af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100112Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u18b + - 20241120T111757Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d03w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -914,31 +1018,75 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/1f4580ea-a788-4bda-bc92-b7d1a3ace8ed?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A55Z&ske=2024-11-20T18%3A17%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A27%3A57Z&sr=b&sp=r&sig=UNalTQgdd9LYL4lrgQ9eUNF7z6bQTU2t6HwH1YczKVw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:27:57.4284483Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:17:57 GMT + mise-correlation-id: + - 640ee4e4-817e-4f2a-819b-6444d4de64c2 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111757Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d049 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A14Z&sr=b&sp=r&sig=1M0TiiRi%2BjlA%2F3ErEqXBjR8R2j3SiIz2YP8ErauVRFI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:14.2102463Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/1f4580ea-a788-4bda-bc92-b7d1a3ace8ed?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A49Z&ske=2024-11-21T01%3A17%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A02Z&sr=b&sp=r&sig=9k5uTOq7Vg%2B8bd9BL4LCCLm89EhfEqsimPSBHQBND88%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:02.5373755Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:14 GMT + - Wed, 20 Nov 2024 11:18:02 GMT mise-correlation-id: - - 1f738eb1-cf06-4505-97aa-48d6264a916e + - a67defd8-b5cd-492b-8f87-323457333708 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100114Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u1d9 + - 20241120T111802Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d0a6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -956,17 +1104,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A13Z&ske=2024-11-07T02%3A01%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A19Z&sr=b&sp=r&sig=%2FFb8vXWfsvreX8MMe6VhVjyL4RclJwdXO7xdeFETrok%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:19.4835606Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/1f4580ea-a788-4bda-bc92-b7d1a3ace8ed?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A07Z&sr=b&sp=r&sig=NRqk7s7gtt9S92CLyVpjWItUn7K5NEnx0XiL6%2FSMoSk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:07.6390709Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -974,13 +1123,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:19 GMT + - Wed, 20 Nov 2024 11:18:07 GMT mise-correlation-id: - - b5e20685-7e4e-4c9b-8f21-353bb35ec2dd + - 86457a1e-1759-47b8-8b1c-603e8b7be169 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100119Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u28z + - 20241120T111807Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d0fz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -998,17 +1147,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A24Z&sr=b&sp=r&sig=cRjRmxpi8nbCnCjlwqNAAhQlshtaV48y53Mxt%2Fud06Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:24.7652965Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/1f4580ea-a788-4bda-bc92-b7d1a3ace8ed?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A55Z&ske=2024-11-20T18%3A17%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A12Z&sr=b&sp=r&sig=LxYUWIa3YesgTA57WCGQCTeJnzbQWWJ1uVcUK%2FTgZEg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:12.7374048Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1016,13 +1166,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:24 GMT + - Wed, 20 Nov 2024 11:18:12 GMT mise-correlation-id: - - 8d0df8df-0d1d-4e0d-8e80-a0698ede4716 + - 0c6023cb-6fef-4512-a584-7003ccaa0898 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100124Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u2zb + - 20241120T111812Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d0q2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1040,31 +1190,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A30Z&sr=b&sp=r&sig=lXyg23zvUCTMFc%2BmIE4fXmqjscMHLgsV08hSCtjFj2w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:30.063145Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/1f4580ea-a788-4bda-bc92-b7d1a3ace8ed?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A39Z&ske=2024-11-20T18%3A17%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A17Z&sr=b&sp=r&sig=waFGCCAzyDYgmaBAZ3c2IuVjTmVU6Va0QhOe32xBLuc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:17.846509Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '569' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:30 GMT + - Wed, 20 Nov 2024 11:18:17 GMT mise-correlation-id: - - 0bcb6385-a7e2-4803-ab1a-7d0da21e3cdd + - 2ead51f5-2e4d-486b-8def-7e991883dd1c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100129Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u3k7 + - 20241120T111817Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d0vw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1082,31 +1233,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A58Z&ske=2024-11-06T17%3A00%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A35Z&sr=b&sp=r&sig=nHOzbWW%2FMFDJ6c90ngEJT1ZrB6OIGmrgo01OxjZIenw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:35.3706455Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/1f4580ea-a788-4bda-bc92-b7d1a3ace8ed?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A22Z&sr=b&sp=r&sig=euGgjimTqMEc759OwtF814UocYoxQWgemSqMJr%2B7a7A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T11:28:22.9526558Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - - close + - keep-alive content-length: - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:35 GMT + - Wed, 20 Nov 2024 11:18:22 GMT mise-correlation-id: - - 34b6e8b9-cce2-402f-8256-1ec43a1bd348 + - 0b0ce996-80a0-495a-ac3c-3fc9c471e2d6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100135Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u40x + - 20241120T111822Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d11f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1216,33 +1368,34 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A38Z&sr=b&sp=r&sig=BNI9Yzl%2FS8%2BJ1ujydcJAKAgDukYwy6Fu1zSieCqr5O4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:38.6638881Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A49Z&ske=2024-11-21T01%3A17%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A23Z&sr=b&sp=r&sig=XuyXW7oemZCvfeWdKAMm9EV6%2BNwGHlu57Q3bOOkApf8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:23.2035518Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:38 GMT + - Wed, 20 Nov 2024 11:18:23 GMT location: - - https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - e5bc735e-3dfd-4ec8-8568-1616a94bdc88 + - 91269e53-1555-476b-9d9c-b9c5cc40bc09 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100136Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dsud + - 20241120T111822Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d11k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1260,31 +1413,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A39Z&sr=b&sp=r&sig=5wf4x9R%2Byeb6jIv8Bfyr8rKJ1gtRDUMlBjk46IoD3%2FU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:39.0098457Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A23Z&ske=2024-11-20T18%3A17%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A23Z&sr=b&sp=r&sig=fqHy3HFNqbbk1m5RlmNjJPu%2FqnBYoTXAoS1L9kMsfPA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:23.3009993Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:39 GMT + - Wed, 20 Nov 2024 11:18:23 GMT mise-correlation-id: - - 18d0cbc7-c796-47a5-890c-aabf76c7cfc9 + - 82ef22aa-67a2-4878-8cfd-4cf43da2713e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100138Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dt4b + - 20241120T111823Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d11u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1302,17 +1456,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A44Z&sr=b&sp=r&sig=Bnh5oKzoA7pCbm9SeqCODWQrGK%2Fypd7MBJQF55RmMdg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:44.3745947Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A39Z&ske=2024-11-20T18%3A17%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A28Z&sr=b&sp=r&sig=vKNjeyVsL3Sq0s6kwffVZZYF82IOfJZsRAzO%2BKfIUK8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:28.4108883Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1320,13 +1475,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:44 GMT + - Wed, 20 Nov 2024 11:18:28 GMT mise-correlation-id: - - f9b17be9-0070-4c27-98eb-36806b0040f7 + - 0148df1a-3222-4e20-aca1-f044fbf5a611 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100144Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001du1c + - 20241120T111828Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d19x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1344,31 +1499,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A49Z&sr=b&sp=r&sig=ME38Hkbzpj%2F%2Fd%2BCoyDuarEB7xT1iZEHj%2BXSEbyzETDQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:49.8581899Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A33Z&sr=b&sp=r&sig=kfApMt2gnXKsNJmPF0i12hGOAoNRM8GwShmT5T6RDFA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:33.5172288Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '564' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:49 GMT + - Wed, 20 Nov 2024 11:18:33 GMT mise-correlation-id: - - ac2486d4-2a5a-4b81-9780-9aaaf8141c7c + - 57777b3d-22a9-4fac-bba5-4d5cac6082e4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100149Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dv0y + - 20241120T111833Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d1k5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1386,17 +1542,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A58Z&ske=2024-11-06T17%3A00%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A55Z&sr=b&sp=r&sig=pwCTHpUap65ME1g8n1v241JYpYpVMa1T8Wv96VrcEyc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:55.2325499Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A49Z&ske=2024-11-21T01%3A17%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A38Z&sr=b&sp=r&sig=W70gMZmv4Yf9thjl2WFSwFUe96rcuLSU3fyK3n0M8yw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:38.6240353Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1404,13 +1561,56 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:01:55 GMT + - Wed, 20 Nov 2024 11:18:38 GMT + mise-correlation-id: + - 65dd2f61-6653-410f-aeaa-e053c61a5f89 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241120T111838Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d1t3 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A55Z&ske=2024-11-20T18%3A17%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A43Z&sr=b&sp=r&sig=X15f54%2B2bbg08pOATkIiMX04qYEVxcMbpXwflPx5Pxc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:43.7243746Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Nov 2024 11:18:43 GMT mise-correlation-id: - - c595e414-e2eb-4cc7-9acc-0f59f8ec2893 + - d8294c8c-5a90-4a0a-8966-5fe26d7ae7d2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100155Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dvx7 + - 20241120T111843Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d20m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1428,17 +1628,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A00Z&sr=b&sp=r&sig=L8ei7R%2BxmJxUUMe0zj%2Fe%2FaaUbTJXfHo1Y003V8x8oi0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:00.5717145Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A33Z&ske=2024-11-20T18%3A17%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A48Z&sr=b&sp=r&sig=532wxfnL6F6X%2FruU%2B%2FXtLyYQQQF6ntAI3kHoJ4EyA3Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:48.8378882Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1446,13 +1647,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:00 GMT + - Wed, 20 Nov 2024 11:18:48 GMT mise-correlation-id: - - 530085eb-5b1f-4848-adbf-50e00ee1c5a7 + - dc4bc7af-cb12-4e88-853d-db70bdd4dcd0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100200Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dwtn + - 20241120T111848Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d27m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1470,31 +1671,32 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A06Z&sr=b&sp=r&sig=s1oEWzaeoOMHu71V9UoOMjR5Pz1o6pCzyaxYFr0RjXs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:06.0628953Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A49Z&ske=2024-11-21T01%3A17%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A53Z&sr=b&sp=r&sig=MCLRyxfSDs%2FzUsVrSq5XsTTPJQJt83%2BPKQSUpIFX%2B5E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:53.9691989Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '556' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:06 GMT + - Wed, 20 Nov 2024 11:18:53 GMT mise-correlation-id: - - 9d34d805-6a27-4c28-aa85-f36632e57540 + - c8288caa-fe8f-4ba0-b365-954e8ffe1089 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100205Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dxsw + - 20241120T111853Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d2ex x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1512,17 +1714,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-07T02%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A11Z&sr=b&sp=r&sig=PcwQ3YgC0IvKZXnM6PJAorZ3CJftTkhZCyn59dAqMnY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:11.3568334Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A23Z&ske=2024-11-20T18%3A17%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T11%3A28%3A59Z&sr=b&sp=r&sig=3OUerbagisEDo7ENxDMujXXKBHj25KdCbXF9MRwKxog%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T11:28:59.0785951Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: @@ -1530,13 +1733,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:11 GMT + - Wed, 20 Nov 2024 11:18:59 GMT mise-correlation-id: - - 649dea72-3fb8-42cb-ad3c-57000fd3303d + - ccf50b3b-215f-4e4f-b888-d9b97cbc156c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100211Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dyup + - 20241120T111858Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d2q5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1554,32 +1757,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"8912389d-b230-4464-a302-9d16ff593d4e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"23ad5949-f563-4dc7-94dc-d22fbff2a8cd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a8b33fdf-183b-4342-a691-c09c7fb81595":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A11Z&sr=b&sp=r&sig=oaNHkIFNbmhvTFkRGJeFwfsjvMSkSG9zu7xSEwYRgsE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:02:11.6257551Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/d54e77c6-02d4-4c45-a133-d77f90e80700?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A11Z&sr=b&sp=r&sig=mShcVFjKcZPO5YDJEbXD4o%2FVHn%2FT5tkmKLeYP0vc2P0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:02:11.6261494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A11Z&sr=b&sp=r&sig=T2Gpr4p1xlCSyJAVlYO8K0nP0LhzGzHC4A0BfQw4RnQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:02:11.6263177Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:10.03Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4317e7d6-e457-4f24-b62c-3d43ec150e3b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e18c6566-6518-4efc-a761-a789850664ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"76eb09c5-3a39-4e8e-8a69-2ddbf91d24e9":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A55Z&ske=2024-11-20T18%3A17%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A59Z&sr=b&sp=r&sig=KukF9G%2FiyIxkax8kkxrTfPgbkQRoeoV%2F27WwJbbXIRc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:18:59.1726504Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c0a5a6d8-61b6-4f1a-a5f8-67d974233715?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A55Z&ske=2024-11-20T18%3A17%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A59Z&sr=b&sp=r&sig=a65%2B9Aa9Djz%2FDgAKbQQJqdThhlZLNfDCg3y1ciYAPJY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:18:59.1731195Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/1f4580ea-a788-4bda-bc92-b7d1a3ace8ed?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A55Z&ske=2024-11-20T18%3A17%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A18%3A59Z&sr=b&sp=r&sig=O8Ygx0ctz5hrSh%2FX29%2BFB7kl6Buc4KbmrQSZ8tg0Wts%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:18:59.1734573Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:22.868Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:18:54.008Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2760' + - '2871' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:11 GMT + - Wed, 20 Nov 2024 11:18:59 GMT mise-correlation-id: - - f6c4c20b-66c7-4846-b195-88fef8397138 + - 107f33ae-a9b1-457c-ad01-37dee0d96e63 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100211Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dyvh + - 20241120T111859Z-17b7777dc45nxqv9hC1CO1qrb0000000013000000000d2q8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1597,23 +1801,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2024-11-06T09:59:58.6992937Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:59:58.6992937Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-11-20T11:16:49.3738026Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-20T11:16:49.3738026Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '653' + - '659' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:14 GMT + - Wed, 20 Nov 2024 11:18:59 GMT etag: - - '"fa003b0d-0000-0200-0000-672b3e350000"' + - '"960392ff-0000-0200-0000-673dc5380000"' expires: - '-1' pragma: @@ -1629,7 +1833,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AE43D60F4C7446919D7EA19B2D2C2FE0 Ref B: MAA201060514045 Ref C: 2024-11-06T10:02:13Z' + - 'Ref A: 97F34573C4BC4B6C8770AD74EB0967C8 Ref B: CO6AA3150219027 Ref C: 2024-11-20T11:18:59Z' status: code: 200 message: OK @@ -1643,32 +1847,33 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://90f2f704-da10-49cf-9528-b48a464290a1.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"8912389d-b230-4464-a302-9d16ff593d4e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"23ad5949-f563-4dc7-94dc-d22fbff2a8cd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a8b33fdf-183b-4342-a691-c09c7fb81595":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A16Z&sr=b&sp=r&sig=p36nwIc2Z1VkHwSa4Ie2LQUe6tlTeFLytb1gCg87F1Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:02:16.3286002Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/d54e77c6-02d4-4c45-a133-d77f90e80700?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A16Z&sr=b&sp=r&sig=v8B7v9g9Qkc7wIK97CwJL%2BqQxjHRJZRwmAYBHc0nANo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:02:16.3290502Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A16Z&sr=b&sp=r&sig=eozze1SzqvKM9B6VD1ZJA9Oj%2F5ScIAlP3wU6gweH3Vs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:02:16.3292326Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:10.03Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4317e7d6-e457-4f24-b62c-3d43ec150e3b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e18c6566-6518-4efc-a761-a789850664ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"76eb09c5-3a39-4e8e-8a69-2ddbf91d24e9":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c854ac58-21b5-452a-86db-80ed165957ef?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A39Z&ske=2024-11-20T18%3A17%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A00Z&sr=b&sp=r&sig=PDDplXrl7MiLK7uMSg7AZiuZxc5XQPEZ6F0P9hzP85g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-20T12:19:00.0588415Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/c0a5a6d8-61b6-4f1a-a5f8-67d974233715?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A39Z&ske=2024-11-20T18%3A17%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A00Z&sr=b&sp=r&sig=VEtNecfsymedX58CfOoh1UaGuvWx1ofEhTbtfYC5PQ0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-20T12:19:00.0591141Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hevf136c3pmn8os78diz9yho.z40.blob.storage.azure.net/ccc6ceb7-b1de-428e-b9bc-0e72ab95affc/1f4580ea-a788-4bda-bc92-b7d1a3ace8ed?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-20T11%3A17%3A39Z&ske=2024-11-20T18%3A17%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-20T12%3A19%3A00Z&sr=b&sp=r&sig=h18sX2dNCxVmbd2imfjEEi8%2F8dfdy27%2Fd5y4Gnu5lP0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-20T12:19:00.0591976Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-20T11:17:22.868Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-11-20T11:18:54.008Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' headers: accept-ranges: - bytes api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-11-01-preview connection: - keep-alive content-length: - - '2760' + - '2863' content-type: - application/json; charset=utf-8 date: - - Wed, 06 Nov 2024 10:02:16 GMT + - Wed, 20 Nov 2024 11:19:00 GMT mise-correlation-id: - - 09d43cf7-45ea-40fc-a687-e2ce6ef5a76e + - e1fb68be-bc8f-4da2-a5e1-cde72887b604 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241106T100215Z-16bf8d9b4c7r848jhC1BOMdr7n00000006f000000000vz2w + - 20241120T111859Z-17b7777dc45sxgd2hC1CO1ar4s0000000w40000000005qb0 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/resources/config-autostop-criteria-error-rate.yaml b/src/load/azext_load/tests/latest/resources/config-autostop-criteria-error-rate.yaml new file mode 100644 index 00000000000..91ba34299e9 --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-autostop-criteria-error-rate.yaml @@ -0,0 +1,19 @@ +# Autostop criteria: only errorPercentage is provided +displayName: CLI-Test +testPlan: sample-JMX-file.jmx +description: 'Test created from az load test command' +engineInstances: 1 +configurationFiles: + - additional-data.csv +zipArtifacts: + - sample-ZIP-artifact.zip +failureCriteria: + - avg(requests_per_sec) > 78 + - percentage(error) > 50 + - GetCustomerDetails: avg(latency) > 200 +env: + - name: 'rps' + value: 1 +splitAllCSVs: True +autoStop: + errorPercentage: 98.5 \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/resources/config-autostop-criteria-time-window.yaml b/src/load/azext_load/tests/latest/resources/config-autostop-criteria-time-window.yaml new file mode 100644 index 00000000000..da4cab11efa --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-autostop-criteria-time-window.yaml @@ -0,0 +1,19 @@ +# Autostop criteria: only timeWindow is provided +displayName: CLI-Test +testPlan: sample-JMX-file.jmx +description: 'Test created from az load test command' +engineInstances: 1 +configurationFiles: + - additional-data.csv +zipArtifacts: + - sample-ZIP-artifact.zip +failureCriteria: + - avg(requests_per_sec) > 78 + - percentage(error) > 50 + - GetCustomerDetails: avg(latency) > 200 +env: + - name: 'rps' + value: 1 +splitAllCSVs: True +autoStop: + timeWindow: 250 \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/resources/config-autostop-criteria.yaml b/src/load/azext_load/tests/latest/resources/config-autostop-criteria.yaml new file mode 100644 index 00000000000..ad7277e490b --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-autostop-criteria.yaml @@ -0,0 +1,20 @@ +# Autostop criteria: both errorPercentage and timeWindow are provided +displayName: CLI-Test-Autostop-Criteria +testPlan: sample-JMX-file.jmx +description: 'Test created from az load test command' +engineInstances: 1 +configurationFiles: + - additional-data.csv +zipArtifacts: + - sample-ZIP-artifact.zip +failureCriteria: + - avg(requests_per_sec) > 78 + - percentage(error) > 50 + - GetCustomerDetails: avg(latency) > 200 +env: + - name: 'rps' + value: 1 +splitAllCSVs: True +autoStop: + errorPercentage: 85 + timeWindow: 120 \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/resources/config-invalid-autostop-criteria-error-rate.yaml b/src/load/azext_load/tests/latest/resources/config-invalid-autostop-criteria-error-rate.yaml new file mode 100644 index 00000000000..a1bbeb9e10c --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-invalid-autostop-criteria-error-rate.yaml @@ -0,0 +1,20 @@ +# Invalid autstop criteria: errorPercentage is greater than 100 +displayName: CLI-Test +testPlan: sample-JMX-file.jmx +description: 'Test created from az load test command' +engineInstances: 1 +configurationFiles: + - additional-data.csv +zipArtifacts: + - sample-ZIP-artifact.zip +failureCriteria: + - avg(requests_per_sec) > 78 + - percentage(error) > 50 + - GetCustomerDetails: avg(latency) > 200 +env: + - name: 'rps' + value: 1 +splitAllCSVs: True +autoStop: + errorPercentage: 108.5 + timeWindow: 120 \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/resources/config-invalid-autostop-criteria-random-string.yaml b/src/load/azext_load/tests/latest/resources/config-invalid-autostop-criteria-random-string.yaml new file mode 100644 index 00000000000..a682ecf2301 --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-invalid-autostop-criteria-random-string.yaml @@ -0,0 +1,18 @@ +# Invalid autoStop criteria: autstop is random string +displayName: CLI-Test +testPlan: sample-JMX-file.jmx +description: 'Test created from az load test command' +engineInstances: 1 +configurationFiles: + - additional-data.csv +zipArtifacts: + - sample-ZIP-artifact.zip +failureCriteria: + - avg(requests_per_sec) > 78 + - percentage(error) > 50 + - GetCustomerDetails: avg(latency) > 200 +env: + - name: 'rps' + value: 1 +splitAllCSVs: True +autoStop: random \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/resources/config-invalid-autostop-criteria-time-window.yaml b/src/load/azext_load/tests/latest/resources/config-invalid-autostop-criteria-time-window.yaml new file mode 100644 index 00000000000..1d6f0012f17 --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-invalid-autostop-criteria-time-window.yaml @@ -0,0 +1,20 @@ +# Invalid autoStop criteria: timeWindow is negative +displayName: CLI-Test +testPlan: sample-JMX-file.jmx +description: 'Test created from az load test command' +engineInstances: 1 +configurationFiles: + - additional-data.csv +zipArtifacts: + - sample-ZIP-artifact.zip +failureCriteria: + - avg(requests_per_sec) > 78 + - percentage(error) > 50 + - GetCustomerDetails: avg(latency) > 200 +env: + - name: 'rps' + value: 1 +splitAllCSVs: True +autoStop: + errorPercentage: 87.5 + timeWindow: -5 \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/resources/config.yaml b/src/load/azext_load/tests/latest/resources/config.yaml index c54a68e02e7..8eee30f1fb0 100644 --- a/src/load/azext_load/tests/latest/resources/config.yaml +++ b/src/load/azext_load/tests/latest/resources/config.yaml @@ -14,6 +14,4 @@ env: - name: 'rps' value: 1 splitAllCSVs: True -autoStop: - errorPercentage: 90 - timeWindow: 60 \ No newline at end of file +autoStop: disable \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/test_load_test.py b/src/load/azext_load/tests/latest/test_load_test.py index 2d6fde44870..54730a52b7f 100644 --- a/src/load/azext_load/tests/latest/test_load_test.py +++ b/src/load/azext_load/tests/latest/test_load_test.py @@ -19,6 +19,9 @@ create_random_name, live_only, ) +from knack.log import get_logger + +logger = get_logger(__name__) rg_params = { "name_prefix": "clitest-load-", @@ -102,6 +105,7 @@ def test_load_test_create(self, rg, load, vnet): JMESPathCheck("publicIPDisabled", True), JMESPathCheck("loadTestConfiguration.splitAllCSVs", True), JMESPathCheck("environmentVariables.rps", "10"), + JMESPathCheck("autoStopCriteria.autoStopDisabled", True), ] # Create load test with all parameters response = self.cmd( @@ -335,6 +339,342 @@ def test_load_test_create(self, rg, load, vnet): except Exception as e: assert "InvalidNetworkConfigurationException" in str(e) + @ResourceGroupPreparer(**rg_params) + @LoadTestResourcePreparer(**load_params) + @VirtualNetworkPreparer(**vnet_params) + @StorageAccountPreparer(**sa_params) + def test_load_test_autostop(self, rg, load, vnet): + self.kwargs.update( + { + "test_id": LoadTestConstants.CREATE_TEST_ID, + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE, + "description": LoadTestConstants.DESCRIPTION, + "display_name": LoadTestConstants.DISPLAY_NAME, + "engine_instance": LoadTestConstants.ENGINE_INSTANCE, + } + ) + checks = [ + JMESPathCheck("testId", self.kwargs["test_id"]), + JMESPathCheck( + "loadTestConfiguration.engineInstances", self.kwargs["engine_instance"] + ), + JMESPathCheck("description", self.kwargs["description"]), + JMESPathCheck("displayName", self.kwargs["display_name"]), + JMESPathCheck("autoStopCriteria.autoStopDisabled", True), + JMESPathCheck("autoStopCriteria.errorRate", 90.0), + JMESPathCheck("autoStopCriteria.errorRateTimeWindowInSeconds", 60), + ] + # Create load test with autostop disabled through config file + self.cmd( + "az load test create " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + "--resource-group {resource_group} " + '--load-test-config-file "{load_test_config_file}" ' + "--description {description} " + "--display-name {display_name} " + "--engine-instance {engine_instance} ", + checks=checks, + ) + # Update load test with autostop criteria through command line arguments + self.kwargs.update( + { + "autostop_error_rate": LoadTestConstants.AUTOSTOP_ERROR_RATE, + "autostop_error_rate_time_window": LoadTestConstants.AUTOSTOP_ERROR_RATE_TIME_WINDOW, + } + ) + checks = [ + JMESPathCheck("autoStopCriteria.autoStopDisabled", False), + JMESPathCheck("autoStopCriteria.errorRate", LoadTestConstants.AUTOSTOP_ERROR_RATE), + JMESPathCheck("autoStopCriteria.errorRateTimeWindowInSeconds", LoadTestConstants.AUTOSTOP_ERROR_RATE_TIME_WINDOW), + ] + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--autostop-error-rate {autostop_error_rate} ' + '--autostop-time-window {autostop_error_rate_time_window} ' + "--resource-group {resource_group} ", + checks=checks, + ) + # Update load test with autostop criteria when error rate is integer + # Order of this test case is important as response payload is checked in next test case + self.kwargs.update( + { + "autostop_error_rate": LoadTestConstants.AUTOSTOP_ERROR_RATE_INTEGER, + } + ) + checks = [ + JMESPathCheck("autoStopCriteria.autoStopDisabled", False), + JMESPathCheck("autoStopCriteria.errorRate", float(LoadTestConstants.AUTOSTOP_ERROR_RATE_INTEGER)), + JMESPathCheck("autoStopCriteria.errorRateTimeWindowInSeconds", LoadTestConstants.AUTOSTOP_ERROR_RATE_TIME_WINDOW), + ] + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--autostop-error-rate {autostop_error_rate} ' + '--autostop-time-window {autostop_error_rate_time_window} ' + "--resource-group {resource_group} ", + checks=checks, + ) + # Update load test with autostop disabled through command line arguments + # Order of this test case is important as response payload is checked from previous test case + self.kwargs.update( + { + "autostop": LoadTestConstants.AUTOSTOP_DISABLED, + } + ) + checks = [ + JMESPathCheck("autoStopCriteria.autoStopDisabled", True), + JMESPathCheck("autoStopCriteria.errorRate", float(LoadTestConstants.AUTOSTOP_ERROR_RATE_INTEGER)), + JMESPathCheck("autoStopCriteria.errorRateTimeWindowInSeconds", LoadTestConstants.AUTOSTOP_ERROR_RATE_TIME_WINDOW), + ] + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--autostop {autostop} ' + "--resource-group {resource_group} ", + checks=checks, + ) + # Update load test with autostop criteria through config file + # Order of this test case is important as response payload for time-window is checked in next test case + self.kwargs.update( + { + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_AUTOSTOP, + } + ) + checks = [ + JMESPathCheck("autoStopCriteria.autoStopDisabled", False), + JMESPathCheck("autoStopCriteria.errorRate", 85.0), + JMESPathCheck("autoStopCriteria.errorRateTimeWindowInSeconds", 120), + ] + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--load-test-config-file "{load_test_config_file}" ' + "--resource-group {resource_group} ", + checks=checks, + ) + # Update load test with autostop criteria through config file: only error rate + # Order of this test case is important as response payload for time-window is checked from previous test case + # Order of this test case is important as response payload for error-rate is checked in next test case + self.kwargs.update( + { + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_AUTOSTOP_ERROR_RATE, + } + ) + checks = [ + JMESPathCheck("autoStopCriteria.autoStopDisabled", False), + JMESPathCheck("autoStopCriteria.errorRate", 98.5), + JMESPathCheck("autoStopCriteria.errorRateTimeWindowInSeconds", 120), + ] + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--load-test-config-file "{load_test_config_file}" ' + "--resource-group {resource_group} ", + checks=checks, + ) + # Update load test with autostop criteria through config file: only time window + # Order of this test case is important as response payload for error-rate is checked from previous test case + self.kwargs.update( + { + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_AUTOSTOP_TIME_WINDOW, + } + ) + checks = [ + JMESPathCheck("autoStopCriteria.autoStopDisabled", False), + JMESPathCheck("autoStopCriteria.errorRate", 98.5), + JMESPathCheck("autoStopCriteria.errorRateTimeWindowInSeconds", 250), + ] + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--load-test-config-file "{load_test_config_file}" ' + "--resource-group {resource_group} ", + checks=checks, + ) + # Update load test with CLI autostop criteria when both config file and CLI arguments are provided + self.kwargs.update( + { + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_AUTOSTOP, + "autostop_error_rate": LoadTestConstants.AUTOSTOP_ERROR_RATE, + "autostop_error_rate_time_window": LoadTestConstants.AUTOSTOP_ERROR_RATE_TIME_WINDOW, + } + ) + checks = [ + JMESPathCheck("autoStopCriteria.autoStopDisabled", False), + JMESPathCheck("autoStopCriteria.errorRate", LoadTestConstants.AUTOSTOP_ERROR_RATE), + JMESPathCheck("autoStopCriteria.errorRateTimeWindowInSeconds", LoadTestConstants.AUTOSTOP_ERROR_RATE_TIME_WINDOW), + ] + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--load-test-config-file "{load_test_config_file}" ' + '--autostop-error-rate {autostop_error_rate} ' + '--autostop-time-window {autostop_error_rate_time_window} ' + "--resource-group {resource_group} ", + checks=checks, + ) + # Update load test with CLI autostop criteria disabled true when + # config file has autostop criteria and CLI argument is --autostop disable + self.kwargs.update( + { + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_AUTOSTOP, + "autostop": LoadTestConstants.AUTOSTOP_DISABLED, + } + ) + checks = [ + JMESPathCheck("autoStopCriteria.autoStopDisabled", True), + JMESPathCheck("autoStopCriteria.errorRate", LoadTestConstants.AUTOSTOP_ERROR_RATE), + JMESPathCheck("autoStopCriteria.errorRateTimeWindowInSeconds", LoadTestConstants.AUTOSTOP_ERROR_RATE_TIME_WINDOW), + ] + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--load-test-config-file "{load_test_config_file}" ' + '--autostop {autostop} ' + "--resource-group {resource_group} ", + checks=checks, + ) + # Invalid autostop test case: autostop not of string type + self.kwargs.update({ + "autostop": 1, + }) + try: + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--autostop {autostop} ' + "--resource-group {resource_group} ", + checks=checks, + ) + except Exception as e: + assert "Invalid autostop type" in str(e) + # Invalid autostop test case: autostop not in allowed values + self.kwargs.update({ + "autostop": "random", + }) + try: + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--autostop {autostop} ' + "--resource-group {resource_group} ", + checks=checks, + ) + except Exception as e: + assert "Allowed values: enable, disable" in str(e) + # Invalid autostop test case: autostop error rate > 100.0 + self.kwargs.update({ + "autostop_error_rate": 110.5, + }) + try: + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--autostop-error-rate {autostop_error_rate} ' + "--resource-group {resource_group} ", + checks=checks, + ) + except Exception as e: + assert "Autostop error rate should be in range of [0.0,100.0]" in str(e) + # Invalid autostop test case: autostop error rate < 0.0 + self.kwargs.update({ + "autostop_error_rate": -2.5, + }) + try: + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--autostop-error-rate {autostop_error_rate} ' + "--resource-group {resource_group} ", + checks=checks, + ) + except Exception as e: + assert "Autostop error rate should be in range of [0.0,100.0]" in str(e) + # Invalid autostop test case: autostop error rate not of float type + # This is not needed as the argument is type checked + # argument --autostop-error-rate: invalid float value: 'rate' + + # Invalid autostop test case: autostop error rate time window < 0 + self.kwargs.update({ + "autostop_error_rate_time_window": -1, + }) + try: + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--autostop-time-window {autostop_error_rate_time_window} ' + "--resource-group {resource_group} ", + checks=checks, + ) + except Exception as e: + assert "Autostop error rate time window should be greater than or equal to 0" in str(e) + # Invalid autostop test case: autostop error rate time window not of integer type + # This is not needed as the argument is type checked + # argument --autostop-time-window: invalid int value: '90.4' + # argument --autostop-time-window: invalid int value: 'window' + + # Invalid autostop from config test case: autostop random string + self.kwargs.update({ + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_INVALID_AUTOSTOP, + }) + try: + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--load-test-config-file "{load_test_config_file}" ' + "--resource-group {resource_group} ", + checks=checks, + ) + except Exception as e: + assert "Invalid value for autoStop. Valid values are 'disable' or an object with errorPercentage and timeWindow" in str(e) + + # Invalid autostop from config test case: autostop error rate > 100.0 + self.kwargs.update({ + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_INVALID_AUTOSTOP_ERROR_RATE, + }) + try: + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--load-test-config-file "{load_test_config_file}" ' + "--resource-group {resource_group} ", + checks=checks, + ) + except Exception as e: + assert "Invalid value for errorPercentage. Value should be a number between 0.0 and 100.0" in str(e) + # Invalid autostop from config test case: autostop time window < 0 + self.kwargs.update({ + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_INVALID_AUTOSTOP_TIME_WINDOW, + }) + try: + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--load-test-config-file "{load_test_config_file}" ' + "--resource-group {resource_group} ", + checks=checks, + ) + except Exception as e: + assert "Invalid value for timeWindow. Value should be an integer greater than or equal to 0" in str(e) + @ResourceGroupPreparer(**rg_params) @LoadTestResourcePreparer(**load_params) def test_load_test_list(self, rg, load): diff --git a/src/load/setup.py b/src/load/setup.py index bca027a60bc..41ad6e43eba 100644 --- a/src/load/setup.py +++ b/src/load/setup.py @@ -10,7 +10,7 @@ # HISTORY.rst entry. -VERSION = '1.2.0' +VERSION = '1.3.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers